/* ==========================================================
   ISHMEEN GOLD — Premium Jewellery Theme
   Color Palette:
     Gold     #C9A24A  |  Orange  #C86A2B → #E59A5F
     Maroon   #5A1E1E  |  Cream   #FFF7E8
   ========================================================== */

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

/* ─── 1. VARIABLES ─────────────────────────────────────── */
:root {
    --gold:            #C9A24A;
    --gold-light:      #EADDA7;
    --gold-dark:       #B4883E;
    --orange-start:    #C86A2B;
    --orange-end:      #E59A5F;
    --maroon:          #5A1E1E;
    --maroon-dark:     #3D1212;
    --maroon-mid:      #7A2E2E;
    --cream:           #FFF7E8;
    --cream-dark:      #F5EDD8;
    --cream-mid:       #FAEFD6;
    --white:           #FFFFFF;
    --text:            #3D2B1F;
    --text-muted:      #8A6A5A;
    --border:          rgba(201,162,74,.18);

    --grad-gold:       linear-gradient(135deg, #EADDA7 0%, #C9A24A 50%, #B4883E 100%);
    --grad-gold-h:     linear-gradient(145deg, #F5E9B8 0%, #D4AC56 50%, #C9A24A 100%);
    --grad-orange:     linear-gradient(135deg, #C86A2B 0%, #E59A5F 100%);
    --grad-hero:       linear-gradient(135deg, #3D1212 0%, #5A1E1E 45%, #8C3A1A 100%);
    --grad-cta:        linear-gradient(135deg, #C9A24A 0%, #C86A2B 60%, #E59A5F 100%);

    --font-h:          'Cormorant Garamond', Georgia, serif;
    --font-b:          'Poppins', system-ui, sans-serif;

    --sh-xs:  0 2px  8px rgba(90,30,30,.07);
    --sh-sm:  0 4px 16px rgba(90,30,30,.10);
    --sh-md:  0 8px 30px rgba(90,30,30,.14);
    --sh-lg:  0 20px 60px rgba(90,30,30,.20);
    --sh-gold:0 8px 28px rgba(201,162,74,.35);

    --r:     8px;
    --r-lg:  18px;
    --r-xl:  30px;
    --r-full:9999px;
    --ease:  cubic-bezier(.4,0,.2,1);
    --dur:   .35s;
}

/* ─── 2. RESET & BASE ──────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior:smooth; font-size:16px; }

body {
    font-family: var(--font-b);
    background-color: var(--cream);
    color: var(--text);
    line-height: 1.75;
    font-weight: 300;
    overflow-x: hidden;
}

img { display:block; max-width:100%; }
ul  { list-style:none; }
a   { color:var(--gold); text-decoration:none; transition:color var(--dur) var(--ease); }
a:hover { color:var(--orange-start); }

/* ─── 3. TYPOGRAPHY ───────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-h);
    color: var(--maroon);
    line-height: 1.2;
    font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
p  { margin-bottom: .9rem; }

/* ─── 4. UTILITIES ────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: 2rem;
}

.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-lg { padding: 8rem 0; }

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-maroon { color: var(--maroon); }
.text-white  { color: var(--white) !important; }

/* Section Title Block */
.section-label {
    display: block;
    font-family: var(--font-b);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .75rem;
}

.section-title {
    font-family: var(--font-h);
    color: var(--maroon);
    margin-bottom: 1rem;
}

.section-title.centered { text-align: center; }

.title-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.title-ornament .line {
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: var(--grad-gold);
}

.title-ornament .diamond {
    width: 10px;
    height: 10px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* ─── 5. BUTTONS ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 14px 38px;
    font-family: var(--font-b);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--r-full);
    border: none;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--dur) var(--ease);
}

.btn:hover::before { opacity: 1; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

/* Primary — Solid Gold */
.btn-primary {
    background: var(--gold);
    color: var(--maroon-dark);
    box-shadow: var(--sh-gold);
}
.btn-primary::before { background: var(--grad-gold-h); }
.btn-primary:hover   { box-shadow: 0 14px 35px rgba(201,162,74,.45); color: var(--maroon-dark); }

/* Secondary — Orange Gradient */
.btn-secondary {
    background: var(--grad-orange);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(200,106,43,.35);
}
.btn-secondary::before { background: linear-gradient(135deg,#B05C25 0%,#D48A4E 100%); }
.btn-secondary:hover   { box-shadow: 0 14px 35px rgba(200,106,43,.45); color: var(--white); }

/* Outline */
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.6);
    box-shadow: none;
}
.btn-outline::before { background: rgba(255,255,255,.1); }
.btn-outline:hover   { border-color: var(--white); color: var(--white); box-shadow: 0 8px 25px rgba(0,0,0,.2); }

/* WhatsApp */
.btn-whatsapp {
    background: linear-gradient(135deg,#25d366,#128c7e);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(37,211,102,.35);
}
.btn-whatsapp:hover { box-shadow: 0 14px 35px rgba(37,211,102,.45); color: var(--white); }

/* ─── 6. HEADER ───────────────────────────────────────── */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,247,232,.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}

.main-header.scrolled {
    background: rgba(255,247,232,.97);
    box-shadow: var(--sh-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
    padding-inline: 2.5rem;
    max-width: 1300px;
    margin-inline: auto;
}

/* Logo */
.logo {
    font-family: var(--font-h);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--maroon);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: .4rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo .logo-icon {
    font-size: 1.5rem;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo:hover { color: var(--maroon); }

/* Nav */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 2.8rem;
}

.main-nav a {
    font-family: var(--font-b);
    font-size: .82rem;
    font-weight: 500;
    color: var(--maroon);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    position: relative;
    padding-block: .5rem;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: var(--grad-gold);
    border-radius: 2px;
    transition: width .4s var(--ease);
}

.main-nav a:hover,
.main-nav a.active { color: var(--gold); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

/* Mobile toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--maroon);
    transition: background var(--dur) var(--ease);
}
.mobile-menu-toggle:hover { background: var(--cream-dark); }

/* ─── 7. HERO ─────────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-hero);
    overflow: hidden;
}

/* Decorative geometric shapes */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 700px 600px at 80% 50%, rgba(200,106,43,.25) 0%, transparent 70%),
        radial-gradient(ellipse 500px 400px at 15% 70%, rgba(201,162,74,.18) 0%, transparent 65%);
    pointer-events: none;
}

/* Ornamental ring top-right */
.hero-section::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    border: 1.5px solid rgba(201,162,74,.2);
    box-shadow: inset 0 0 80px rgba(201,162,74,.06);
    pointer-events: none;
}

.hero-ring-2 {
    position: absolute;
    bottom: -180px;
    left: -150px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    border: 1px solid rgba(201,162,74,.15);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 820px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-b);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid rgba(201,162,74,.4);
    border-radius: var(--r-full);
    padding: .45rem 1.4rem;
    margin-bottom: 1.8rem;
    backdrop-filter: blur(8px);
    background: rgba(201,162,74,.08);
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(2.8rem, 6vw, 5rem);
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hero-content h1 .gold-text {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255,247,232,.75);
    font-weight: 300;
    max-width: 560px;
    margin-inline: auto;
    margin-bottom: 2.5rem;
    letter-spacing: .4px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin: 2.8rem auto 0;
    max-width: 260px;
    opacity: .4;
}

.hero-divider span {
    flex: 1;
    height: 1px;
    background: var(--gold-light);
}

.hero-divider .dot {
    width: 5px;
    height: 5px;
    background: var(--gold-light);
    border-radius: 50%;
}

/* Page hero (smaller, for inner pages) */
.page-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-hero);
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 600px 400px at 70% 50%, rgba(200,106,43,.2) 0%, transparent 70%);
}

