/* ===============================
   1. CSS RESET & GLOBALS + BASE
================================ */

* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background: #FAF8F4; /* Soft Ivory – premium & calm */
    color: #1C1C1C;
    animation: pageFade 0.8s ease;
}

@keyframes pageFade {
    from { opacity: 0; }
    to { opacity: 1; }
}


img {
    display: block;
}









/* ===== GLOBAL SECTION SPACING ===== */

.section {
    padding: 80px 40px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 18px;
}

.section-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    color: #BFB7A6;
}











/* =====================================================
   3. NAVBAR
===================================================== */

.top-bar {
    background: #F3F1EC; /* soft luxury beige */
    font-size: 13px;
    color: #2A2A2A;
    background: #F3F1EC;
    font-size: 13px;
    color: #2A2A2A;
    border-bottom: 1px solid rgba(0,0,0,0.08);

}

.top-bar-container {
    max-width: 1200px;
    margin: auto;
    padding: 8px 40px;
    display: flex;
    justify-content: flex-end;
}

.top-right span {
    margin-left: 20px;
    white-space: nowrap;
}








/* ===== MAIN NAVBAR ===== */
.navbar {
    background: #1C1C1C;
    height: 80px;                 /* Nesbee-like height */
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}



.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: bold;
    color: #FAF8F4;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}


.logo span {
    font-size: 14px;
    font-weight: 600;
    color:  #C6A24A;
    letter-spacing: 0.5px;
}

.logo img {
    height: 40px;   /* Adjust until perfect fit */
    width: auto;
}

.nav-logo img {
    filter: brightness(0) saturate(100%) invert(79%) sepia(62%) saturate(679%) hue-rotate(8deg) brightness(96%) contrast(87%);
}

.nav-logo {
    gap: 10px;
    padding-left: 10px;
}


.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links li {
    margin: 0;
    position: relative;

}

.nav-links a {
    margin: 0;
    color: #C0C0C0;;          /* restore white */
    text-decoration: none;  /* remove underline */
    font-size: 14px;
    font-weight: 400;
    position: relative;     /* REQUIRED for underline animation */
}


.nav-links a:hover {
    color: #C0C0C0; 
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: .5px;
    background: #C0C0C0;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.tagline {
    font-size: 12px;
    letter-spacing: 2px;
    color: #d4af37;
}



@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .navbar {
        padding: 0 20px;
    }
}









/* ================= COLLECTION DROPDOWN ================= */

.nav-links li {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: #1C1C1C;
    min-width: 200px;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    display: none;
    z-index: 999;
}

.dropdown-menu a {
    display: block;
    padding: 10px 22px;
    color: #C0C0C0;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(198, 162, 74, 0.12);
    color: #C0C0C0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}








/* =====================================================
   4. HERO
===================================================== */


/* .hero {
    background: linear-gradient(to right, #1C1C1C, #2E2E2E);
    color: #FAF8F4;
    text-align: center;
    padding: 30px 20px;
    animation: fadeSlide 1.1s ease forwards;
    margin-bottom: 20px;
}

.hero {
    position: relative;
    height: 82vh;
    background: url("images/10.jpg") center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
} */


.hero {
    position: relative;
    height: 65vh;
    padding: 60px 20px;
    /* background: url("images/10.jpg") center / cover no-repeat; */
    color: #FAF8F4;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: fadeSlide 1.1s ease forwards;
    margin-bottom: 20px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slider img.active {
    opacity: 1;
}

/* Dark luxury overlay */
.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Keep text above slider */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FAF8F4;
}



@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.25)
    );
}

.hero-content {
    position: relative;
    text-align: center;
    color: #FAF8F4;
    max-width: 700px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #E5E1D8;
}

