/* ============================================
   LUCRX KIDS WEAR - Luxury Stylesheet
   ============================================ */

:root {
    --primary-black: #111111;
    --gold: #C6A969;
    --gold-light: #D4BC82;
    --cream: #F3EFEA;
    --cream-light: #FAF8F5;
    --coral: #E8735A;
    --white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-400: #CED4DA;
    --gray-600: #6C757D;
    --gray-800: #343A40;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --radius: 16px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Reset & Base */

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--primary-black);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}


/* Top Bar */

.top-bar {
    background: var(--primary-black);
    color: var(--white);
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 300;
}


/* Navbar */

#mainNav {
    padding: 16px 0;
    transition: var(--transition);
    z-index: 1050;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

#mainNav.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--primary-black);
}

.brand-sub {
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 5px;
    color: var(--gray-600);
    text-transform: uppercase;
    font-weight: 400;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--primary-black) !important;
    padding: 8px 16px !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 1.5px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover {
    color: var(--gold) !important;
}

.cart-icon {
    font-size: 22px;
    color: var(--primary-black);
    position: relative;
    padding: 4px;
}

.cart-icon:hover {
    color: var(--gold);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -8px;
    background: #030303;
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    padding: 12px 0;
}

.dropdown-item {
    font-size: 13px;
    padding: 8px 20px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.dropdown-item:hover {
    background: var(--cream);
    color: var(--gold);
}


/* ===== HERO SECTION ===== */

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream) 50%, #EDE7DE 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(198, 169, 105, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 20px;
    padding: 6px 16px;
    border: 1px solid var(--gold);
    border-radius: 30px;
}

.hero-title {
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary-black);
}

.hero-title span {
    display: block;
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
    max-width: 480px;
    margin-bottom: 36px;
}


/* ===== BANNER CAROUSEL ===== */

.banner-carousel {
    position: relative;
}

.banner-slide {
    width: 100%;
    height: 780px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.banner-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.5));
}

.banner-caption {
    position: relative;
    z-index: 2;
    padding: 50px 60px;
    color: #fff;
    max-width: 600px;
}

.banner-caption h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.banner-caption p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 16px;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #fff;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.banner-carousel a {
    text-decoration: none;
    color: inherit;
}

.banner-carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
}

.banner-carousel .carousel-indicators button.active {
    background: var(--gold);
}

.banner-carousel .carousel-control-prev-icon,
.banner-carousel .carousel-control-next-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    background-size: 14px;
}


/* Buttons */

.btn-luxury {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    border: 2px solid var(--primary-black);
    background: var(--primary-black);
    color: var(--white);
    transition: var(--transition);
    cursor: pointer;
}

.btn-luxury:hover {
    background: #f0f0f0;
    border-color: #020202;
    color: #020202;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(2 2 2 / 22%);
}

.btn-luxury-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    border: 2px solid var(--primary-black);
    background: transparent;
    color: var(--primary-black);
    transition: var(--transition);
    cursor: pointer;
}

.btn-luxury-outline:hover {
    background: var(--primary-black);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-gold {
    background: #030303;
    border-color: #030303;
    color: var(--white);
}


/* .btn-gold {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
} */

.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}


/* ===== SECTION STYLING ===== */

.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 12px;
}

.section-desc {
    font-size: 15px;
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.bg-cream {
    background: var(--cream);
}

.bg-cream-light {
    background: var(--cream-light);
}


/* ===== CATEGORY CARDS ===== */

.category-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    height: 350px;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
}

.category-overlay h4 {
    font-size: 22px;
    margin-bottom: 4px;
}

.category-overlay p {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.8;
}

.category-card:hover .category-overlay {
    /* background: linear-gradient(transparent, rgba(198, 169, 105, 0.85)); */
    background: linear-gradient(transparent, rgb(0 0 0 / 85%));
}


/* ===== PRODUCT CARD ===== */

.product-card {
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--white);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/4;
    background: var(--gray-100);
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.badge-sale {
    background: var(--coral);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}

.badge-new {
    background: var(--gold);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}

.product-actions {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #030303;
    font-weight: 500;
    margin-bottom: 6px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-black);
    line-height: 1.3;
}

.product-name a:hover {
    color: var(--gold);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-current {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-black);
}