.page-hero .hero-content h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); }

.page-hero .hero-content p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Breadcrumb inside hero */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    justify-content: center;
    margin-top: 1rem;
    font-size: .8rem;
    color: rgba(255,247,232,.55);
    font-family: var(--font-b);
    letter-spacing: 1px;
}

.breadcrumb a { color: rgba(255,247,232,.7); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { opacity: .5; }

/* ─── 8. SECTION HEADERS ──────────────────────────────── */
.sec-head {
    text-align: center;
    margin-bottom: 3.5rem;
}

.sec-head .sec-label {
    display: inline-block;
    font-family: var(--font-b);
    font-size: .73rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .6rem;
}

.sec-head h2 {
    color: var(--maroon);
    font-weight: 700;
    margin-bottom: 1rem;
}

.sec-head p {
    max-width: 560px;
    margin-inline: auto;
    color: var(--text-muted);
    font-size: .95rem;
}

/* Ornament below heading */
.ornament {
    display: flex;
    align-items: center;
    gap: .8rem;
    justify-content: center;
    margin-top: 1rem;
}

.ornament .orn-line {
    width: 48px;
    height: 1px;
    background: var(--grad-gold);
}

.ornament .orn-diamond {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.ornament .orn-dot {
    width: 4px;
    height: 4px;
    background: rgba(201,162,74,.5);
    border-radius: 50%;
}

/* ─── 9. ABOUT SECTION ────────────────────────────────── */
.about-section { background: var(--cream); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text .sec-label {
    display: inline-block;
    font-family: var(--font-b);
    font-size: .73rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .6rem;
}

.about-text h2 {
    color: var(--maroon);
    margin-bottom: 1.2rem;
}

.about-text p { color: var(--text-muted); font-size: .97rem; }

.about-visual {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    min-height: 420px;
    background: var(--grad-hero);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 300px 300px at 60% 40%, rgba(200,106,43,.3) 0%, transparent 70%);
}

.about-visual-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.about-visual-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
}

.about-visual h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: .5rem;
}

