/* ── Reset & Base ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2 family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600;700&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold: #c9922a;
    /* antique gold primary */
    --gold2: #e0b04a;
    /* lighter gold hover */
    --gold3: #f5d98b;
    /* pale gold highlight */
    --indigo: #12142a;
    /* deep royal indigo bg */
    --indigo2: #1c1f3a;
    /* slightly lighter indigo */
    --indigo3: #252850;
    /* indigo accent surface */
    --ivory: #fdf9f0;
    /* warm ivory surface */
    --parchment: #f6f0e0;
    /* parchment card background */
    --sand: #ede4cc;
    /* warm sand muted bg */
    --ebony: #1e1510;
    /* rich ebony text */
    --umber: #4a3520;
    /* warm umber brown */
    --muted: #9a8e7a;
    /* muted warm stone */
    --white: #fffdf5;
    /* warm white */
    --rose: #c46a5a;
    /* dusty rose accent */
    --radius: 12px;
    --shadow: 0 12px 48px rgba(18, 20, 42, .28);
    --font-head: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', 'Helvetica Neue', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--ivory);
    color: var(--ebony);
    line-height: 1.75;
}

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

a:hover {
    color: var(--rose);
}

img {
    display: block;
    max-width: 100%;
}

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(18, 20, 42, .97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 146, 42, .3);
    box-shadow: 0 2px 28px rgba(18, 20, 42, .5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 100px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    margin-top: -3px;
}

.logo-text {
    font-family: var(--font-head);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--gold2);
    letter-spacing: .4px;
    white-space: nowrap;

}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-menu a {
    color: rgba(253, 249, 240, .68);
    font-size: .8rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 600;
    transition: color .2s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold2);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold2);
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(155deg, #0a0b18 0%, #12142a 45%, #1c1f3a 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 60% at 15% 75%, rgba(201, 146, 42, .18) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 85% 15%, rgba(201, 146, 42, .10) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 50% 100%, rgba(196, 106, 90, .08) 0%, transparent 50%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(60deg, rgba(201, 146, 42, .035) 0px, rgba(201, 146, 42, .035) 1px, transparent 1px, transparent 22px),
        repeating-linear-gradient(-60deg, rgba(201, 146, 42, .035) 0px, rgba(201, 146, 42, .035) 1px, transparent 1px, transparent 22px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.hero-logo {
    max-height: 100px;
    width: auto;
    margin: 0 auto 28px;
    filter: drop-shadow(0 0 32px rgba(201, 146, 42, .7));
}

.hero-content h1 {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    color: var(--ivory);
    text-shadow: 0 0 60px rgba(201, 146, 42, .5);
    margin-bottom: 16px;
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: .5px;
}

.hero-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 0 auto 24px;
}

.hero-ornament::before,
.hero-ornament::after {
    content: '';
    flex: 1;
    max-width: 110px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold2));
}

.hero-ornament::after {
    background: linear-gradient(90deg, var(--gold2), transparent);
}

.hero-ornament span {
    color: var(--gold2);
    font-size: 1.3rem;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.22rem);
    color: rgba(253, 249, 240, .75);
    margin-bottom: 44px;
    letter-spacing: .3px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    display: inline-block;
    padding: 16px 54px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    background-size: 200% 100%;
    background-position: left;
    color: var(--indigo);
    font-weight: 700;
    font-size: .88rem;
    font-family: var(--font-body);
    border-radius: 4px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    transition: transform .2s, box-shadow .2s, background-position .3s;
    box-shadow: 0 4px 28px rgba(201, 146, 42, .45);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 38px rgba(201, 146, 42, .65);
    background-position: right;
    color: var(--indigo);
}

/* ── Section titles ────────────────────────────────────────── */
.section-title {
    text-align: center;
    font-family: var(--font-head);
    font-size: clamp(2rem, 3vw, 3.4rem);
    color: var(--ebony);
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: .3px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold2));
    margin: 14px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: .94rem;
    letter-spacing: .5px;
    margin-bottom: 54px;
}