.price-original {
    font-size: 14px;
    color: var(--gray-600);
    text-decoration: line-through;
}

.price-discount {
    font-size: 12px;
    color: var(--coral);
    font-weight: 600;
}


/* ===== LUXURY BRAND SECTION ===== */

.luxury-section {
    background: var(--cream);
    padding: 100px 0;
    text-align: center;
}

.luxury-section h2 {
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
}

.luxury-section h2 span {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.luxury-section p {
    font-size: 16px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.luxury-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 24px auto;
}


/* ===== SHOP PAGE ===== */

.shop-hero {
    background: var(--cream);
    padding: 50px 0;
    text-align: center;
}

.filter-sidebar .form-label {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 10px;
}

.filter-sidebar .form-select,
.filter-sidebar .form-control {
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    padding: 10px 16px;
    font-size: 13px;
    transition: var(--transition);
}

.filter-sidebar .form-select:focus,
.filter-sidebar .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(198, 169, 105, 0.15);
}


/* Pagination */

.pagination .page-link {
    border: none;
    color: var(--primary-black);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    margin: 0 2px;
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
    background: var(--gold);
    color: var(--white);
}


/* ===== PRODUCT DETAIL PAGE ===== */

.product-gallery {
    position: sticky;
    top: 100px;
}

.gallery-main {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--gray-100);
    aspect-ratio: 4/4;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--gold);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info {
    padding-left: 30px;
}

.product-detail-info .product-category {
    font-size: 12px;
    margin-bottom: 8px;
}

.product-detail-info .product-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
}

.product-detail-info .price-current {
    font-size: 28px;
}

.product-detail-info .price-original {
    font-size: 18px;
}

.size-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size-pill {
    padding: 8px 22px;
    border: 2px solid var(--gray-200);
    border-radius: 15px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
    letter-spacing: 0.5px;
}

.size-pill:hover {
    border-color: #111111;
}

.size-pill.active {
    border-color: #111111;
    background: #111111;
    color: var(--white);
}

.size-pill.out-of-stock {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--gray-200);
    border-radius: 30px;
    overflow: hidden;
    width: fit-content;
}

.qty-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--cream);
}

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 15px;
    font-weight: 600;
    outline: none;
}

.product-meta {
    font-size: 13px;
    color: var(--gray-600);
}

.product-meta span {
    font-weight: 600;
    color: var(--primary-black);
}

.stock-available {
    color: #2E7D32;
}

.stock-low {
    color: var(--coral);
}


/* ===== CART PAGE ===== */

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table thead th {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gray-600);
    padding: 16px 12px;
    border-bottom: 2px solid var(--gray-200);
}

.cart-table td {
    padding: 20px 12px;
    vertical-align: middle;
    border-bottom: 1px solid var(--gray-100);
}

.cart-product-img {
    width: 80px;
    height: 100px;
    border-radius: 10px;
    object-fit: cover;
}

.cart-product-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
}

.cart-remove {
    color: var(--gray-400);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.cart-remove:hover {
    color: var(--coral);
}

.cart-summary {
    background: var(--cream-light);
    border-radius: var(--radius);
    padding: 30px;
}

.cart-summary h4 {
    font-size: 20px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
}

.summary-row.total {
    font-size: 20px;
    font-weight: 700;
    border-top: 2px solid var(--primary-black);
    margin-top: 12px;
    padding-top: 16px;
}

.coupon-input {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.coupon-input input {
    flex: 1;
    border: 2px solid var(--gray-200);
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 13px;
    outline: none;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.coupon-input input:focus {
    border-color: var(--gold);
}


/* ===== CHECKOUT PAGE ===== */

.checkout-form .form-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.checkout-form .form-control {
    border-radius: 10px;
    border: 2px solid var(--gray-200);
    padding: 12px 16px;
    font-size: 14px;
    transition: var(--transition);
}

.checkout-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(198, 169, 105, 0.15);
}

.order-summary-checkout {
    background: var(--cream-light);
    border-radius: var(--radius);
    padding: 30px;
    position: sticky;
    top: 100px;
}


/* ===== ABOUT PAGE ===== */

.about-hero {
    background: var(--cream);
    padding: 80px 0;
    text-align: center;
}

.about-section {
    padding: 60px 0;
}

.about-section:nth-child(even) {
    background: var(--cream-light);
}

.about-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}


/* ===== CONTACT PAGE ===== */

.contact-card {
    background: var(--cream-light);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-card i {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 16px;
}

.contact-form .form-control,
.contact-form .form-control textarea {
    border-radius: 10px;
    border: 2px solid var(--gray-200);
    padding: 12px 16px;
    font-size: 14px;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(198, 169, 105, 0.15);
}


/* ===== LEGAL PAGES ===== */

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.legal-content h2 {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-black);
}

.legal-content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 16px;
}