.about-visual p { color: rgba(255,247,232,.7); font-size: .9rem; margin-bottom: 0; }

/* Stats row */
.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 100px;
    padding: 1.2rem 1.5rem;
    background: var(--white);
    border-radius: var(--r);
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: var(--sh-xs);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.stat-item:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }

.stat-num {
    font-family: var(--font-h);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: .3rem;
}

.stat-label {
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ─── 10. CATEGORIES ──────────────────────────────────── */
.categories-section { background: var(--cream-dark); }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
    border: 1.5px solid transparent;
    box-shadow: var(--sh-xs);
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--r-lg);
    background: var(--grad-gold);
    opacity: 0;
    transition: opacity .4s var(--ease);
    z-index: 0;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--sh-gold);
}

.category-card:hover::before { opacity: .06; }

.category-card-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: calc(var(--r-lg) - 4px);
    overflow: hidden;
    margin-bottom: .9rem;
    position: relative;
    z-index: 1;
    transition: transform .4s var(--ease);
    background: var(--grad-hero);
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--ease);
}

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

.category-card-name {
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--maroon);
    position: relative;
    z-index: 1;
    transition: color .4s var(--ease);
}

.category-card:hover .category-card-name { color: var(--gold-dark); }

/* ─── 11. FEATURES / WHY US ───────────────────────────── */
.features-section { background: var(--cream); }
.features-section.alt-bg { background: var(--cream-mid); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--sh-xs);
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-md);
    border-color: rgba(201,162,74,.3);
}

.feature-card:hover::after { transform: scaleX(1); }

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cream-dark), var(--cream-mid));
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all .4s var(--ease);
}

.feature-card:hover .feature-icon {
    background: var(--grad-gold);
    border-color: var(--gold);
    transform: scale(1.08);
}

.feature-card h3 {
    font-size: 1.35rem;
    color: var(--maroon);
    margin-bottom: .6rem;
}

.feature-card p { font-size: .9rem; color: var(--text-muted); margin-bottom: 0; }

/* ─── 12. PRODUCTS SECTION ────────────────────────────── */
.products-section { background: var(--cream); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--cream);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    border: 1px solid rgba(201,162,74,.25);
    transition: all .4s var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-gold);
    z-index: 1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}

.product-card:hover::before { transform: scaleX(1); }

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-lg);
    border-color: rgba(201,162,74,.45);
}

.product-image {
    height: 260px;
    background: var(--grad-hero);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 6px 6px 0;
    border-radius: calc(var(--r-lg) - 4px) calc(var(--r-lg) - 4px) 0 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

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

.product-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(61,18,18,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .35s var(--ease);
}

.product-card:hover .product-image-overlay { opacity: 1; }

/* ── Product Slideshow ── */
.product-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .45s cubic-bezier(.4,0,.2,1);
}