.hero-btn {
    padding: 14px 34px;
    background: linear-gradient(135deg, #C6A24A, #E6C878);
    color: #1C1C1C;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}














/* =====================================================
   5. PRODUCT GRID
===================================================== */

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 25px;
    padding: 10px 40px 40px;
    background: #FAF8F4;
}









/* =====================================================
   6. PRODUCT CARD (ALL PRODUCT RULES LIVE HERE)
===================================================== */

/* Product Card */
.product {
    background: fff;
    border-radius: 14px;
    overflow: hidden;          /* VERY IMPORTANT */
    text-align: center;
    border: 1px solid #DDD3B8; /* Soft gold border */
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
    justify-content: space-between;
    min-height: 120px; /* adjust slightly if needed */
    /* display: flex; */
    flex-direction: column;    
}

.product {
    position: relative;
    transition: 
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.product-info {
    text-align: center;
    padding: 4px 16px 13.5px;
}


/* Premium hover effect */
/* .product:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
} */

.product:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 18px 35px rgba(0,0,0,0.14),
        0 0 0 1px rgba(198,162,74,0.35); /* soft gold outline */
    border-color: #C6A24A;
}


/* Product Image */

.product img {
    width: 100%;
    height: 260px;                 /* same height for all */
    object-fit: cover;             /* crop properly */
    margin-bottom: 2px;           /* reduce gap below image */
    border-radius: 10px;
    display: block;/* removes tiny gaps */
    object-position: center;
}

/* .product:hover img {
    transform: scale(1.04);
} */

.product img {
    transition: transform 0.6s ease;
}

.product:hover img {
    transform: scale(1.06);
}



















/* === Compact product card text layout === */

.product-info h3 {
    margin: 0;                  /* remove default margin */
    margin-top: 2px;            /* micro breathing space */
    font-size: 18px;
    line-height: 1.25;
    color: dark gray;              /* premium dark grey */
}


.product-info .price {
    margin: 6px 0 10px;            /* less vertical space */
    font-size: 14.50px;
    font-weight: bold;
    color: #C6A24A; /* Royal Gold */    
}

.price {
    color: #C6A24A;   /* Royal gold */
    font-weight: 650;
    letter-spacing: 0.5px;
}






/* =====================================================
   7. PRODUCT INFO BUTTON HOVER EFFECT
===================================================== */


.product-info button {
    background: linear-gradient(
    165deg,
    #E6C878 0%,
    #E6C878 90%,
    #C6A24A 100%
    );
    color: dark grey;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    padding: 7px 12px;           /*slightly slimmer*/ 
    font-size: 13px;
    margin-top: 3px;
    transition: 
        background 0.3s ease,
        color 0.3s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.product-info button:hover {
    background: linear-gradient(
    135deg,
    #E6C878 0%,
    #E6C878 45%,
    #C6A24A 100%
    );
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(198,162,74,0.28); /* softer shadow */
}


.product-info::before {
    display: none;
}


.product-info::before {
    content: "";
    display: block;
    width: 56px;
    height: 1.65px;
    background: #C6A24A;
    margin: 12px auto 6px;
    opacity: 0.6;
}

.product-info button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.35);
    transform: skewX(-25deg);
}

.product-info button:hover::after {
    left: 130%;
    transition: left 0.6s ease;
} 



/* CASH AGAINST DELIVERY TEXT PARA */
.cod-note {
    font-size: 14px;
    margin-top: 15px;
    color: #555;
    letter-spacing: 0.5px;
}

.cod-note span {
    display: block;
    margin-top: 6px;
    color: #C6A24A;
    font-weight: 600;
}














/* =====================================================
   7. CART TABLE
===================================================== */

.cart {
    background: #f7f3ea;
    padding: 40px 0;
}

.cart h2 {
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
}

.cart-container {
    max-width: 1100px;
    margin: 0 auto;              /* centers everything */
}

table {
    width: 100%;
    background: #FFFFFF;
    border-collapse: collapse;
}

th {
    background: #1C1C1C;
    color: #FAF8F4;
    padding: 12px;
    text-align: center;
}

td {
    padding: 12px;
    border-bottom: 1px solid #DDD3B8;
    color: #1C1C1C;
}

th, td {
    padding: 14px 12px;
    vertical-align: middle;
}

td:first-child {
    text-align: left;
}

td:not(:first-child) {
    text-align: center;
}

tbody tr {
    transition: background 0.25s ease;
}

tbody tr:hover {
    background: #F3EFE8;
}

























/* =====================================================
   8. CART CONTROLS
===================================================== */

.qty-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


