@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@700;800;900&display=swap");

:root {
    --gold: #f3cc47;
    --gold-deep: #c79b16;
    --ruby: #7c2031;
    --silver: #e4e4e4;
    --silver-dark: #8f959d;
    --navy: #0a2342;
    --navy-soft: #12365f;
    --ink: #142033;
    --muted: #667085;
    --cream: #fffdf7;
    --white: #ffffff;
    --line: #e7e1d0;
    --shadow: 0 18px 45px rgba(10, 35, 66, 0.15);
    --font-body: "Manrope", "Inter", Arial, sans-serif;
    --font-display: "Playfair Display", Georgia, serif;
    --text-primary: #142033;
    --text-secondary: #667085;
    --bg-light: #f8f8f8;
    --border-light: #e7e1d0;
}

/* Live Rates Ticker */
.rates-ticker {
    background: linear-gradient(90deg, #1a1a1a, #2d2d2d, #1a1a1a);
    color: white;
    text-align: center;
    padding: 0.75rem 1rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

/* Weight selection */
.weight-group {
    margin: 1.5rem 0;
}

.weight-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.weight-btn {
    transition: all 0.2s ease;
}

    .weight-btn.active {
        background: linear-gradient(135deg, var(--gold), var(--gold-deep));
        border-color: var(--gold-deep);
        color: #111;
    }

.live-rate {
    font-size: 1rem;
    color: var(--muted);
    margin-top: 1rem;
    font-weight: 600;
}

.price-note {
    color: var(--gold-deep);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: linear-gradient(180deg, rgba(255, 249, 225, 0.7), rgba(255, 253, 247, 0) 360px), var(--cream);
}

img,
svg {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

select,
textarea {
    font: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.announcement {
    min-height: 42px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    text-align: center;
    gap: 1px;
    background: linear-gradient(90deg, var(--navy), #12365f 58%, var(--ruby));
    color: var(--white);
    font-size: 0.82rem;
    letter-spacing: 0;
}

    .announcement span {
        min-height: 42px;
        display: grid;
        place-items: center;
        padding: 0 0.9rem;
        border-right: 1px solid rgba(228, 228, 228, 0.22);
    }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 253, 247, 0.96);
    border-bottom: 1px solid rgba(10, 35, 66, 0.12);
    backdrop-filter: blur(14px);
}

.nav-shell {
    width: min(1180px, calc(100% - 32px));
    min-height: 86px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
}

.brand {
    grid-column: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 900;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0;
}

    .brand img {
        width: 62px;
        height: 62px;
        object-fit: cover;
        border: 2px solid var(--gold);
        background: var(--navy);
    }

    .brand span {
        max-width: 150px;
        line-height: 1;
    }

.nav-links {
    grid-column: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.55rem;
    color: var(--navy);
    font-size: 0.93rem;
    font-weight: 600;
}

    .nav-links a {
        position: relative;
        padding: 0.5rem 0;
    }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0.1rem;
            height: 2px;
            transform: scaleX(0);
            transform-origin: left;
            background: var(--gold);
            transition: transform 180ms ease;
        }

        .nav-links a:hover::after {
            transform: scaleX(1);
        }

.nav-actions {
    grid-column: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.icon-button,
.cart-button {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(10, 35, 66, 0.16);
    background: var(--white);
    color: var(--navy);
    display: grid;
    place-items: center;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(10, 35, 66, 0.06);
}

    .icon-button svg,
    .cart-button svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.9;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.cart-button {
    position: relative;
}

    .cart-button span {
        position: absolute;
        top: -8px;
        right: -8px;
        min-width: 22px;
        height: 22px;
        display: grid;
        place-items: center;
        padding: 0 5px;
        border-radius: 999px;
        background: var(--gold);
        color: var(--navy);
        font-size: 0.75rem;
        font-weight: 900;
    }

.login-link {
    font-weight: 700;
    color: var(--navy);
}

.menu-toggle {
    display: none;
    gap: 4px;
}

    .menu-toggle span {
        width: 18px;
        height: 2px;
        background: currentColor;
    }

.search-panel {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 1rem;
    gap: 0.6rem;
}

    .search-panel.is-open {
        display: flex;
    }

    .search-panel input {
        flex: 1;
        min-width: 0;
        height: 48px;
        border: 1px solid var(--line);
        padding: 0 1rem;
        background: var(--white);
        border-radius: 8px;
    }

    .search-panel button,
    .button,
    .quick-add,
    .newsletter button {
        min-height: 46px;
        border: 0;
        padding: 0 1.35rem;
        display: inline-grid;
        place-items: center;
        background: var(--navy);
        color: var(--white);
        font-weight: 800;
        cursor: pointer;
        border-radius: 8px;
        box-shadow: 0 12px 24px rgba(10, 35, 66, 0.14);
        transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

        .search-panel button:hover,
        .button:hover,
        .quick-add:hover,
        .newsletter button:hover {
            transform: translateY(-1px);
            box-shadow: 0 16px 28px rgba(10, 35, 66, 0.18);
        }

        .quick-add.is-added {
            background: var(--ruby);
        }

.hero {
    min-height: calc(50vh - 128px);
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    align-items: center;
    gap: 3rem;
    padding: clamp(3rem, 6vw, 6rem) max(2rem, calc((100vw - 1180px) / 2));
    margin-bottom: 3rem; /* Add space below hero */
    color: var(--white);
    /*background: linear-gradient(90deg, rgba(10, 35, 66, 0.96), rgba(10, 35, 66, 0.82)), radial-gradient(circle at 85% 25%, rgba(243, 204, 71, 0.32), transparent 34%), var(--navy);*/
}

.eyebrow {
    margin: 0 0 0.8rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.story-copy h2,
.gift-card h2,
.page-hero h1,
.detail-copy h1,
.site-footer h2 {
    margin: 0;
    font-family: var(--font-display);
    letter-spacing: 0;
    line-height: 0.98;
}

.hero h1 {
    max-width: 720px;
    font-size: clamp(3.7rem, 9vw, 7.8rem);
    text-transform: uppercase;
}

.hero-copy p:not(.eyebrow) {
    max-width: 620px;
    margin: 1.3rem 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
}

.hero-copy,
.story-copy,
.gift-card,
.product-card,
.testimonial-grid article {
    min-width: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.button {
    min-width: 150px;
}

    .button.primary {
        background: var(--gold);
        color: var(--navy);
    }

    .button.secondary {
        background: transparent;
        color: var(--white);
        border: 1px solid rgba(228, 228, 228, 0.55);
    }

        .button.secondary.dark {
            color: var(--navy);
            border-color: rgba(10, 35, 66, 0.22);
        }

.hero-showcase {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
}

.coin-card {
    width: min(360px, 82vw);
    padding: 1.1rem;
    background: var(--silver);
    color: var(--navy);
    box-shadow: var(--shadow);
    transform: rotate(-3deg);
}

    .coin-card img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        background: var(--navy);
    }

    .coin-card p {
        margin: 1rem 0 0.25rem;
        color: var(--muted);
        font-weight: 700;
    }

    .coin-card strong {
        font-size: 1.4rem;
        text-transform: uppercase;
    }

.coin-stack {
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: var(--navy);
    font-weight: 900;
    font-size: 2rem;
    background: radial-gradient(circle at 32% 25%, #fff6b8 0 8%, transparent 9%), repeating-radial-gradient(circle, #f8db65 0 7px, #edbd2b 8px 12px);
    border: 8px solid #ffdf6a;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.coin-stack-one {
    left: 0;
    top: 8%;
}

.coin-stack-two {
    right: 0;
    bottom: 4%;
    width: 136px;
    height: 136px;
    font-size: 1.5rem;
}

.collection-strip {
    width: min(1180px, calc(100% - 32px));
    margin: 1.2rem auto 0;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.market-strip {
    width: min(1180px, calc(100% - 32px));
    margin: -46px auto 0;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.banners {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

.banner {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(10, 35, 66, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .banner:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(10, 35, 66, 0.2);
    }

    .banner img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        display: block;
    }

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(10, 35, 66, 0.9));
    color: var(--white);
}

    .banner-overlay h2 {
        margin: 0 0 0.5rem;
        font-family: var(--font-display);
        font-size: 1.75rem;
    }

    .banner-overlay p {
        margin: 0;
        font-size: 1.1rem;
        opacity: 0.9;
    }

.market-strip article {
    min-height: 132px;
    padding: 1.25rem;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 14px 32px rgba(10, 35, 66, 0.12);
}

.market-strip span {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.market-strip strong {
    display: block;
    margin-top: 0.55rem;
    color: var(--navy);
    font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.market-strip p {
    margin: 0.45rem 0 0;
    color: var(--muted);
    line-height: 1.45;
}

.collection-tile,
.product-card,
.testimonial-grid article,
.benefit-grid article,
.gift-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 38px rgba(10, 35, 66, 0.1);
}

.collection-tile {
    min-height: 168px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 1rem;
    padding: 1rem;
    text-align: center;
    color: var(--navy);
}

.tile-art {
    width: 74px;
    height: 74px;
    border: 2px solid var(--gold);
    background: var(--navy);
}

.all-product {
    border-radius: 999px;
    background: radial-gradient(circle, var(--gold) 0 45%, var(--navy) 47% 100%);
}

.slim-gold {
    width: 54px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), #fff0a8, var(--gold-deep));
}

.solid-gold {
    border-radius: 999px;
    background: radial-gradient(circle at 34% 30%, #fff7c7, var(--gold) 40%, var(--gold-deep));
}

.frame-gold {
    background: linear-gradient(var(--navy), var(--navy)) padding-box, linear-gradient(135deg, var(--gold), var(--silver)) border-box;
}

.coin-gold {
    border-radius: 50%;
    background: repeating-radial-gradient(circle, var(--gold) 0 8px, #d7aa1c 9px 13px);
}

.feature-band,
.product-section,
.split-story,
.gift-band,
.why-us,
.testimonials,
.enquiry-section {
    padding: clamp(3.8rem, 7vw, 6.5rem) max(2rem, calc((100vw - 1180px) / 2));
    margin-bottom: 0;
}

/* Add consistent spacing between all major sections */
section,
.feature-band,
.product-section,
.split-story,
.gift-band,
.why-us,
.testimonials,
.enquiry-section,
.banners,
.market-strip,
.collection-strip {
    margin-bottom: clamp(2rem, 4vw, 4rem);
}

/* Override for the last section to remove extra margin at the bottom */
main > section:last-child,
body > section:last-child {
    margin-bottom: 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 2.2rem;
    text-align: center;
}

    .section-heading h2,
    .story-copy h2,
    .gift-card h2 {
        color: var(--navy);
        font-size: clamp(2rem, 4.6vw, 4.25rem);
    }

    .section-heading p:not(.eyebrow),
    .story-copy p,
    .gift-card p {
        color: var(--muted);
        line-height: 1.7;
        font-size: 1.02rem;
    }

    .section-heading.compact h2 {
        font-size: clamp(2rem, 3.4vw, 3.25rem);
    }

.feature-image {
    width: min(760px, 100%);
    margin: 0 auto;
    padding: clamp(1rem, 3vw, 2rem);
    background: var(--navy);
    border: 10px solid var(--gold);
}

    .feature-image img {
        width: 100%;
        max-height: 520px;
        object-fit: contain;
    }

.pill-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.6rem;
}

    .pill-row span {
        padding: 0.75rem 1.1rem;
        color: var(--navy);
        background: var(--silver);
        border: 1px solid var(--line);
        font-weight: 800;
    }

.product-section.alt {
    background: #f7f3e6;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.product-card {
    position: relative;
    min-width: 0;
    padding: 0 0 1.2rem;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

    /* Prevent anchor tags inside product card from covering the Add to Cart button */
    .product-card > a {
        position: relative;
        z-index: 1;
        display: block;
    }

    /* Ensure product-art's anchor doesn't block the button */
    .product-card .product-art {
        position: relative;
        z-index: 1;
    }

    /* Ensure the anchor wrapping title/price doesn't block the button */
    .product-card a:not(:first-child) {
        position: relative;
        z-index: 1;
        display: inline-block;
    }

/* New wrapper styles */
.product-art-wrapper {
    position: relative;
    z-index: 1;
    display: block;
}

.product-info-wrapper {
    position: relative;
    z-index: 1;
    display: block;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(10, 35, 66, 0.14);
}

.product-art {
    position: relative;
    min-height: 250px;
    display: grid;
    place-items: center;
    background-color: #fffdf8;
    background-image: radial-gradient(circle at 50% 42%, rgba(243, 204, 71, 0.2), transparent 36%), linear-gradient(145deg, #fffdf8, #f3eddb);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.product-art.has-image::before,
.product-art.has-image::after {
    content: none !important;
}

    .product-art img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        max-height: 250px;
    }

    .product-art::before {
        content: "";
        width: 178px;
        height: 248px;
        border: 11px solid var(--gold);
        background: radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.8) 0 12%, transparent 13%), radial-gradient(circle, #f7dd70 0 28%, #d9aa1b 29% 48%, #7e6111 49% 51%, transparent 52%), var(--navy);
        box-shadow: inset 0 0 0 10px rgba(228, 228, 228, 0.5), 0 20px 42px rgba(10, 35, 66, 0.12);
    }

    .product-art.laxmi::before,
    .product-art.solid-two::before {
        border-radius: 999px;
    }

    .product-art.kalp::before,
    .product-art.palace::before {
        clip-path: polygon(50% 0, 100% 23%, 91% 100%, 9% 100%, 0 23%);
    }

    .product-art.balaji::before,
    .product-art.solid-four::before {
        border-radius: 999px 999px 26px 26px;
    }

    .product-art.solid-one::before,
    .product-art.solid-three::before,
    .product-art.peacock::before {
        width: 200px;
        height: 200px;
        border-radius: 999px;
    }

    .product-art.frame-one::before {
        width: 205px;
        height: 250px;
        border-color: var(--silver-dark);
        background: radial-gradient(circle, var(--gold) 0 18%, transparent 19%), linear-gradient(135deg, var(--silver), var(--white));
    }

    .product-art.gold-bar::before,
    .product-art.silver-bar::before {
        width: 198px;
        height: 260px;
        border-radius: 8px;
        clip-path: none;
        border: 8px solid rgba(255, 255, 255, 0.75);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.78) 0 10%, transparent 11% 100%), linear-gradient(145deg, #fff1a4, var(--gold) 44%, var(--gold-deep));
        box-shadow: inset 0 0 0 10px rgba(126, 97, 17, 0.14), 0 22px 42px rgba(10, 35, 66, 0.16);
    }

    .product-art.gold-bar::after,
    .product-art.silver-bar::after {
        content: "DG";
        position: absolute;
        width: 86px;
        height: 86px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        color: var(--navy);
        background: rgba(255, 255, 255, 0.5);
        font-weight: 900;
        font-size: 1.7rem;
    }

    .product-art.gold-bar.slim::before {
        width: 154px;
    }

    .product-art.gold-bar.premium::before {
        width: 220px;
        height: 228px;
    }

    .product-art.gold-bar.cert::after {
        content: "24K";
    }

    .product-art.silver-bar::before {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0 12%, transparent 13% 100%), linear-gradient(145deg, #ffffff, var(--silver) 48%, var(--silver-dark));
        box-shadow: inset 0 0 0 10px rgba(102, 112, 133, 0.12), 0 22px 42px rgba(10, 35, 66, 0.12);
    }

    .product-art.silver-bar::after {
        content: "999";
        color: var(--navy);
    }

    .product-art.silver-bar.kilo::before {
        width: 230px;
        height: 210px;
    }

    .product-art.silver-bar.gift::after {
        content: "Gift";
        font-size: 1.2rem;
    }

    .product-art.silver-bar.minted::before {
        border-radius: 24px;
    }

    .product-art.coin-round::before {
        width: 210px;
        height: 210px;
        border-radius: 999px;
        clip-path: none;
        border: 12px solid #ffe26d;
        background: radial-gradient(circle at 35% 27%, #fff8c9 0 10%, transparent 11%), repeating-radial-gradient(circle, var(--gold) 0 10px, #d7aa1c 11px 15px);
    }

    .product-art.coin-round::after {
        content: "DG";
        position: absolute;
        width: 86px;
        height: 86px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        color: var(--navy);
        background: rgba(255, 255, 255, 0.56);
        font-weight: 900;
        font-size: 1.6rem;
    }

    .product-art.coin-round.silver::before {
        border-color: var(--silver-dark);
        background: radial-gradient(circle at 35% 27%, #ffffff 0 10%, transparent 11%), repeating-radial-gradient(circle, #ffffff 0 10px, var(--silver) 11px 15px);
    }

    .product-art.coin-round.deity::after {
        content: "24K";
    }

    .product-art.coin-round.custom::after {
        content: "Logo";
        font-size: 1.1rem;
    }

.quick-add {
    width: calc(100% - 2rem);
    margin: -23px 1rem 1rem;
    position: relative;
    z-index: 1000; /* Higher z-index to ensure button is on top */
    background: var(--navy);
    pointer-events: auto; /* Ensure click events are registered */
    /* Make button more prominent */
    border: 2px solid white;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.weights,
.product-card h3,
.price {
    margin-left: 1rem;
    margin-right: 1rem;
}

.weights {
    min-height: 36px;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.45;
}

.product-card h3 {
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 1.28rem;
    line-height: 1.12;
}

.price {
    margin-top: 0;
    margin-bottom: 0;
    color: var(--navy-soft);
    font-weight: 800;
}

.text-link {
    width: max-content;
    margin: 2rem auto 0;
    display: block;
    color: var(--navy);
    border-bottom: 2px solid var(--gold);
    font-weight: 900;
}

.split-story {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    background: var(--navy);
}

.story-visual {
    min-height: 430px;
    display: grid;
    place-items: center;
    background: linear-gradient(45deg, rgba(243, 204, 71, 0.14) 25%, transparent 25% 50%, rgba(228, 228, 228, 0.12) 50% 75%, transparent 75%), var(--navy-soft);
    background-size: 48px 48px;
}

.large-medallion {
    width: min(310px, 72vw);
    aspect-ratio: 1;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: radial-gradient(circle at 35% 25%, #fff6c0, var(--gold) 42%, var(--gold-deep));
    border: 14px solid #ffe26d;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
}

.story-copy h2,
.story-copy p {
    color: var(--white);
}

.story-copy p {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.76);
}

.gift-band {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
    align-items: stretch;
    gap: 1.25rem;
    background: linear-gradient(180deg, var(--cream), #f5efd8);
}

.gift-card {
    padding: clamp(1.8rem, 4vw, 3rem);
}

.gift-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

    .gift-grid span {
        min-height: 180px;
        display: grid;
        place-items: center;
        padding: 1rem;
        color: var(--white);
        background: linear-gradient(rgba(10, 35, 66, 0.68), rgba(10, 35, 66, 0.68)), radial-gradient(circle at 50% 20%, var(--gold), transparent 34%), var(--navy);
        text-align: center;
        font-size: 1.35rem;
        font-weight: 900;
    }

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

    .benefit-grid article {
        min-height: 210px;
        display: grid;
        align-content: center;
        justify-items: center;
        gap: 1rem;
        padding: 1.4rem;
        text-align: center;
    }

.benefit-icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-weight: 900;
}

.benefit-grid h3 {
    margin: 0;
    color: var(--navy);
}

.testimonials {
    background: var(--navy);
}

    .testimonials .section-heading h2 {
        color: var(--white);
    }

    .testimonials .section-heading p {
        color: rgba(255, 255, 255, 0.7);
    }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

    .testimonial-grid article {
        min-height: 260px;
        padding: 1.6rem;
    }

    .testimonial-grid h3 {
        margin: 0 0 1rem;
        color: var(--navy);
        font-size: 1.3rem;
    }

    .testimonial-grid p {
        color: var(--muted);
        line-height: 1.7;
    }

    .testimonial-grid strong {
        color: var(--gold-deep);
    }

.enquiry-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: clamp(1.25rem, 4vw, 3rem);
    align-items: start;
    background: linear-gradient(180deg, #f8f4e9, var(--cream));
}

.page-hero {
    padding: clamp(3.8rem, 7vw, 6.5rem) max(2rem, calc((100vw - 1180px) / 2));
    margin-bottom: clamp(2rem, 4vw, 4rem);
    color: var(--white);
    background: linear-gradient(90deg, rgba(10, 35, 66, 0.96), rgba(18, 54, 95, 0.9)), radial-gradient(circle at 84% 22%, rgba(243, 204, 71, 0.32), transparent 34%), var(--navy);
}

    .page-hero h1 {
        max-width: 860px;
        margin: 0;
        font-size: clamp(3rem, 8vw, 6.6rem);
        line-height: 0.98;
        text-transform: uppercase;
    }

    .page-hero p:not(.eyebrow) {
        max-width: 680px;
        margin: 1rem 0 0;
        color: rgba(255, 255, 255, 0.76);
        font-size: 1.08rem;
        line-height: 1.7;
    }

.shop-layout,
.cart-layout,
.checkout-layout,
.product-detail,
.policy-page,
.about-story {
    padding: clamp(3.8rem, 7vw, 6.5rem) max(2rem, calc((100vw - 1180px) / 2));
    margin-bottom: clamp(2rem, 4vw, 4rem);
}

.shop-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.28fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.filter-panel,
.catalog-panel {
    min-width: 0;
}

.filter-panel,
.summary-box,
.auth-card,
.policy-page article {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(10, 35, 66, 0.08);
}

.filter-panel {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
}

    .filter-panel h2,
    .summary-box h2,
    .cart-row h2,
    .auth-card h1,
    .policy-page h2 {
        margin: 0;
        color: var(--navy);
    }

    .filter-panel label,
    .auth-card label {
        display: grid;
        gap: 0.45rem;
        color: var(--navy);
        font-weight: 800;
    }

    .filter-panel input,
    .filter-panel select,
    .filter-panel button,
    .catalog-toolbar select,
    .cart-row input,
    .auth-card input,
    .auth-card button {
        width: 100%;
        min-width: 0;
        min-height: 46px;
        border: 1px solid var(--line);
        padding: 0 0.85rem;
        background: #fffdf8;
        color: var(--ink);
        font: inherit;
    }

    .filter-panel button,
    .auth-card button {
        border: 0;
        background: var(--navy);
        color: var(--white);
        font-weight: 900;
        cursor: pointer;
    }

.catalog-toolbar {
    min-height: 58px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--navy);
    font-weight: 800;
}

    .catalog-toolbar p {
        margin: 0;
    }

.product-detail {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(1.5rem, 5vw, 4rem);
    align-items: start;
}

.detail-gallery {
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

    .detail-gallery .product-art {
        min-height: 560px;
    }

.thumb-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 0.8rem;
    padding: 1rem;
}

.thumb-item {
    min-height: 74px;
    border: 1px solid var(--line);
    background-color: #fffdf8;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.thumb-item.active {
    border-color: var(--gold);
    box-shadow: 0 10px 18px rgba(10, 35, 66, 0.12);
}

.detail-copy h1 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(2.6rem, 5vw, 5rem);
    line-height: 1;
}

.detail-copy p {
    color: var(--muted);
    line-height: 1.7;
}

.detail-price {
    color: var(--gold-deep) !important;
    font-size: 1.35rem;
    font-weight: 900;
}

.option-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 1.3rem 0;
}

    .option-group button {
        min-width: 72px;
        min-height: 44px;
        border: 1px solid var(--line);
        background: var(--white);
        color: var(--navy);
        font-weight: 900;
        cursor: pointer;
    }

        .option-group button:hover {
            border-color: var(--gold);
            background: #fff6cb;
        }

        .option-group button.is-selected {
            border-color: var(--gold-deep);
            background: var(--gold);
            color: var(--navy);
        }

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.4rem 0;
}

.detail-primary-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    width: 100%;
}

    .detail-actions .quick-add {
        width: 100%;
        margin: 0;
    }

    .detail-primary-actions .button {
        min-width: 0;
        width: 100%;
    }

.product-card-actions {
    flex-wrap: nowrap;
}

    .product-card-actions > * {
        flex: 1 1 0;
        min-width: 0;
    }

    .product-card-actions .quick-add,
    .product-card-actions .button {
        width: 100%;
        margin: 0;
    }

.spec-list,
.summary-box dl {
    display: grid;
    gap: 0.75rem;
    margin: 1.5rem 0 0;
}

    .spec-list div,
    .summary-box dl div {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.9rem 1rem;
        background: var(--white);
        border: 1px solid var(--line);
    }

    .spec-list dt,
    .summary-box dt {
        color: var(--muted);
        font-weight: 800;
    }

    .spec-list dd,
    .summary-box dd {
        margin: 0;
        color: var(--navy);
        font-weight: 900;
    }

.cart-layout,
.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
    gap: 1.4rem;
    align-items: start;
}

.cart-items {
    display: grid;
    gap: 1rem;
}

.cart-row {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) auto 82px auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(10, 35, 66, 0.08);
}

    .cart-row p,
    .summary-box p,
    .policy-page p {
        color: var(--muted);
        line-height: 1.7;
    }

.mini-art {
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 50% 35%, rgba(243, 204, 71, 0.2), transparent 42%), #fffdf8;
    border: 1px solid var(--line);
    border-radius: 8px;
}

    .mini-art::before {
        content: "";
        width: 48px;
        height: 64px;
        border-radius: 6px;
        background: linear-gradient(145deg, #fff1a4, var(--gold) 44%, var(--gold-deep));
    }

    .mini-art.silver::before {
        border-radius: 999px;
        background: linear-gradient(145deg, #ffffff, var(--silver), var(--silver-dark));
    }

.summary-box {
    display: grid;
    gap: 1rem;
    padding: 1.4rem;
}

.remove-item {
    min-height: 40px;
    border: 1px solid rgba(10, 35, 66, 0.16);
    padding: 0 0.8rem;
    background: var(--white);
    color: var(--navy);
    font-weight: 900;
    cursor: pointer;
    border-radius: 8px;
}

    .remove-item:hover {
        border-color: var(--gold-deep);
        background: #fff6cb;
    }

.empty-state {
    display: grid;
    justify-items: start;
    gap: 0.8rem;
    padding: clamp(1.4rem, 4vw, 2rem);
    background: linear-gradient(135deg, rgba(243, 204, 71, 0.18), rgba(255, 253, 247, 0) 42%), var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(10, 35, 66, 0.08);
}

    .empty-state h2 {
        margin: 0;
        color: var(--navy);
    }

    .empty-state p {
        margin: 0;
        color: var(--muted);
        line-height: 1.7;
    }

.checkout-list {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .checkout-list li {
        display: grid;
        gap: 0.2rem;
        padding: 0.9rem 1rem;
        border: 1px solid var(--line);
        background: #fffdf8;
        color: var(--navy);
        font-weight: 900;
    }

    .checkout-list span {
        color: var(--muted);
        font-size: 0.88rem;
        font-weight: 700;
    }

.form-message {
    display: none;
    grid-column: 1 / -1;
    margin: 0;
    padding: 0.95rem 1rem;
    background: #fff6cb;
    border: 1px solid var(--gold);
    color: var(--navy);
    font-weight: 800;
    line-height: 1.55;
}

    .form-message.is-visible {
        display: block;
    }

.toast-container {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: min(360px, calc(100vw - 2rem));
    pointer-events: none;
}

.toast {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.9rem;
    align-items: start;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(10, 35, 66, 0.12);
    box-shadow: 0 18px 40px rgba(10, 35, 66, 0.16);
    background: #ffffff;
    color: var(--navy);
    transform: translateY(-10px);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: auto;
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.toast.is-leaving {
    opacity: 0;
    transform: translateY(-8px);
}

.toast-success {
    border-left: 5px solid #12805c;
    background: #f0fff8;
}

.toast-error {
    border-left: 5px solid #c62828;
    background: #fff5f5;
}

.toast-warning {
    border-left: 5px solid #d48a00;
    background: #fff9ed;
}

.toast-info {
    border-left: 5px solid #1d5fd0;
    background: #f4f8ff;
}

.toast-content {
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.5;
}

.toast-close {
    border: none;
    background: transparent;
    color: inherit;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.summary-box .button {
    width: 100%;
}

.summary-box .text-link {
    margin-top: 0;
}

.checkout-form {
    box-shadow: none;
}

.bulk-page {
    padding-top: clamp(3.8rem, 7vw, 6.5rem);
}

.about-story {
    padding-top: clamp(3.8rem, 7vw, 6.5rem);
    padding-bottom: clamp(3.8rem, 7vw, 6.5rem);
}

.auth-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(90deg, rgba(10, 35, 66, 0.96), rgba(18, 54, 95, 0.9)), radial-gradient(circle at 72% 20%, rgba(243, 204, 71, 0.28), transparent 32%), var(--navy);
}

    .auth-page .brand {
        color: var(--white);
    }

.auth-card {
    width: min(460px, 100%);
    display: grid;
    gap: 1rem;
    padding: clamp(1.4rem, 4vw, 2rem);
}

    .auth-card a {
        color: var(--navy);
        font-weight: 900;
        text-align: center;
    }

.account-layout {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 1.25rem;
}

.account-panel,
.account-sidebar,
.account-card,
.data-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 38px rgba(10, 35, 66, 0.08);
}

.account-sidebar {
    padding: 1.25rem;
    display: grid;
    gap: 0.85rem;
    align-content: start;
}

.account-sidebar a {
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 700;
    color: var(--navy);
    background: #fffdf8;
}

.account-panel,
.data-panel {
    padding: 1.5rem;
}

.account-header-row,
.toolbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.account-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.account-stat {
    padding: 1rem;
    border-radius: 8px;
    background: #fff9e1;
    border: 1px solid rgba(199, 155, 22, 0.22);
}

.account-stat span {
    display: block;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 700;
}

.account-stat strong {
    display: block;
    margin-top: 0.35rem;
    font-size: 1.55rem;
    color: var(--navy);
}

.dashboard-grid,
.detail-grid,
.cards-grid {
    display: grid;
    gap: 1rem;
}

.dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stacked-form,
.stacked-form label {
    display: grid;
    gap: 0.55rem;
}

.stacked-form input,
.stacked-form textarea,
.stacked-form select,
.toolbar-row input,
.toolbar-row select {
    width: 100%;
    min-height: 46px;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.stacked-form textarea {
    min-height: 120px;
    resize: vertical;
}

.inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.status-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--navy);
    background: #eef3f9;
    border: 1px solid rgba(10, 35, 66, 0.1);
}

.status-chip.pending,
.status-chip.confirmed,
.status-chip.packed,
.status-chip.shipped,
.status-chip.out-for-delivery {
    background: #fff4d0;
    color: #7a5600;
}

.status-chip.delivered,
.status-chip.success {
    background: #e8f7ed;
    color: #11643b;
}

.status-chip.cancelled,
.status-chip.failure,
.status-chip.refunded {
    background: #fde8ea;
    color: #9f2333;
}

.status-chip.pending-payment {
    background: #edf4ff;
    color: #1d4f9c;
}

.data-list {
    display: grid;
    gap: 1rem;
}

.data-card,
.timeline-card {
    padding: 1rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffdf8;
}

.data-card h3,
.timeline-card h3 {
    margin: 0 0 0.45rem;
    color: var(--navy);
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.empty-state {
    padding: 2rem;
    text-align: center;
    border: 1px dashed var(--line);
    border-radius: 8px;
    color: var(--muted);
    background: #fffdf8;
}

.notification-list {
    display: grid;
    gap: 1rem;
}

.notification-item {
    padding: 1rem 1.1rem;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #fffdf8;
}

.notification-item.unread {
    border-color: rgba(199, 155, 22, 0.45);
    background: #fff9e1;
}

.policy-page {
    display: grid;
    gap: 1rem;
}

    .policy-page article {
        padding: clamp(1.3rem, 3vw, 2rem);
    }

    .policy-page .button {
        width: max-content;
    }

.enquiry-copy h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(2rem, 4.2vw, 4rem);
    line-height: 1;
}

.enquiry-copy p:not(.eyebrow) {
    max-width: 560px;
    color: var(--muted);
    line-height: 1.7;
}

.contact-points {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.6rem;
}

    .contact-points span {
        padding: 0.85rem 1rem;
        background: var(--white);
        border: 1px solid var(--line);
        color: var(--navy);
        font-weight: 800;
    }

.quote-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: clamp(1.2rem, 3vw, 2rem);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

    .quote-form label {
        display: grid;
        gap: 0.45rem;
        color: var(--navy);
        font-weight: 800;
    }

    .quote-form input,
    .quote-form select,
    .quote-form textarea {
        width: 100%;
        min-width: 0;
        border: 1px solid var(--line);
        padding: 0.85rem 0.95rem;
        color: var(--ink);
        background: #fffdf8;
    }

    .quote-form textarea {
        resize: vertical;
    }

    .quote-form .full,
    .quote-form button {
        grid-column: 1 / -1;
    }

    .quote-form button {
        min-height: 50px;
        border: 0;
        background: var(--gold);
        color: var(--navy);
        font-weight: 900;
        cursor: pointer;
    }

.site-footer {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
    gap: 2rem;
    margin-top: clamp(2rem, 4vw, 4rem);
    padding: clamp(3rem, 6vw, 5rem) max(2rem, calc((100vw - 1180px) / 2)) 1.5rem;
    background: #071a31;
    color: var(--white);
}

    .site-footer h2 {
        font-size: clamp(2rem, 4vw, 3.5rem);
    }

    .site-footer h3 {
        margin: 0 0 1rem;
        color: var(--gold);
    }

    .site-footer p,
    .site-footer a,
    .newsletter label {
        display: block;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.7;
    }

    .site-footer a {
        margin: 0.4rem 0;
    }

.newsletter {
    margin-top: 1.2rem;
}

    .newsletter div {
        display: flex;
        gap: 0.5rem;
        margin-top: 0.7rem;
    }

    .newsletter input {
        min-width: 0;
        flex: 1;
        height: 46px;
        border: 1px solid rgba(228, 228, 228, 0.28);
        padding: 0 0.85rem;
        background: transparent;
        color: var(--white);
    }

    .newsletter button {
        background: var(--gold);
        color: var(--navy);
    }

.copyright {
    grid-column: 1 / -1;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(228, 228, 228, 0.18);
    font-size: 0.88rem;
}

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

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-showcase {
        order: -1;
    }

    .enquiry-section {
        grid-template-columns: 1fr;
    }

    .enquiry-copy {
        text-align: center;
    }

    .gift-band {
        grid-template-columns: 1fr;
    }

    .split-story {
        grid-template-columns: 1fr;
    }

    .story-copy {
        text-align: center;
    }

    .market-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .collection-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .banner img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .market-strip {
        grid-template-columns: 1fr;
    }

    .collection-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .gift-grid {
        grid-template-columns: 1fr;
    }

    .quote-form {
        grid-template-columns: 1fr;
    }

    .announcement {
        grid-template-columns: 1fr;
    }

    .banner img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .collection-strip {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .nav-shell {
        min-height: 70px;
    }

    .brand img {
        width: 50px;
        height: 50px;
    }

    .banner img {
        height: 180px;
    }

    .banner-overlay {
        padding: 1rem;
    }

        .banner-overlay h2 {
            font-size: 1.25rem;
        }

        .banner-overlay p {
            font-size: 0.95rem;
        }
}

/* ==================== CART PAGE STYLES ==================== */
:root {
    --gold: #d4af37;
    --dark-gold: #b8901f;
    --light-gold: #f4d03f;
    --silver: #c0c0c0;
    --dark: #1f2937;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-light: #f8f8f8;
    --border-light: #e5e7eb;
    --danger: #dc2626;
}

/* Live Rate Banner */
.live-rate-banner {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--dark);
    padding: 1rem 0;
}

    .live-rate-banner .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }

.rate-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.rate-icon {
    font-size: 1.5rem;
}

.rate-value {
    font-size: 1.25rem;
    font-weight: 800;
}

.rate-change.up {
    color: #16a34a;
    font-weight: 600;
}

/* Cart Page Container */
.cart-page {
    padding: 2rem 0 4rem;
}

    .cart-page .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }

/* Continue Shopping */
.continue-shopping {
    margin-bottom: 1.5rem;
}

    .continue-shopping a {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--dark);
        font-weight: 600;
        transition: color 0.2s ease;
    }

        .continue-shopping a:hover {
            color: var(--gold);
        }

/* Cart Grid */
.cart-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
}