.slider-slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-dots {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 5px;
    z-index: 10;
}

.slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.55);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all .25s ease;
    flex-shrink: 0;
}

.slider-dot.active {
    background: var(--gold);
    width: 18px;
    border-radius: 3px;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: rgba(90,30,30,.7);
    border: 1px solid rgba(201,162,74,.4);
    border-radius: 50%;
    color: var(--gold);
    font-size: .9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s ease, background .25s ease;
    z-index: 10;
    line-height: 1;
    padding: 0;
}

.slider-prev { left: 7px; }
.slider-next { right: 7px; }

.product-card:hover .slider-prev,
.product-card:hover .slider-next { opacity: 1; }

.slider-prev:hover,
.slider-next:hover { background: var(--maroon); }

.product-info {
    padding: 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    background: var(--white);
    margin: 0 6px 6px;
    border-radius: 0 0 calc(var(--r-lg) - 4px) calc(var(--r-lg) - 4px);
    box-shadow: inset 0 1px 0 rgba(201,162,74,.12);
}

.product-category {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.product-name {
    font-family: var(--font-h);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--maroon);
    line-height: 1.3;
}

.product-code {
    font-size: .78rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-description {
    font-size: .88rem;
    color: var(--text-muted);
    flex: 1;
    line-height: 1.6;
    margin-top: .3rem;
}

.product-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201,162,74,.18);
}

.btn-inquiry {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: 10px 24px;
    background: var(--grad-gold);
    color: var(--maroon-dark);
    border: none;
    border-radius: var(--r-full);
    font-family: var(--font-b);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    box-shadow: var(--sh-gold);
    text-transform: uppercase;
    width: 100%;
    justify-content: center;
}

.btn-inquiry:hover {
    background: var(--grad-gold-h);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201,162,74,.45);
    color: var(--maroon-dark);
}

/* Filter Bar */
.filter-bar {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 1.5rem 2rem;
    box-shadow: var(--sh-sm);
    border: 1px solid var(--border);
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.filter-label {
    font-family: var(--font-b);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--maroon);
    white-space: nowrap;
}

.filter-select {
    flex: 1;
    min-width: 200px;
    max-width: 320px;
    padding: 10px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-full);
    background: var(--cream);
    color: var(--text);
    font-family: var(--font-b);
    font-size: .9rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A24A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.filter-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,162,74,.15);
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 2rem;
    color: var(--text-muted);
}

.empty-state-icon { font-size: 4rem; margin-bottom: 1rem; opacity: .5; }
.empty-state p { font-size: 1rem; }

/* ─── 13. CTA SECTION ─────────────────────────────────── */
.cta-section {
    background: var(--grad-cta);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 500px 300px at 80% 50%, rgba(255,255,255,.1) 0%, transparent 70%);
}

.cta-section .container { position: relative; z-index: 2; }

.cta-section h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,.85);
    font-size: 1.05rem;
    max-width: 580px;
    margin-inline: auto;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── 14. CONTACT ─────────────────────────────────────── */
.contact-section { background: var(--cream); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--sh-xs);
    transition: all .4s var(--ease);
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.contact-info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cream-dark), var(--cream-mid));
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.2rem;
    transition: all .4s var(--ease);
}

.contact-info-card:hover .contact-info-icon {
    background: var(--grad-gold);
    border-color: var(--gold);
}

.contact-info-card h3 { font-size: 1.35rem; color: var(--maroon); margin-bottom: .5rem; }
.contact-info-card p { font-size: .9rem; color: var(--text-muted); margin-bottom: 0; }

/* Form */
.contact-form-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 3rem;
    box-shadow: var(--sh-sm);
    border: 1px solid var(--border);
}

.contact-form-card h2 {
    font-size: 2rem;
    color: var(--maroon);
    margin-bottom: .5rem;
}

.contact-form-card .form-subtitle {
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: 2rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.form-group { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.2rem; }

.form-group label {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--maroon);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    background: var(--cream);
    color: var(--text);
    font-family: var(--font-b);
    font-size: .92rem;
    transition: all var(--dur) var(--ease);
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201,162,74,.12);
}

.form-group textarea { min-height: 130px; }