.qty-value {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid #c9a24d; /* gold tone */
    background: #fffaf0;
    color: #8b6b2e;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: #c9a24d;
    color: white;
}

.remove-btn {
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.remove-btn:hover {
    transform: scale(1.2);
}























/* =====================================================
   9. BUY BUTTON
===================================================== */

.buy-btn {
    margin-top: 20px;
    padding: 15px 34px;
    background: linear-gradient(135deg, #C6A24A, #E6C878);
    color: #1C1C1C;
    border: none;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
}

.buy-btn:hover {
    background: linear-gradient(135deg, #B3923F, #D9B868);
}


.buy-btn:active {
    transform: scale(0.97);
}













/* =====================================================
   10. FOOTER (CORPORATE LUXURY)
===================================================== */

.site-footer {
    background: #1C1C1C;
    /* color: #FAF8F4; */
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;   /* gives breathing space */
    margin: 0 auto;
    padding: 50px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;           /* equal visual spacing */
    align-items: start;
}

.footer-col h3,
.footer-col h4 {
    color: #DCDCDC; /* Royal Gold */
    margin-bottom: 14px;
    font-size: 18px;
    font-weight: 500px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #DCDCDC; /* Royal Gold */
    /* color: #DDD3B8; */
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    text-decoration: none;
    /* color: #FAF8F4; */
    font-size: 14px;
    font-weight: 200px;
    color: #DCDCDC;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: #FAF8F4;
}

.brand .tagline {
    max-width: 260px;
    font-style: italic;
}

/* Social Links */

.social-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.social-links a {
    text-decoration: none;
    color: #DCDCDC;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #FAF8F4;
    transform: translateX(4px);
}

/* Footer Bottom */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    padding: 15px;
    font-size: 12px;
    /* color: #BFB7A3; */
    color: #FAF8F4;
}

/* Responsive */

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        align-items: center;
    }
}

.footer-col {
    text-align: center;
}


.footer-col h3,
.footer-col h4 {
    margin-bottom: 16px;
}

.footer-col ul li {
    line-height: 1.8;
}

.footer-col h3::after,
.footer-col h4::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background: #FAF8F4;
    margin: 8px auto 0;
    transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-col:hover h3::after,
.footer-col:hover h4::after {
    width: 50px;
}


.footer-col h3,
.footer-col h4 {
    margin-top: 0;
    line-height: 1.3;
}

.footer-col {
    min-width: 0;              /* prevents stretch illusion */
}

.brand .tagline {
    max-width: 100%;           /* REMOVE forced narrow width */
}

.brand p {
    padding-right: 10px;
}


.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;       /* horizontal center */
    justify-content: center;   /* vertical center */
    min-height: 80px;          /* controls vertical centering space */
    text-align: center;
    padding: 12px 0;
}

.footer-tagline {
    margin: 0 0 4px;
    font-size: 14px;
    /* color: #9A9A9A; */
    color: #DCDCDC;            /* royal gold */
    letter-spacing: 0.4px;
}

.footer-copy {
    margin: 0;
    font-size: 14px;
    /* color: #9A9A9A; */
    color: #DCDCDC;
}





/* MICRO-INTERACTIONS IN FOOTER LINKS */

.site-footer a {
    /* color: #FAF8F4; */
    color: #DCDCDC;                 /* Royal gold */
    text-decoration: none;
    
    position: relative;
    display: inline-block;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.site-footer a:hover {
    color: #FAF8F4;                 /* Soft luxury white */
    transform: translateX(4px);
    font-weight: 600px;
}

.site-footer a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: #E2C87A;
    transition: width 0.3s ease;
}

.site-footer a:hover::after {
    width: 100%;
}

.site-footer a:focus-visible {
    outline: none;
    color: #E2C87A;
}

.site-footer a:active {
    transform: translateX(2px) scale(0.98);
}













/* =====================================================
   11. RESPONSIVE
===================================================== */


@media (max-width: 768px) {
    .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        padding: 20px;
    }

    .product img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .products {
        grid-template-columns: 1fr;
    }
}

button, a, .product {
    transition: background-color 0.3s ease,
                color 0.3s ease,
                box-shadow 0.3s ease,
                transform 0.3s ease;
}