/* Cart Items Section */
.cart-items-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--text-primary);
    margin: 0;
}

    .section-title .count {
        color: var(--gold);
    }

/* Empty Cart */
.empty-cart {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.empty-cart-illustration {
    margin-bottom: 1.5rem;
}

.cart-icon {
    font-size: 5rem;
    opacity: 0.3;
}

.empty-cart h3 {
    font-family: var(--font-display);
    color: var(--text-primary);
    margin: 0 0 1rem;
    font-size: 1.5rem;
}

.empty-cart p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.btn-browse-products {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(212,175,55,0.3);
}

    .btn-browse-products:hover {
        background: var(--dark-gold);
        transform: translateY(-1px);
        box-shadow: 0 6px 10px -2px rgba(212,175,55,0.4);
    }

/* Cart Item Card */
.cart-item-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 120px 1fr 120px 140px;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

    .cart-item-card:hover {
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        transform: translateY(-2px);
    }

/* Product Image */
.product-image-container {
    width: 120px;
    height: 120px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: var(--bg-light);
}

/* Product Details */
.product-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-name {
    font-family: var(--font-display);
    color: var(--text-primary);
    margin: 0;
    font-size: 1.125rem;
}

.product-code {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.875rem;
}

.product-specs {
    display: flex;
    gap: 1rem;
}

.spec {
    color: var(--text-secondary);
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.unit-price {
    color: var(--text-secondary);
    margin: 0.5rem 0 0;
}

    .unit-price .price {
        color: var(--gold);
        font-weight: 700;
    }

/* Quantity Control */
.quantity-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    background: white;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .qty-btn:hover {
        border-color: var(--gold);
        color: var(--gold);
        transform: scale(1.1);
    }

.qty-value {
    min-width: 40px;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Price & Remove Section */
.price-remove-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
}

.item-total-price {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gold);
}

.btn-remove {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: transparent;
    color: var(--danger);
    border: 1px solid var(--danger);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .btn-remove:hover {
        background: var(--danger);
        color: white;
    }

/* Summary Section */
.summary-section {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.summary-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

    .summary-card h3 {
        font-family: var(--font-display);
        color: var(--text-primary);
        margin: 0 0 1.5rem;
        font-size: 1.375rem;
    }

/* Coupon Section */
.coupon-section {
    margin-bottom: 1.25rem;
}

.coupon-label {
    color: var(--text-secondary);
    font-weight: 600;
    margin: 0 0 0.75rem;
}

.coupon-input-wrapper {
    display: flex;
    gap: 0.5rem;
}

    .coupon-input-wrapper input {
        flex: 1;
        padding: 0.625rem 1rem;
        border: 1px solid var(--border-light);
        border-radius: 8px;
        font-size: 0.875rem;
    }

.btn-apply-coupon {
    padding: 0.625rem 1.5rem;
    background: var(--dark);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .btn-apply-coupon:hover {
        background: var(--text-primary);
    }

/* Summary Divider */
.summary-divider {
    height: 1px;
    background: var(--border-light);
    margin: 1rem 0;
}

/* Summary Row */
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

    .summary-row .label {
        color: var(--text-secondary);
        font-weight: 500;
    }

    .summary-row .value {
        font-weight: 700;
        color: var(--text-primary);
    }

        .summary-row .value.free {
            color: #16a34a;
        }

    /* Grand Total */
    .summary-row.grand-total {
        padding-top: 0.5rem;
        margin-bottom: 1.5rem;
    }

        .summary-row.grand-total .label {
            font-size: 1.125rem;
            color: var(--text-primary);
            font-weight: 700;
        }

        .summary-row.grand-total .value {
            font-size: 1.75rem;
            color: var(--gold);
            font-weight: 900;
            font-family: var(--font-display);
        }

/* Delivery Info */
.delivery-info {
    color: var(--text-secondary);
    margin: 0 0 1.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

    .delivery-info strong {
        color: var(--text-primary);
    }

/* Checkout Button */
.btn-checkout {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.125rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(212,175,55,0.3);
}

    .btn-checkout:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(212,175,55,0.4);
    }

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.badge-icon {
    font-size: 1.5rem;
}

/* Summary Note */
.summary-card .note {
    color: var(--text-secondary);
    font-size: 0.8125rem;
    line-height: 1.6;
    margin: 1.25rem 0 0;
}

/* ==================== CHECKOUT SUMMARY STYLES ==================== */
.checkout-summary {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

    .checkout-summary h2 {
        font-family: var(--font-display);
        color: var(--text-primary);
        margin: 0 0 1.5rem;
        font-size: 1.375rem;
    }

/* Checkout Items */
.checkout-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px dashed var(--border-light);
}

    .checkout-item:last-of-type {
        border-bottom: none;
    }

.item-info {
    flex: 1;
}

.item-name {
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.25rem;
}

.item-specs {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.item-price {
    font-weight: 800;
    color: var(--gold);
    margin: 0;
    white-space: nowrap;
}

/* Checkout Page Layout */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
}

.checkout-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Saved Addresses */
.saved-addresses {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.address-card {
    position: relative;
    display: block;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .address-card:hover {
        border-color: var(--gold);
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
    }

.address-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

    .address-radio:checked + .address-content {
        /* Style when selected */
    }

    .address-radio:checked ~ * {
        border-color: var(--gold) !important;
        background: linear-gradient(to right, rgba(212,175,55,0.05), rgba(244,208,63,0.05));
    }

.address-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.address-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.address-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
}

.address-phone {
    color: var(--text-secondary);
}

.default-badge {
    background: var(--gold);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.address-details {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* New Address Card */
.new-address-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-address-content {
    display: flex;
    flex-direction: row !important;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 700;
}

.plus-icon {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

/* Save Address Options */
.save-address-option {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 1040px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
}

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

.product-detail {
    padding: clamp(2rem, 4vw, 4rem) max(2rem, calc((100vw - 1200px) / 2));
    background: var(--cream);
}

.product-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

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

.main-image-wrapper {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
}

.main-product-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

.thumbnails-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.thumbnail-item {
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

    .thumbnail-item:hover,
    .thumbnail-item.active {
        border-color: var(--gold);
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
    }

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.product-code {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #fff8e1, #fff3c4);
    border-radius: 20px;
}

    .rating-badge .stars {
        color: #fbbf24;
        font-size: 1.125rem;
    }

    .rating-badge .rating-text {
        color: var(--text-primary);
        font-weight: 600;
        font-size: 0.875rem;
    }

.weight-purity {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

    .info-badge .badge-icon {
        font-size: 1.25rem;
    }

.price-section {
    background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(244,208,63,0.05));
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(212,175,55,0.2);
}

    .price-section .price {
        color: var(--gold-deep) !important;
        font-size: 2.5rem !important;
        font-family: var(--font-display);
        margin: 0;
    }

.price-note {
    color: var(--text-secondary);
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
}

.description-section h3,
.specifications-section h3 {
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin: 0 0 0.75rem;
}

.description-section .description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qty-label {
    font-weight: 700;
    color: var(--text-primary);
}

.qty-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
}

    .qty-input-wrapper .qty-btn {
        width: 48px;
        height: 48px;
        border: none;
        background: var(--bg-light);
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-primary);
        cursor: pointer;
        transition: all 0.2s ease;
    }

        .qty-input-wrapper .qty-btn:hover {
            background: var(--gold);
            color: white;
        }

.qty-input {
    width: 70px;
    height: 48px;
    border: none;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
    background: white;
}

.product-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

    .product-actions .button {
        min-height: 56px;
        font-size: 1rem;
        border-radius: 12px;
    }

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

    .trust-badge .badge-icon {
        font-size: 1.75rem;
    }

    .trust-badge .badge-text {
        font-size: 0.8125rem;
        color: var(--text-secondary);
        font-weight: 600;
    }

.specifications-section .spec-list {
    display: grid;
    gap: 0.75rem;
    margin: 0;
}

    .specifications-section .spec-list div {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        padding: 1rem 1.25rem;
        background: white;
        border: 1px solid var(--border-light);
        border-radius: 10px;
    }

.specifications-section dt {
    color: var(--text-secondary);
    font-weight: 600;
}

.specifications-section dd {
    color: var(--text-primary);
    font-weight: 700;
    margin: 0;
}

/* ==================== PRODUCT DETAIL RESPONSIVE ==================== */

@media (max-width: 1024px) {
    .product-detail-container {
        grid-template-columns: 1fr;
    }

    .product-detail-gallery {
        position: static;
    }
}

@media (max-width: 768px) {
    .product-detail {
        padding: 2rem 1rem;
    }

    .main-image-wrapper {
        padding: 1.5rem;
    }

    .price-section .price {
        font-size: 2rem !important;
    }

    .product-actions {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .thumbnails-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .weight-purity {
        flex-direction: column;
    }

    .info-badge {
        width: 100%;
        justify-content: center;
    }

    .toast-container {
        top: 0.75rem;
        right: 0.75rem;
        left: 0.75rem;
        width: auto;
    }


.breadcrumb-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 1rem auto 0;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.breadcrumb-item:not(:last-child)::after {
    content: "/";
    margin-left: 0.55rem;
    color: rgba(13, 49, 89, 0.45);
}

.product-art-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-links a {
    color: inherit;
    font-weight: 700;
}

.floating-contact-bar {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1000;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.floating-contact-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: var(--navy);
    color: #fff;
    box-shadow: 0 12px 30px rgba(13, 49, 89, 0.24);
    font-weight: 700;
}

@media (max-width: 768px) {
    .floating-contact-bar {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        justify-content: center;
    }

    .floating-contact-bar a {
        flex: 1 1 120px;
    }
}


    .detail-primary-actions {
        gap: 0.6rem;
    }

    .detail-primary-actions .button,
    .product-card-actions .button,
    .product-card-actions .quick-add {
        min-width: 0;
        font-size: 0.92rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 1040px) {
    .cart-grid {
        grid-template-columns: 1fr;
    }

    .summary-section {
        position: static;
    }
}

@media (max-width: 768px) {
    .cart-item-card {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-image-container {
        width: 100%;
        height: 160px;
    }

    .product-image {
        height: 100%;
    }

    .product-details {
        text-align: center;
    }

    .product-specs {
        justify-content: center;
    }

    .price-remove-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .trust-badges {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }

    .coupon-input-wrapper {
        flex-direction: column;
    }

    .btn-apply-coupon {
        width: 100%;
    }
}

@media (max-width: 1040px) {
    .announcement {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-shell {
        grid-template-columns: auto auto 1fr auto;
    }

    .menu-toggle {
        grid-column: 1;
        display: inline-grid;
    }

    .brand {
        grid-column: 2;
    }

    .nav-links {
        grid-column: 1 / -1;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0.5rem 2rem 1.5rem;
        background: var(--cream);
        border-bottom: 1px solid var(--line);
    }

        .nav-links.is-open {
            display: flex;
        }

        .nav-links a {
            width: 100%;
            padding: 0.9rem 0;
        }

    .nav-actions {
        grid-column: 4;
        gap: 0.45rem;
    }

    .icon-button,
    .cart-button {
        width: 40px;
        height: 40px;
    }

        .cart-button span {
            top: -7px;
            right: -7px;
        }

    .hero,
    .split-story,
    .gift-band,
    .enquiry-section,
    .shop-layout,
    .product-detail,
    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .filter-panel {
        position: static;
    }

    .hero {
        min-height: auto;
    }

    .hero-showcase {
        min-height: 430px;
    }

    .collection-strip,
    .market-strip,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefit-grid,
    .testimonial-grid,
    .site-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .announcement {
        grid-template-columns: 1fr;
    }

        .announcement span:nth-child(n + 3) {
            display: none;
        }

    .nav-shell {
        width: min(100% - 20px, 1180px);
        gap: 0.7rem;
    }

    .brand img {
        width: 50px;
        height: 50px;
    }

    .brand span,
    .login-link {
        display: none;
    }

    .hero {
        padding-inline: 1rem;
    }

        .hero h1 {
            font-size: clamp(3rem, 17vw, 4.8rem);
        }

    .hero-showcase {
        min-height: 350px;
    }

    .coin-card {
        width: min(265px, 82vw);
    }

    .coin-stack {
        width: 105px;
        height: 105px;
        border-width: 6px;
        font-size: 1.2rem;
    }

    .coin-stack-two {
        width: 92px;
        height: 92px;
    }

    .collection-strip,
    .market-strip,
    .product-grid,
    .benefit-grid,
    .testimonial-grid,
    .gift-grid,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .collection-strip {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .market-strip {
        margin-top: 1rem;
    }

    .feature-band,
    .product-section,
    .split-story,
    .gift-band,
    .why-us,
    .testimonials,
    .enquiry-section,
    .site-footer,
    .page-hero,
    .shop-layout,
    .cart-layout,
    .checkout-layout,
    .product-detail,
    .policy-page {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .quote-form {
        grid-template-columns: 1fr;
    }

    .product-art {
        min-height: 265px;
    }

    .newsletter div {
        flex-direction: column;
    }

    .catalog-toolbar,
    .detail-actions {
        align-items: stretch;
        flex-direction: column;
    }

        .catalog-toolbar select,
        .detail-actions .button {
            width: 100%;
        }

        .detail-primary-actions {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            width: 100%;
        }

    .detail-gallery .product-art {
        min-height: 360px;
    }

    .cart-row {
        grid-template-columns: 78px minmax(0, 1fr);
    }

        .cart-row strong,
        .cart-row input,
        .cart-row .remove-item {
            grid-column: 2;
        }

    .mini-art {
    }

    /* ==================== REDESIGNED PRODUCT DETAIL PAGE STYLES ==================== */

    /* Breadcrumb */
    .pd-breadcrumb {
        background: #f5f5f5;
        padding: 1rem 0;
    }

    .breadcrumb-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: #666;
        font-size: 0.9rem;
    }

        .breadcrumb-container a {
            color: #666;
            text-decoration: none;
            transition: color 0.2s;
        }

            .breadcrumb-container a:hover {
                color: var(--gold-deep);
            }

        .breadcrumb-container i {
            font-size: 0.8rem;
        }

    /* Main Product Detail Section */
    .pd-section {
        padding: 3rem 0;
        background: var(--cream);
    }

    .pd-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        gap: 2rem;
        align-items: flex-start;
    }

    /* Gallery Column */
    .pd-gallery-col {
        flex: 1;
    }

    .pd-gallery-wrapper {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 16px;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .pd-main-image {
        text-align: center;
        margin-bottom: 1.5rem;
    }

        .pd-main-image .main-img {
            max-width: 100%;
            max-height: 500px;
            width: auto;
            height: auto;
        }

    .pd-thumbnails {
        display: flex;
        gap: 1rem;
        justify-content: center;
    }

    .pd-thumb {
        width: 80px;
        height: 80px;
        border: 2px solid #eee;
        border-radius: 10px;
        padding: 0.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        background: #fff;
    }

        .pd-thumb:hover,
        .pd-thumb.active {
            border-color: var(--gold);
            box-shadow: 0 4px 12px rgba(212,175,55,0.2);
        }

        .pd-thumb .thumb-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

    /* Info Column */
    .pd-info-col {
        flex: 1.2;
        padding-left: 3rem;
    }

    .pd-top-badges {
        margin-bottom: 1rem;
    }

    .pd-category-badge {
        display: inline-block;
        background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(244,208,63,0.05));
        color: var(--gold-deep);
        padding: 0.5rem 1rem;
        border-radius: 30px;
        font-size: 0.9rem;
        font-weight: 700;
        border: 1px solid rgba(212,175,55,0.3);
    }

    .pd-title {
        font-family: var(--font-display);
        font-size: 2.2rem;
        color: #111;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .pd-rating-wrapper {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .pd-stars {
        display: flex;
        gap: 0.25rem;
        color: #ffc107;
        font-size: 1.1rem;
    }

    .pd-review-count {
        color: #666;
        font-size: 0.95rem;
    }

    .pd-price-section {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
        flex-wrap: wrap;
    }

    .pd-old-price {
        font-size: 1.3rem;
        color: #999;
        text-decoration: line-through;
    }

    .pd-current-price {
        font-size: 2.5rem;
        font-family: var(--font-display);
        color: var(--gold-deep);
        font-weight: 800;
    }

    .pd-discount-badge {
        background: #10b981;
        color: #fff;
        padding: 0.35rem 0.75rem;
        border-radius: 6px;
        font-size: 0.9rem;
        font-weight: 700;
    }

    .pd-stock-status {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #10b981;
        font-weight: 600;
        margin-bottom: 1.5rem;
    }

        .pd-stock-status i {
            font-size: 1.2rem;
        }

    .pd-divider {
        border: none;
        border-top: 1px solid #eee;
        margin: 1.5rem 0;
    }

    .pd-meta {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .pd-meta-item {
        display: flex;
        gap: 0.5rem;
    }

    .pd-meta-label {
        font-weight: 700;
        color: #555;
        min-width: 80px;
    }

    .pd-meta-value {
        color: #333;
    }

    .pd-qty-wrapper {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .pd-qty-label {
        font-weight: 700;
        color: #333;
    }

    .pd-qty-input-group {
        display: flex;
        align-items: center;
        border: 1px solid #ddd;
        border-radius: 10px;
        overflow: hidden;
    }

    .pd-qty-input {
        width: 70px;
        height: 48px;
        border: none;
        text-align: center;
        font-size: 1.1rem;
        font-weight: 700;
    }

    .qty-btn {
        width: 48px;
        height: 48px;
        border: none;
        background: #f8f8f8;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .qty-btn:hover {
            background: var(--gold);
            color: white;
        }

    .pd-actions {
        display: flex;
        gap: 1rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }

    .btn-cart,
    .btn-buynow {
        flex: 1;
        min-width: 150px;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        font-weight: 700;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-cart {
        background: linear-gradient(135deg, var(--gold), #f4d03f);
        color: #111;
    }

        .btn-cart:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212,175,55,0.4);
        }

    .btn-buynow {
        background: #111;
        color: white;
    }

        .btn-buynow:hover {
            background: #333;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
        }

    .btn-wishlist {
        width: 60px;
        height: 60px;
        border: 1px solid #ddd;
        border-radius: 12px;
        background: white;
        font-size: 1.5rem;
        color: #666;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .btn-wishlist:hover {
            color: #ef4444;
            border-color: #ef4444;
            background: rgba(239,68,68,0.05);
        }

    .pd-trust-badges {
        display: flex;
        justify-content: space-around;
        gap: 1rem;
        padding: 1.5rem;
        background: white;
        border: 1px solid #eee;
        border-radius: 12px;
        flex-wrap: wrap;
    }

    .trust-badge {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        color: #555;
        font-size: 0.9rem;
        font-weight: 600;
    }

        .trust-badge i {
            font-size: 1.8rem;
            color: var(--gold-deep);
        }

    /* Tabs Section */
    .pd-tabs-section {
        padding: 3rem 0;
        background: white;
    }

    .pd-tabs-nav {
        display: flex;
        gap: 1rem;
        border-bottom: 1px solid #eee;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }

    .pd-tab-btn {
        padding: 1rem 1.5rem;
        border: none;
        background: none;
        font-size: 1rem;
        font-weight: 700;
        color: #666;
        cursor: pointer;
        border-bottom: 3px solid transparent;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .pd-tab-btn:hover {
            color: var(--gold-deep);
        }

        .pd-tab-btn.active {
            color: var(--gold-deep);
            border-bottom-color: var(--gold-deep);
        }

    .pd-tab-panel {
        display: none;
    }

        .pd-tab-panel.active {
            display: block;
        }

        .pd-tab-panel h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #111;
        }

    .pd-description {
        line-height: 1.8;
        color: #555;
        font-size: 1.05rem;
    }

    /* Spec List */
    .pd-tab-panel .spec-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

        .pd-tab-panel .spec-list div {
            display: flex;
            padding: 1rem 1.25rem;
            background: #f9f9f9;
            border-radius: 10px;
        }

    .pd-tab-panel dt {
        font-weight: 700;
        color: #555;
        width: 200px;
        flex-shrink: 0;
    }

    .pd-tab-panel dd {
        color: #111;
        font-weight: 600;
        margin: 0;
    }

    /* Reviews */
    .review-item {
        padding: 1.5rem;
        border-bottom: 1px solid #eee;
    }

    .review-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.75rem;
    }

    .review-author {
        font-weight: 700;
        color: #333;
    }

    .review-stars {
        color: #ffc107;
        display: flex;
        gap: 0.25rem;
    }

    .review-text {
        color: #666;
        line-height: 1.6;
    }

    /* Shipping List */
    .shipping-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding-left: 0;
    }

        .shipping-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: #555;
            font-size: 1rem;
        }

        .shipping-list i {
            color: #10b981;
            font-size: 1.2rem;
        }

    /* Related Products */
    .pd-related-section {
        padding: 3rem 0;
        background: var(--cream);
    }

    .section-title {
        font-family: var(--font-display);
        font-size: 2rem;
        margin-bottom: 2rem;
        color: #111;
    }

    .related-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .related-card {
        background: white;
        border: 1px solid #eee;
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

        .related-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

    .related-img-wrapper {
        padding: 1.5rem;
        text-align: center;
    }

        .related-img-wrapper img {
            max-height: 200px;
            max-width: 100%;
        }

    .related-info {
        padding: 1.25rem;
        text-align: center;
    }

        .related-info h4 {
            font-size: 1rem;
            margin-bottom: 0.5rem;
            color: #333;
        }

    .related-price {
        font-size: 1.3rem;
        color: var(--gold-deep);
        font-weight: 800;
        margin-bottom: 0.5rem;
    }

    .related-rating {
        display: flex;
        justify-content: center;
        gap: 0.25rem;
        color: #ffc107;
        margin-bottom: 1rem;
    }

    .related-cart-btn {
        width: 100%;
        padding: 0.75rem;
        border: none;
        background: #f8f8f8;
        color: #333;
        font-weight: 700;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.2s;
    }

        .related-cart-btn:hover {
            background: var(--gold);
            color: #111;
        }

    /* Responsive Styles */
    @media (max-width: 1024px) {
        .pd-section .pd-container {
            flex-direction: column;
        }

        .pd-info-col {
            padding-left: 0;
            padding-top: 2rem;
        }

        .related-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .pd-breadcrumb .breadcrumb-container,
        .pd-section .pd-container {
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .pd-title {
            font-size: 1.8rem;
        }

        .pd-current-price {
            font-size: 2rem;
        }

        .pd-trust-badges {
            justify-content: space-between;
        }

        .pd-tab-btn {
            padding: 0.75rem 1rem;
            font-size: 0.95rem;
        }
    }

    @media (max-width: 480px) {
        .related-grid {
            grid-template-columns: 1fr;
        }

        .pd-thumbnails {
            gap: 0.5rem;
        }

        .pd-thumb {
            width: 60px;
            height: 60px;
        }

        .pd-tab-panel .spec-list div {
            flex-direction: column;
            gap: 0.25rem;
        }

        .pd-tab-panel dt {
            width: 100%;
        }
    }