.form-group input.error { border-color: #e74c3c; }

.form-actions { display: flex; gap: 1rem; margin-top: .8rem; }
.form-actions .btn { flex: 1; justify-content: center; }

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--r);
    font-size: .9rem;
    font-weight: 500;
    margin-top: 1rem;
}

.alert-success {
    background: rgba(39,174,96,.1);
    color: #1e8449;
    border: 1px solid rgba(39,174,96,.25);
}

.alert-danger {
    background: rgba(231,76,60,.1);
    color: #c0392b;
    border: 1px solid rgba(231,76,60,.25);
}

/* Business info card */
.business-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--sh-sm);
    max-width: 640px;
    margin-inline: auto;
}

.business-card h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.business-card p { color: var(--text-muted); font-size: .95rem; }

.business-tag {
    display: inline-block;
    padding: .4rem 1.2rem;
    background: var(--cream-dark);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    font-size: .8rem;
    font-weight: 500;
    color: var(--maroon);
    margin: .3rem;
}

/* ─── 15. CATALOGUE ───────────────────────────────────── */
.catalogue-section { background: var(--cream); }

.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.catalogue-card {
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-xs);
    border: 1px solid var(--border);
    transition: all .4s var(--ease);
}

.catalogue-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-md);
    border-color: rgba(201,162,74,.3);
}

.catalogue-icon-wrap {
    height: 180px;
    background: linear-gradient(135deg, var(--grad-hero));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    position: relative;
    overflow: hidden;
}

.catalogue-icon-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 200px 200px at 60% 40%, rgba(200,106,43,.3) 0%, transparent 70%);
}

.catalogue-info {
    padding: 1.5rem;
}

.catalogue-type {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .3rem;
}

.catalogue-name {
    font-family: var(--font-h);
    font-size: 1.25rem;
    color: var(--maroon);
    margin-bottom: .5rem;
}

.catalogue-date {
    font-size: .8rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

/* ─── 16. MODAL ───────────────────────────────────────── */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(61,18,18,.7);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s var(--ease), visibility .35s var(--ease);
}

.modal.show { opacity: 1; visibility: visible; }

.modal-content {
    background: var(--white);
    border-radius: var(--r-xl);
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--sh-lg);
    transform: translateY(24px) scale(.97);
    transition: transform .35s var(--ease);
}

.modal.show .modal-content { transform: translateY(0) scale(1); }

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.8rem 2rem;
    border-bottom: 1px solid var(--border);
}

.modal-header h2 { font-size: 1.8rem; margin: 0; }

.close-modal {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--cream-dark);
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--maroon);
    transition: all var(--dur) var(--ease);
}

.close-modal:hover { background: var(--maroon); color: var(--white); }

.product-modal-image { padding: 0 2rem; }
.product-modal-image img { border-radius: var(--r); width: 100%; max-height: 320px; object-fit: cover; }

.product-modal-details {
    padding: 1.5rem 2rem 2rem;
}

.product-modal-details p { font-size: .95rem; color: var(--text-muted); margin-bottom: .5rem; }
.product-modal-details strong { color: var(--maroon); }

/* ─── 17. FOOTER ──────────────────────────────────────── */
.main-footer {
    background: var(--maroon-dark);
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-cta);
}

.footer-top {
    padding: 5rem 0 3rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .logo {
    color: var(--white);
    font-size: 1.7rem;
    margin-bottom: 1rem;
    display: inline-flex;
}

.footer-brand p {
    color: rgba(255,247,232,.6);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: rgba(37,211,102,.15);
    border: 1px solid rgba(37,211,102,.3);
    border-radius: var(--r-full);
    padding: .6rem 1.4rem;
    color: #4de389;
    font-size: .85rem;
    font-weight: 600;
    transition: all var(--dur) var(--ease);
}

.footer-whatsapp:hover {
    background: rgba(37,211,102,.25);
    color: #4de389;
}

.footer-whatsapp img,
.btn-whatsapp img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    display: block;
    flex-shrink: 0;
}

.footer-section h4 {
    font-family: var(--font-b);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: .8rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 1.5px;
    background: var(--grad-gold);
    border-radius: 2px;
}

.footer-section ul { display: flex; flex-direction: column; gap: .7rem; }