@media (max-width: 600px) {
    .toast {
        left: 50%;
        right: auto;
        bottom: 20px;
        transform: translate(-50%, 10px);
        text-align: center;
        min-width: 220px;
    }

    .toast.show {
        transform: translate(-50%, 0);
    }
}




/* ===== TOAST MESSAGE ===== */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;

    background: linear-gradient(
        135deg,
        #1C1C1C,
        #2A2A2A
    );
    color: #FAF8F4;

    padding: 14px 22px;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;

    border-left: 4px solid #C6A24A; /* Gold accent */

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: all 0.4s ease;
    z-index: 9999;

    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}



/* MOBILE FOOTER REFINEMENT (LUXURY + USABILITY) */

/* 1.  Stack columns cleanly (no visual clutter) */

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
}

/* 2.  Increase tap comfort (VERY important) */

@media (max-width: 768px) {
    .footer-col ul li {
        margin-bottom: 14px;
    }

    .site-footer a {
        font-size: 15px;
    }
}


/* 3.  Footer bottom text — breathing space */

@media (max-width: 768px) {
    .footer-bottom {
        padding-top: 24px;
        line-height: 1.7;
        font-size: 13px;
    }
}


/* 4.  Optional luxury touch (safe & subtle) */

@media (max-width: 768px) {
    .footer-bottom {
        border-top: 1px solid rgba(226, 200, 122, 0.35);
    }
}



/* MOBILE NAVBAR (HAMBURGER + SLIDE) */

/* ================= MOBILE HAMBURGER ================= */

.hamburger {
    /* display: none; */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    justify-content: center;
    align-items: center;   /* optional micro polish */
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #E6C878;           /* light gold */
    transition: all 0.3s ease;
}



/* ================= MOBILE MENU ================= */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: #1C1C1C;
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 9999;
    transition: right 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-menu.open {
    right: 0;
}


.mobile-menu a {
    color: #E6C878;                 /* light gold */
    font-size: 17px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-menu a:hover {
    color: #FAF8F4;
    transform: translateX(6px);
}

.mobile-divider {
    margin: 14px 0 6px;
    font-size: 13px;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
}



/* Show hamburger ONLY on mobile (very important) */

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}


/* update CSS to support it: */

.mobile-menu.open {
    right: 0;
}

/* =====================================================
   STEP 2 – PREMIUM CART POLISH (CLEAN VERSION)
   Compatible with existing theme
===================================================== */

/* Improve Cart Container */
.cart-container {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

/* Slightly refine table look without changing structure */
.cart table {
    border-radius: 8px;
    overflow: hidden;
}

/* Keep your dark header but refine spacing */
.cart th {
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Make product name slightly stronger */
.cart td:first-child {
    font-weight: 500;
}

/* Highlight price column softly */
.cart td:nth-child(2) {
    color: #C6A24A;
    font-weight: 500;
}

/* Stronger total column */
.cart td:nth-child(4) {
    font-weight: 600;
}

/* Improve grand total section */
#grand-total {
    margin-top: 30px;
    text-align: right;
    font-size: 18px;
    font-weight: 600;
    color: #1C1C1C;
}

/* Clean Buy Button (Aligned with your theme) */
/* ===================================
   Premium Light Gold Buy Button
=================================== */

.buy-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 7px 20px;
    background: linear-gradient(135deg, #f7e7c6, #e8c97a);
    color: #1C1C1C;
    border: 1px solid #d4b46a;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 550;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-btn:hover {
    background: linear-gradient(135deg, #f3ddb0, #d9b65c);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}




/* =====================================================
   FREE DELIVERY HIGHLIGHT
===================================================== */

.free-delivery {
    margin-top: 15px;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    color: #2e7d32; /* trust green */
    letter-spacing: 0.5px;
}





/* ===================================
   Premium Continue Shopping Button
=================================== */

/* ===================================
   Highlighted Continue Shopping Menu Item
=================================== */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.navbar .back-link {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #C6A24A;
    border-radius: 50px;
    color: #C6A24A;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar .back-link:hover {
    background: #C6A24A;
    color: #1C1C1C;
    transform: translateY(-2px);
}