/* ── Category Showcase (Homepage) ──────────────────────────── */
.cat-showcase {
    padding: 100px 24px;
    background: var(--indigo);
}

.cat-showcase-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.cat-tile {
    background: var(--indigo2);
    border: 1px solid rgba(201, 146, 42, .2);
    border-radius: var(--radius);
    padding: 38px 24px 32px;
    text-align: center;
    transition: transform .28s, border-color .28s, box-shadow .28s;
    cursor: pointer;
    text-decoration: none;
    display: block;
    box-shadow: 0 4px 20px rgba(18, 20, 42, .3);
}

.cat-tile:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 146, 42, .55);
    box-shadow: 0 20px 48px rgba(201, 146, 42, .18);
    color: inherit;
}

.cat-tile-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.cat-tile-name {
    font-family: var(--font-head);
    color: var(--gold2);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: .2px;
}

.cat-tile-desc {
    color: rgba(253, 249, 240, .52);
    font-size: .88rem;
    line-height: 1.7;
}

/* ── Features ──────────────────────────────────────────────── */
.features {
    padding: 100px 24px;
    background: var(--parchment);
}

.features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.feature-card {
    background: var(--white);
    border: 1px solid rgba(201, 146, 42, .18);
    border-radius: var(--radius);
    padding: 38px 28px;
    text-align: center;
    transition: transform .25s, border-color .25s, box-shadow .25s;
    box-shadow: 0 2px 16px rgba(18, 20, 42, .07);
}

.feature-card:hover {
    transform: translateY(-7px);
    border-color: rgba(201, 146, 42, .48);
    box-shadow: 0 16px 40px rgba(201, 146, 42, .16);
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-family: var(--font-head);
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.72;
}

/* ── Products grid ─────────────────────────────────────────── */
.products {
    padding: 100px 24px;
    background: var(--ivory);
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border: 1px solid rgba(201, 146, 42, .15);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    box-shadow: 0 2px 14px rgba(18, 20, 42, .09);
    position: relative;
    /* For stretched link */
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: rgba(201, 146, 42, .44);
}

.product-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--sand);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .45s;
}

.product-card:hover .product-image img {
    transform: scale(1.07);
}

.product-info {
    padding: 20px;
    border-top: 2px solid rgba(201, 146, 42, .15);
}

.product-info h3 {
    font-family: var(--font-head);
    font-size: 1.12rem;
    color: #2c1a0e;
    margin-bottom: 14px;
    line-height: 1.45;
    font-weight: 800;
    letter-spacing: -0.01em;
    transition: transform 0.3s ease, color 0.3s ease;
}

.product-card:hover .product-info h3 {
    transform: translateX(4px);
    color: #c4622d;
}

.product-info .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.product-info .btn,
.product-info h3 a {
    position: relative;
    z-index: 2;
}

.btn {
    display: inline-block;
    padding: 9px 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--indigo);
    font-size: .83rem;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: .8px;
    text-transform: uppercase;
    transition: transform .2s, box-shadow .2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 146, 42, .44);
    color: var(--indigo);
}

/* ── About section ─────────────────────────────────────────── */
.about {
    padding: 100px 24px;
    background: var(--sand);
}

.about-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    color: var(--umber);
    font-size: 1.05rem;
    line-height: 1.9;
}

.about-content p+p {
    margin-top: 20px;
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials {
    padding: 100px 24px;
    background: var(--parchment);
}

.testimonials-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(201, 146, 42, .14);
    border-radius: var(--radius);
    padding: 36px 28px;
    position: relative;
    box-shadow: 0 2px 16px rgba(18, 20, 42, .06);
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-head);
    font-size: 6rem;
    color: rgba(201, 146, 42, .13);
    position: absolute;
    top: 4px;
    left: 18px;
    line-height: 1;
}

.testimonial-text {
    color: var(--umber);
    font-style: italic;
    margin-bottom: 18px;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--gold);
    font-weight: 700;
    font-family: var(--font-head);
    font-size: 1.08rem;
}