.footer-section ul li a {
    color: rgba(255,247,232,.6);
    font-size: .9rem;
    transition: all var(--dur) var(--ease);
    display: flex;
    align-items: center;
    gap: .4rem;
}

.footer-section ul li a::before {
    content: '›';
    color: var(--gold);
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: all var(--dur) var(--ease);
}

.footer-section ul li a:hover {
    color: var(--gold-light);
    padding-left: .5rem;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-section ul li {
    color: rgba(255,247,232,.6);
    font-size: .9rem;
    line-height: 1.7;
}

.footer-section ul li strong {
    color: rgba(255,247,232,.8);
    font-weight: 500;
}

.footer-bottom {
    padding: 1.8rem 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255,247,232,.4);
    font-size: .82rem;
    margin-bottom: 0;
}

.footer-tagline {
    color: rgba(255,247,232,.35);
    font-size: .78rem;
    letter-spacing: 1px;
}

/* ─── 18. FLOATING WHATSAPP ───────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,.4);
    z-index: 999;
    transition: all var(--dur) var(--ease);
    text-decoration: none;
    overflow: hidden;
}

.whatsapp-float img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    display: block;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,.4);
    animation: wa-pulse 2.2s ease-out infinite;
    pointer-events: none;
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 12px 35px rgba(37,211,102,.55);
}

@keyframes wa-pulse {
    0%   { transform: scale(1); opacity: .8; }
    70%  { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ─── 19. SCROLL REVEAL ANIMATIONS ───────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }
.reveal-delay-6 { transition-delay: .6s; }

/* ─── 20. MISC ────────────────────────────────────────── */
.divider {
    border: none;
    height: 1px;
    background: var(--border);
    margin-block: 3rem;
}

.gold-divider {
    border: none;
    height: 1px;
    background: var(--grad-gold);
    max-width: 80px;
    margin: 1.5rem auto;
}

/* Story / horizontal timeline */
.story-block {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 3rem;
    border: 1px solid var(--border);
    box-shadow: var(--sh-sm);
    max-width: 820px;
    margin-inline: auto;
    position: relative;
    overflow: hidden;
}

.story-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--grad-cta);
    border-radius: 4px 0 0 4px;
}

.story-block p { color: var(--text-muted); font-size: .97rem; margin-bottom: .8rem; }
.story-block p:last-child { margin-bottom: 0; }

/* ─── 21. RESPONSIVE ──────────────────────────────────── */

/* Tablet landscape */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .about-grid  { grid-template-columns: 1fr; gap: 3rem; }
    .contact-grid{ grid-template-columns: 1fr; gap: 2rem; }
}

/* Tablet portrait */
@media (max-width: 768px) {
    .header-inner { padding-inline: 1.5rem; }

    .main-nav {
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        background: rgba(255,247,232,.97);
        backdrop-filter: blur(16px);
        padding: 1.5rem;
        border-bottom: 1px solid var(--border);
        transform: translateY(-110%);
        transition: transform .4s var(--ease);
        z-index: 999;
    }

    .main-nav.show { transform: translateY(0); }

    .main-nav ul { flex-direction: column; gap: 0; }

    .main-nav a {
        display: block;
        padding: .9rem 1rem;
        border-bottom: 1px solid var(--border);
        font-size: .9rem;
    }

    .mobile-menu-toggle { display: flex; align-items: center; justify-content: center; }

    .hero-section { min-height: 90vh; }
    .page-hero { min-height: 280px; }
    .hero-content h1 { font-size: 2.5rem; }

    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid   { grid-template-columns: 1fr 1fr; }
    .products-grid   { grid-template-columns: 1fr; }
    .footer-grid     { grid-template-columns: 1fr; gap: 2rem; }

    .form-row { grid-template-columns: 1fr; }
    .section  { padding: 4rem 0; }
    .section-lg { padding: 5rem 0; }

    .contact-form-card { padding: 2rem 1.5rem; }
    .form-actions { flex-direction: column; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
}

/* Mobile */
@media (max-width: 480px) {
    .container { padding-inline: 1.2rem; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid   { grid-template-columns: 1fr; }
    .filter-bar      { flex-direction: column; align-items: stretch; }
    .filter-select   { max-width: 100%; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .about-stats { flex-direction: column; }
}