/* ===== FOOTER ===== */

.site-footer {
    background: var(--primary-black);
    color: var(--white);
    padding: 60px 0 20px;
}

.site-footer .footer-brand .brand-text {
    color: var(--white);
    font-size: 24px;
}

.site-footer .footer-brand .brand-sub {
    color: var(--gray-600);
}

.footer-desc {
    font-size: 13px;
    line-height: 1.8;
    color: var(--gray-200);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 11px;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 3px;
    list-style: disc;
}

.footer-links {
    padding-left: 15px;
}

.footer-links a {
    font-size: 13px;
    color: var(--gray-200);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    font-size: 13px;
    color: var(--gray-200);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: #ffffff;
    margin-top: 2px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #000000;
    transition: var(--transition);
    background: #ffffff;
}

.social-icons a:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.68);
    margin: 30px 0 20px;
}

.footer-copy {
    font-size: 15px;
    color: var(--gray-200);
    margin: 0;
}


/* ===== PAGE HEROES ===== */

.page-hero {
    background: var(--cream);
    padding: 50px 0 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 36px;
    margin-bottom: 8px;
}

.breadcrumb {
    justify-content: center;
    font-size: 13px;
}

.breadcrumb-item a {
    color: var(--gold);
}

.breadcrumb-item.active {
    color: var(--gray-600);
}


/* ===== EMPTY STATES ===== */

.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state i {
    font-size: 64px;
    color: var(--gray-200);
    margin-bottom: 20px;
}

.empty-state h3 {
    margin-bottom: 12px;
}

.empty-state p {
    color: var(--gray-600);
    margin-bottom: 24px;
}


/* ===== ANIMATIONS ===== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 991px) {
    .hero-section {
        min-height: 60vh;
        padding: 60px 0;
    }
    .hero-title {
        font-size: 36px;
    }
    .product-detail-info {
        padding-left: 0;
        margin-top: 30px;
    }
    .section-padding {
        padding: 50px 0;
    }
    .banner-slide {
        height: 400px;
    }
    .banner-caption {
        padding: 30px 40px;
    }
    .banner-caption h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
        padding: 50px 0;
        text-align: center;
    }
    .hero-desc {
        margin: 0 auto 30px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .cart-table {
        font-size: 13px;
    }
    .cart-product-img {
        width: 60px;
        height: 75px;
    }
    /* .category-card {
        height: 250px;
    } */
    .top-bar {
        font-size: 10px;
    }
    .btn-luxury,
    .btn-luxury-outline {
        padding: 12px 24px;
        font-size: 11px;
    }
    .banner-slide {
        height: 280px;
    }
    .banner-caption {
        padding: 20px 24px;
    }
    .banner-caption h2 {
        font-size: 24px;
    }
    .banner-caption p {
        font-size: 13px;
    }
}


/* ===== ADMIN STYLES ===== */