/* ── CTA ───────────────────────────────────────────────────── */
.cta {
    padding: 100px 24px;
    text-align: center;
    background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo2) 100%);
    border-top: 1px solid rgba(201, 146, 42, .25);
    border-bottom: 1px solid rgba(201, 146, 42, .25);
}

.cta h2 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    color: var(--ivory);
    margin-bottom: 16px;
}

.cta p {
    color: rgba(253, 249, 240, .72);
    margin-bottom: 32px;
}

/* ── Contact page ──────────────────────────────────────────── */
.contact-section {
    padding: 120px 24px 100px;
    background: var(--parchment);
    min-height: 80vh;
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
}

.contact-info h3 {
    font-family: var(--font-head);
    color: var(--gold);
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 700;
}

.contact-info p {
    color: var(--umber);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid rgba(201, 146, 42, .25);
    border-radius: 8px;
    color: var(--ebony);
    font-family: var(--font-body);
    font-size: .95rem;
    margin-bottom: 14px;
    outline: none;
    transition: border-color .2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-form button {
    padding: 13px 40px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--indigo);
    font-weight: 700;
    font-size: .95rem;
    font-family: var(--font-body);
    border-radius: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform .2s, box-shadow .2s;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(201, 146, 42, .44);
}

/* ── About page ────────────────────────────────────────────── */
.about-page {
    padding: 120px 24px 100px;
    background: var(--parchment);
    min-height: 80vh;
}

.about-page .about-content {
    max-width: 860px;
    margin: 0 auto;
}

.about-page p {
    margin-bottom: 20px;
}

/* ── Categories page ───────────────────────────────────────── */
.categories-section {
    padding: 120px 24px 100px;
    background: var(--ivory);
}

.cat-group {
    margin-bottom: 72px;
}

.cat-group h2 {
    font-family: var(--font-head);
    color: var(--gold);
    font-size: 1.95rem;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(201, 146, 42, .22);
    font-weight: 700;
}

/* ── Product detail page ───────────────────────────────────── */
.product-detail {
    padding: 110px 24px 80px;
    background: var(--ivory);
    min-height: 80vh;
}

.product-detail-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 58px;
    align-items: start;
}

.product-main-img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid rgba(201, 146, 42, .22);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--sand);
    box-shadow: 0 8px 32px rgba(18, 20, 42, .15);
}

.product-main-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.gallery-thumbs img {
    width: 76px;
    height: 60px;
    object-fit: contain;
    background: var(--sand);
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid rgba(201, 146, 42, .2);
    transition: border-color .2s, transform .2s;
}

.gallery-thumbs img:hover,
.gallery-thumbs img.active {
    border-color: var(--gold);
    transform: scale(1.06);
}

.product-meta h1 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    background: linear-gradient(135deg, #2c1a0e, #c4622d);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.product-meta h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 64px;
    height: 4px;
    background: linear-gradient(90deg, #2c1a0e, #c4622d);
    border-radius: 2px;
}

.product-price {
    font-size: 1.85rem;
    color: var(--gold);
    font-weight: 700;
    font-family: var(--font-head);
    margin-bottom: 22px;
}

.product-description {
    color: var(--umber);
    font-size: .97rem;
    line-height: 1.85;
    margin-bottom: 26px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
}

.features-list li {
    padding: 9px 0 9px 28px;
    position: relative;
    color: var(--ebony);
    font-size: .95rem;
    border-bottom: 1px solid rgba(201, 146, 42, .12);
}

.features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 17px;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* ── CTA Buttons on product page ───────────────────────────── */
.product-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--indigo);
    font-weight: 700;
    font-size: .92rem;
    font-family: var(--font-body);
    border-radius: 6px;
    letter-spacing: .8px;
    text-transform: uppercase;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(201, 146, 42, .32);
    text-decoration: none;
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 146, 42, .52);
    color: var(--indigo);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: .92rem;
    font-family: var(--font-body);
    border-radius: 6px;
    letter-spacing: .8px;
    text-transform: uppercase;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 18px rgba(37, 211, 102, .25);
    text-decoration: none;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(37, 211, 102, .45);
    color: #fff;
    background: #1ebe5d;
}