.admin-sidebar {
    background: var(--primary-black);
    min-height: 100vh;
    width: 260px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.admin-sidebar .brand-text {
    color: var(--white);
    font-size: 22px;
}

.admin-sidebar .brand-sub {
    color: var(--gray-600);
}

.admin-sidebar .nav-link {
    color: var(--gray-200) !important;
    font-size: 13px;
    padding: 12px 24px !important;
    border-radius: 8px;
    margin: 2px 12px;
    letter-spacing: 0;
    text-transform: none;
}

.admin-sidebar .nav-link::after {
    display: none;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background: rgb(247 242 233);
    color: #000000 !important;
}

.admin-sidebar .nav-link i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.admin-content {
    margin-left: 260px;
    padding: 24px;
    min-height: 100vh;
    background: var(--gray-100);
}

.admin-header {
    background: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.stat-card .stat-value {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.stat-card .stat-label {
    font-size: 12px;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-table {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.admin-table table {
    margin: 0;
}

.admin-table th {
    background: var(--cream-light);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 14px 16px;
}

.admin-table td {
    padding: 14px 16px;
    vertical-align: middle;
    font-size: 14px;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.status-new {
    background: #E3F2FD;
    color: #1565C0;
}

.status-confirmed {
    background: #E8F5E9;
    color: #2E7D32;
}

.status-packed {
    background: #FFF3E0;
    color: #E65100;
}

.status-shipped {
    background: #F3E5F5;
    color: #6A1B9A;
}

.status-delivered {
    background: #E8F5E9;
    color: #1B5E20;
}

.status-cancelled {
    background: #FFEBEE;
    color: #C62828;
}

.admin-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 991px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }
    .admin-sidebar.show {
        transform: translateX(0);
    }
    .admin-content {
        margin-left: 0;
    }
}

.footer_logo {
    filter: brightness(0) invert(1);
    width: 160px;
}

.admin_logo {
    filter: brightness(0) invert(1);
    width: 145px;
}

.border_radius_15 {
    border-radius: 15px;
}


/* Custome CSS */

@media screen and (max-width: 768px) {
    .page-hero h1 {
        font-size: 28px;
    }
    .table-responsive {
        background: #faf8f5;
        margin-bottom: 15px;
    }
    .cart-table thead th {
        color: var(--gray-700) !important;
    }
    .cart-remove {
        color: var(--gray-800) !important;
    }
    .about-hero {
        padding: 45px 0 !important;
    }
    element.style {
        font-size: clamp(24px, 4vw, 48px) !important;
    }
    .product-detail-info .product-title {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }
    .about-hero h1 {
        font-size: 25px !important;
    }
    .section-title {
        font-size: 25px !important;
    }
    .ml_70 {
        margin-left: 70px;
    }
    .floating_btn {
        bottom: 10px !important;
        right: 10px !important;
        width: 50px !important;
        height: 50px !important;
    }
    .contact_icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 22px !important;
    }
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    /* Enables horizontal scroll */
}

.cart-table {
    min-width: 1100px;
    /* Important for scroll */
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}


/* Product */

.cart-table th:nth-child(1),
.cart-table td:nth-child(1) {
    width: 320px;
}


/* Size */

.cart-table th:nth-child(2),
.cart-table td:nth-child(2) {
    width: 80px;
}


/* SKU */

.cart-table th:nth-child(3),
.cart-table td:nth-child(3) {
    width: 150px;
}


/* Qty */

.cart-table th:nth-child(4),
.cart-table td:nth-child(4) {
    width: 130px;
}


/* Price */

.cart-table th:nth-child(5),
.cart-table td:nth-child(5) {
    width: 120px;
}


/* Total */

.cart-table th:nth-child(6),
.cart-table td:nth-child(6) {
    width: 140px;
}


/* Remove */

.cart-table th:nth-child(7),
.cart-table td:nth-child(7) {
    width: 60px;
}

.cart-table th,
.cart-table td {
    padding: 15px;
    vertical-align: middle;
    overflow: hidden;
}

.cart-product-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.coupon-input {
    display: flex;
    gap: 10px;
    align-items: center;
}


/* Input styling */

.coupon-input input {
    flex: 1;
    min-width: 0;
    /* Important for flex */
    padding: 10px 12px;
}


/* Button styling */

.coupon-input .btn-luxury {
    white-space: nowrap;
}


/* 📱 Mobile Responsive */

@media (max-width: 576px) {
    .coupon-input {
        flex-direction: column;
        align-items: stretch;
    }
    .coupon-input input {
        width: 100%;
    }
    .coupon-input .btn-luxury {
        width: 100%;
        padding: 12px;
        font-size: 13px;
        justify-content: center !important;
    }
}

.coupon-input input {
    border: 1px solid #e5e2dc;
    background: #faf8f4;
}

.coupon-input input:focus {
    border-color: #c6b07a;
    outline: none;
}


/* WhatsApp Float Button */

.floating_btn {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

.contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}