.btn-call svg,
.btn-whatsapp svg {
    flex-shrink: 0;
}

.back-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 11px 30px;
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    border-radius: 6px;
    font-size: .88rem;
    letter-spacing: .8px;
    text-transform: uppercase;
    transition: background .2s, color .2s;
}

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

/* ── Catalogue page ────────────────────────────────────────── */
.catalogue-section {
    padding: 120px 24px 100px;
    background: var(--ivory);
}

.catalogue-header {
    max-width: 1200px;
    margin: 0 auto 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.catalogue-header h1 {
    font-family: var(--font-head);
    color: var(--ebony);
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 700;
}

.search-bar input {
    padding: 10px 20px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid rgba(201, 146, 42, .22);
    color: var(--ebony);
    font-size: .92rem;
    outline: none;
    width: 250px;
    font-family: var(--font-body);
}

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

/* ── Footer ────────────────────────────────────────────────── */
.footer {
    background: var(--indigo);
    border-top: 1px solid rgba(201, 146, 42, .3);
    padding: 64px 24px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 36px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 14px;
    filter: brightness(0) invert(1);
    opacity: .85;
}

.footer-section h3 {
    font-family: var(--font-head);
    color: var(--gold2);
    font-size: 1.15rem;
    margin-bottom: 16px;
}

.footer-section p {
    color: rgba(253, 249, 240, .62);
    font-size: .9rem;
    line-height: 1.75;
}

.footer-section a {
    display: block;
    color: rgba(253, 249, 240, .52);
    font-size: .9rem;
    margin-bottom: 8px;
    transition: color .2s;
}

.footer-section a:hover {
    color: var(--gold2);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    color: rgba(253, 249, 240, .38);
    font-size: .85rem;
    border-top: 1px solid rgba(201, 146, 42, .18);
    margin-top: 44px;
}

/* ── Page hero (inner pages) ───────────────────────────────── */
.page-hero {
    padding: 148px 24px 84px;
    text-align: center;
    background: linear-gradient(155deg, var(--indigo) 0%, var(--indigo2) 60%, var(--indigo3) 100%);
    border-bottom: 1px solid rgba(201, 146, 42, .22);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(60deg, rgba(201, 146, 42, .03) 0px, rgba(201, 146, 42, .03) 1px, transparent 1px, transparent 22px);
    pointer-events: none;
}

.page-hero h1 {
    font-family: var(--font-head);
    color: var(--ivory);
    font-size: clamp(1.9rem, 4vw, 3.6rem);
    margin-bottom: 12px;
    font-weight: 700;
    position: relative;
}

.page-hero p {
    color: rgba(253, 249, 240, .68);
    font-size: 1.05rem;
    letter-spacing: .4px;
    position: relative;
}

/* ── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb {
    max-width: 1100px;
    margin: 0 auto 28px;
    font-size: .88rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin: 0 10px;
    color: var(--muted);
    font-size: 1.1rem;
    opacity: 0.6;
}

.breadcrumb a {
    color: var(--gold);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--rose);
}

/* ── Ornament divider ──────────────────────────────────────── */
.ornament-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 8px 0 40px;
    max-width: 360px;
    margin: 0 auto;
}

.ornament-divider::before,
.ornament-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 146, 42, .4));
}

.ornament-divider::after {
    background: linear-gradient(90deg, rgba(201, 146, 42, .4), transparent);
}

.ornament-divider span {
    color: var(--gold2);
    font-size: 1.1rem;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
    .product-detail-inner {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .nav-container {
        height: 84px;
    }

    .logo-img {
        height: 70px;
        margin-top: -2px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 84px;
        left: 0;
        right: 0;
        background: rgba(18, 20, 42, .99);
        padding: 20px 24px 28px;
        gap: 18px;
        border-bottom: 1px solid rgba(201, 146, 42, .22);
    }

    .nav-menu.open {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .catalogue-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-bar input {
        width: 100%;
    }

    .product-cta-btns {
        flex-direction: column;
    }

    .btn-call,
    .btn-whatsapp {
        justify-content: center;
    }
}