nav#main-nav  ul.nav-links a {
    color: #000;
}

div#prod-cat-nav button.prod-cat-btn:nth-child(1) {background: url('https://ashtanbakers.com/images/cat1.jpg');}
div#prod-cat-nav button.prod-cat-btn:nth-child(2) {background: url('https://ashtanbakers.com/images/cat2.jpg');}
div#prod-cat-nav button.prod-cat-btn:nth-child(3) {background: url('https://ashtanbakers.com/images/cat3.jpg');}
div#prod-cat-nav button.prod-cat-btn:nth-child(4) {background: url('https://ashtanbakers.com/images/cat4.jpg');}
div#prod-cat-nav button.prod-cat-btn:nth-child(5) {background: url('https://ashtanbakers.com/images/cat5.jpg');}


div#prod-cat-nav button.prod-cat-btn {
    padding: 130px 20px 15px 20px;
    background-size: 100% !important;
    background-repeat: no-repeat !important;
    border-radius: 50px;
    width: 15%;
    margin: 0px 1% 0px 1%;
}

section#about h2 {
    color: #7e0d4d !important;
}
.about-text p, .about-text p strong {
    color: #000 !important;
}
:root {
    --cream: oklch(96.5% 0.018 75);
    --cream-dark: oklch(92% 0.022 70);
    --espresso: oklch(16% 0.03 55);
    --espresso-mid: oklch(24% 0.04 50);
    --gold: oklch(66% 0.12 62);
    --gold-light: oklch(82% 0.10 70);
    --blush: oklch(82% 0.06 15);
    --text: oklch(18% 0.02 55);
    --text-muted: oklch(48% 0.025 60);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
    --radius: 2px;
    --gold-hex: #C9913A;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}
a.whatsapp {
    position: fixed;
    z-index: 999;
    right: 20px;
    bottom: 20px;
}

a.whatsapp img {
    height: 60px;
}
body {
    font-family: var(--sans);
    background: #f7f7f7;
    color: var(--text);
    overflow-x: hidden;
}



/* ── MOBILE NAV CSS ── */
#main-nav {
    position: fixed;
    top: 0;
    z-index: 100;
    background: #f7f7f7;
    padding: 0 1rem;
    height:110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



/* Hide desktop links on mobile */
#main-nav .nav-links {
  display: none;
}

/* Hamburger button */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #3d2b1f;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animated X when open */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dim overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: 60px;
  background: rgba(0, 0, 0, 0.3);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.35s;
}
.nav-overlay.open { display: block; opacity: 1; }

/* Slide-in drawer */
.mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.menu-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-links li {
  border-bottom: 1px solid #f0e8dd;
}

.menu-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  font-size: 1.05rem;
  color: #3d2b1f;
  text-decoration: none;
}

.menu-links a .arrow {
  color: #b8a898;
  font-size: 1.1rem;
}

/* CTA button */
.nav-cta-mobile {
  display: block;
  margin-top: 2rem;
  text-align: center;
  background: #3d2b1f;
  color: #fff;
  padding: 1rem;
  border-radius: 6px;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.04em;
}

/* ── DESKTOP: restore original nav ── */


@media (min-width: 768px) {
  #main-nav .nav-links { display: flex; }
  .hamburger { display: none; }
  .mobile-menu, .nav-overlay { display: none !important; }
}


/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--cream-dark);
}

::-webkit-scrollbar-thumb {
    background: #7E0D4D;
    border-radius: 3px;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(22, 14, 8, 0.97);
    backdrop-filter: blur(20px);
    padding: 0px 60px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.nav-logo {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.04em;
    text-decoration: none;
}
nav#main-nav ul.nav-links a {
    color: #000;
}
.nav-logo span {
    color: #7E0D4D;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #7E0D4D;
}

.nav-cta {
    background: #7E0D4D !important;
    color: #fff !important;
    padding: 9px 22px !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    border-radius: 100px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 4px 16px rgba(201, 145, 58, 0.3) !important;
}

.nav-cta:hover {
    background: oklch(70% 0.13 62) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 28px rgba(201, 145, 58, 0.45) !important;
}

/* ─── HERO ─── */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: var(--espresso);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-texture {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, oklch(26% 0.06 50 / 0.5), transparent),
        radial-gradient(ellipse 40% 70% at 10% 80%, oklch(22% 0.08 30 / 0.4), transparent),
        radial-gradient(ellipse 60% 40% at 90% 10%, oklch(20% 0.04 65 / 0.6), transparent);
}

.hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

/* Decorative floating shapes */
.hero-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-deco-1 {
    width: 500px;
    height: 500px;
    right: -80px;
    top: -100px;
    background: radial-gradient(circle, oklch(66% 0.12 62 / 0.12), transparent 70%);
    animation: floatSlow 8s ease-in-out infinite;
}

.hero-deco-2 {
    width: 300px;
    height: 300px;
    right: 200px;
    bottom: -50px;
    background: radial-gradient(circle, oklch(82% 0.06 15 / 0.08), transparent 70%);
    animation: floatSlow 11s ease-in-out infinite reverse;
}

.nav-logo img {
    height: 105px;
    padding-top: 5px;
}
@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

/* Hero product illustration area — Featured Showcase */
.hero-product-area {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    overflow: hidden;
}

.hero-featured-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.hero-featured-slide.active {
    opacity: 1;
    pointer-events: all;
}

.hero-featured-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(14, 8, 4, 0.92) 0%,
            rgba(14, 8, 4, 0.4) 35%,
            rgba(14, 8, 4, 0.1) 65%,
            rgba(14, 8, 4, 0.05) 100%);
}

.hero-slide-info {
    position: absolute;
    bottom: 60px;
    right: 0;
    left: 0;
    padding: 0 44px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.hero-slide-category {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
}

.hero-slide-name {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    color: white;
    line-height: 1.1;
}

/* Navigation dots + arrows */
.hero-slide-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-bottom: 4px;
}

.hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}

.hero-dot.active {
    background: #7E0D4D;
    width: 24px;
    border-radius: 3px;
}

.hero-slide-arrows {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow:hover {
    background: #7E0D4D;
    border-color: #7E0D4D;
}

/* Progress bar */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: #7E0D4D;
    width: 0%;
    transition: none;
}

/* hero left content */
.hero-content {
    position: relative;
    z-index: 2;
    padding: 110px 60px 0 60px;
    max-width: 620px;
    animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: #7E0D4D;
}

.hero-eyebrow span {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
}

.hero-headline {
    font-family: var(--serif);
    font-size: clamp(3rem, 5vw, 5.2rem);
    font-weight: 300;
    color: white;
    line-height: 1.02;
    margin-bottom: 10px;
    text-wrap: pretty;
}

.hero-headline em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-headline strong {
    font-weight: 600;
    display: block;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 10px;
    font-weight: 300;
    max-width: 440px;
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-num {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 600;
    color: #7E0D4D;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.hero-btns {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

/* ─── BUTTONS ─── */
.btn-primary {
    position: relative;
    background: #7E0D4D;
    color: white;
    padding: 15px 36px;
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(201, 145, 58, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.btn-primary:hover::after {
    left: 120%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(201, 145, 58, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: oklch(70% 0.13 62);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-ghost {
    position: relative;
    background: transparent;
    color: white;
    padding: 14px 36px;
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    border-color: #7E0D4D;
    color: #7E0D4D;
    background: rgba(201, 145, 58, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 145, 58, 0.15);
}

.btn-dark {
    position: relative;
    background: var(--espresso);
    color: white;
    padding: 15px 36px;
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn-dark:hover {
    background: var(--espresso-mid);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

/* ─── BRAND STRIP ─── */
.brand-strip {
    background: #7E0D4D;
    padding: 16px 0;
    overflow: hidden;
}

.brand-strip-inner {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.brand-strip-item {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.brand-strip-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
}

/* ─── SECTIONS COMMON ─── */
section {
    position: relative;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.section-eyebrow-line {
    width: 30px;
    height: 1px;
    background: #7E0D4D;
}

.section-eyebrow span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7E0D4D;
    font-weight: 600;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--espresso);
    text-wrap: pretty;
}

.section-title em {
    font-style: italic;
}

.section-title.light {
    color: white;
}

/* ─── ABOUT ─── */
#about {
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background: #fff;
}
#main-nav .nav-links li:last-child {
    margin-left: 110px;
}
.about-visual {
    position: relative;
    height: auto;
}

.about-img-main {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    border-radius: 4px;
    overflow: hidden;
}

.about-img-accent {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 55%;
    height: 55%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    border: 6px solid #f7f7f7;
}

.about-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #7E0D4D;
    color: rgb(0, 0, 0);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 40px rgba(201, 145, 58, 0.4);
    z-index: 10;
    border: 4px solid #f7f7f7;
}

.about-badge-num {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge-label {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-top: 3px;
    font-weight: 600;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg, transparent, transparent 10px,
            rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
}

.img-placeholder .ph-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    opacity: 0.6;
}

.about-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-brands {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.brand-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 145, 58, 0.3);
    padding: 8px 20px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 100px;
}

.brand-pill.active {
    background: #7E0D4D;
    color: #000;
    border-color: #7E0D4D;
}
#values h2 {
    color: #7e0d4d;
}
/* ─── VALUES ─── */
#values {
    background:#f7f7f7;
    padding:80px 60px;
}

.values-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 70px;
}

.values-sub {
    color:#000;
    font-size: 0.95rem;
    line-height: 1.75;
    font-weight: 300;
    align-self: end;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
.value-card:hover .value-name, .value-card:hover p {
    color: #fff;
}
.value-card {
    background: #fff;
    padding: 40px 32px;
    transition: background 0.3s;
    cursor: default;
    border: 2px solid oklch(0.4 0.15 353.23);
    margin: 10px;
    border-radius: 5px;
}
.value-card:hover {
    background: oklch(22% 0.05 54);
    border-top-color: #7E0D4D;
}

.value-icon {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: block;
}

.value-name {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
}

.value-desc {
    font-size: 1rem;
    color:#000;
    line-height: 1.65;
    font-weight: 300;
}

/* ─── PRODUCTS ─── */
#products {
    background: #f7f7f7;
    padding: 80px 60px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

/* Category nav */
.prod-cat-nav {
    display: flex;
    gap: 0;
    border-bottom:2px solid oklch(0.89 0 0);
    margin-bottom: 48px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.prod-cat-nav::-webkit-scrollbar {
    display: none;
}

.prod-cat-btn {
    padding: 14px 28px;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    transition: color 0.25s;
    flex-shrink: 0;
}

.prod-cat-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #7E0D4D;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.prod-cat-btn.active {
    color: var(--espresso);
    font-weight: 600;
}

.prod-cat-btn.active::after {
    transform: scaleX(1);
}

.prod-cat-btn:hover {
    color: var(--espresso);
}


section#products .section-eyebrow span {
    font-size: 24px;
    color: green;
    font-weight: bolder;
}

section#products .section-eyebrow-line {
    background: green;
}
.prod-cat-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: oklch(0.89 0 0);
    color: var(--text-muted);
    border-radius: 100px;
    font-size: 0.6rem;
    font-weight: 600;
    margin-left: 6px;
    transition: all 0.25s;
}

.prod-cat-btn.active .prod-cat-count {
    background: #7E0D4D;
    color: white;
}

/* Products panels */
.prod-panels {
    position: relative;
    min-height: 400px;
}

.prod-panel {
    display: none;
    animation: panelFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.prod-panel.active {
    display: block;
}

@keyframes panelFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Category hero banner */
.prod-cat-banner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 200px;
    gap: 14px;
    margin-bottom: 14px;
}

.prod-cat-banner .pci:first-child {
    grid-row: span 2;
}

.prod-cat-banner-alt {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.prod-cat-banner-alt .pci:first-child {
    grid-column: span 2;
}

/* Product card item */
.pci {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: var(--cream-dark);
}

.pci img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pci:hover img {
    transform: scale(1.06);
}

.pci-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16, 10, 5, 0.75) 0%, rgba(16, 10, 5, 0.1) 50%, transparent 100%);
    opacity: 0.85;
    transition: opacity 0.3s;
}

.pci:hover .pci-overlay {
    opacity: 1;
}

.pci-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 18px 16px;
}

.pci-name {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: white;
    line-height: 1.2;
    margin-bottom: 4px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.pci-tag {
    display: inline-block;
    background: #7E0D4D;
    color: white;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 100px;
}

/* Bottom row of small cards */
.prod-small-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 14px;
}

.prod-small-row .pci {
    height: 300px;
}

/* Category description bar */
.prod-cat-desc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 32px;
}

.prod-cat-desc-text {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
    max-width: 520px;
}

.prod-cat-desc-count {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: #7E0D4D;
    font-weight: 500;
    white-space: nowrap;
    margin-left: 40px;
    flex-shrink: 0;
}

/* ─── FRANCHISE (full-width) ─── */
#franchise {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 680px;
}

.franchise-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background: #fff !important;
}

.franchise-bg-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.franchise-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 80px;
}

.franchise-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.franchise-content .section-title {
    color: #7e0d4d;
    margin-bottom: 24px;
}

.franchise-lead {
    color: #000;
    font-size: 0.95rem;
    line-height: 1.75;
    font-weight: 300;
}

.franchise-perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.franchise-perk-card {
    background: #fff;
    border: 1px solid rgb(126 13 77);
    padding: 32px 28px;
    transition: all 0.3s;
    border-radius: 2px;
    margin: 10px;
}

.franchise-perk-card:hover {
    background: rgba(201, 145, 58, 0.1);
    border-color: rgba(201, 145, 58, 0.25);
    transform: translateY(-4px);
}

.fpc-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 145, 58, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.fpc-title {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
}

.fpc-text {
    font-size: 0.8rem;
    color:#000;
    line-height: 1.65;
    font-weight: 300;
}

.franchise-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 60px;
}

.franchise-cta-note {
    font-size: 1rem;
    color:#000;
    font-weight: 300;
    max-width: 400px;
    line-height: 1.6;
}

/* ─── DISTRIBUTION (full-width) ─── */
#distribution {
    background: var(--cream-dark);
    padding: 80px 80px;
}

.distribution-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.dist-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 70px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.dist-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-bottom: 60px;
}

.dist-stat {
    background: white;
    padding: 32px 28px;
    transition: all 0.3s;
    text-align: center;
}

.dist-stat:hover {
    background: var(--espresso);
}

.dist-stat:hover .dist-stat-num {
    color: #7E0D4D;
}

.dist-stat:hover .dist-stat-label {
    color: rgba(255, 255, 255, 0.5);
}

.dist-stat-num {
    font-family: var(--serif);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--espresso);
    line-height: 1;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.dist-stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s;
}

.dist-reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.dist-reason-card {
    padding: 28px 0;
    border-top: 2px solid var(--cream-dark);
    transition: border-color 0.3s;
}

.dist-reason-card:hover {
    border-top-color: #7E0D4D;
}

.dist-num {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 600;
    color:#7E0D4D;
    margin-bottom: 12px;
    line-height: 1;
}

.dist-reason-title {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--espresso);
    margin-bottom: 8px;
}

.dist-reason-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.65;
    font-weight: 300;
}

.dist-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 60px;
    padding-top: 48px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.dist-cta-note {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.5;
}

/* ─── LOCATIONS ─── */
#locations {
    background: var(--espresso);
    padding: 100px 60px;
}

.locations-header {
    text-align: center;
    margin-bottom: 70px;
}

.locations-header .section-eyebrow {
    justify-content: center;
}

.locations-header .section-title.light {
    max-width: 520px;
    margin: 0 auto 20px;
}

.locations-sub {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.92rem;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

.locations-area {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: start;
}

.locations-map {
    background: oklch(20% 0.04 52);
    border-radius: 8px;
    height: 400px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder-text {
    position: absolute;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
    font-family: var(--sans);
    font-weight: 500;
    z-index: 2;
}

/* Stylized Pune map SVG decorations */
.map-pins {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.map-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.map-pin:hover {
    transform: scale(1.2);
}

.pin-dot {
    width: 10px;
    height: 10px;
    background: #7E0D4D;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(201, 145, 58, 0.3);
    animation: pulse 2s infinite;
}

.pin-dot.large {
    width: 14px;
    height: 14px;
    box-shadow: 0 0 0 6px rgba(201, 145, 58, 0.3);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(201, 145, 58, 0.3);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(201, 145, 58, 0.1);
    }
}

.pin-label {
    background: var(--espresso);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.55rem;
    letter-spacing: 0.05em;
    padding: 3px 7px;
    border-radius: 3px;
    margin-top: 4px;
    white-space: nowrap;
    border: 1px solid rgba(201, 145, 58, 0.3);
    opacity: 0;
    transition: opacity 0.2s;
}

.map-pin:hover .pin-label {
    opacity: 1;
}

.locations-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 6px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
    cursor: default;
}

.location-item:hover {
    background: rgba(201, 145, 58, 0.1);
    border-color: rgba(201, 145, 58, 0.25);
}

.location-name {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-name::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #7E0D4D;
    border-radius: 50%;
    flex-shrink: 0;
}

.location-area {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.38);
    letter-spacing: 0.06em;
    font-weight: 300;
}

/* ─── CTA BAND ─── */
#cta-band {
    background: #7E0D4D;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.cta-band-text {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    color: white;
    max-width: 600px;
    line-height: 1.2;
}

.cta-band-text em {
    font-style: italic;
    font-weight: 400;
}

.btn-white {
    position: relative;
    background: white;
    color: #7E0D4D;
    padding: 16px 44px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(201, 145, 58, 0.15), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.btn-white:hover::after {
    left: 120%;
}

.btn-white:hover {
    background: var(--espresso);
    color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

/* ─── FOOTER ─── */
footer {
    background: oklch(12% 0.025 55);
    padding: 80px 60px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.footer-logo span {
    color: #7E0D4D;
}

.footer-tagline {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1rem;
    color: rgb(255, 255, 255);
    margin-bottom: 24px;
    line-height: 1.5;
}

.footer-about-text {
    font-size: 1rem;
    color: rgb(255, 255, 255);
    line-height: 1.75;
    font-weight: 300;
    max-width: 280px;
}

.footer-col-title {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7E0D4D;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 1rem;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #7E0D4D;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1rem;
    color: rgb(255, 255, 255);
    flex-shrink: 0;
    margin-top: 1px;
    opacity: 0.6;
}

.contact-text {
    font-size: 1rem;
    color: rgb(255, 255, 255);
    line-height: 1.6;
    font-weight: 300;
}

.contact-text a {
    font-size: 1rem;
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.contact-text a:hover {
    color: #7E0D4D;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover {
    border-color: #7E0D4D;
    color: #7E0D4D;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: 1rem;
    color:#fff;
    font-weight: 300;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 1rem;
    color:#fff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: #7E0D4D;
}

/* ─── TWEAKS PANEL ─── */
#tweaks-panel {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 24px;
    width: 260px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    font-family: var(--sans);
}

#tweaks-panel.visible {
    display: block;
}

.tweaks-title {
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--espresso);
}

.tweak-row {
    margin-bottom: 16px;
}

.tweak-label {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tweak-row input[type=color] {
    width: 100%;
    height: 34px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    cursor: pointer;
}

.tweak-row select {
    width: 100%;
    padding: 7px 10px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: var(--sans);
    background: white;
    cursor: pointer;
}

.tweak-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.tweak-toggle input {
    cursor: pointer;
    accent-color: #7E0D4D;
}

/* ─── ENQUIRY MODAL ─── */
.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(10, 6, 3, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.modal-backdrop.open {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 48px;
    position: relative;
    transform: translateY(40px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}

.modal-backdrop.open .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cream-dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-muted);
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--espresso);
    color: white;
    transform: rotate(90deg);
}

.modal-logo {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--espresso);
    margin-bottom: 6px;
}

.modal-logo span {
    color: #7E0D4D;
}

.modal-title {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--espresso);
    line-height: 1.15;
    margin-bottom: 28px;
}

.modal-title em {
    font-style: italic;
}

.modal-toggle {
    display: flex;
    background: var(--cream-dark);
    border-radius: 100px;
    padding: 4px;
    margin-bottom: 32px;
    gap: 4px;
}

.modal-toggle-btn {
    flex: 1;
    padding: 10px;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    background: transparent;
    color: var(--text-muted);
    transition: all 0.3s;
}

.modal-toggle-btn.active {
    background: #7E0D4D;
    color: white;
    box-shadow: 0 4px 16px rgba(201, 145, 58, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.form-row.full {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-muted);
}

.form-input {
    padding: 13px 16px;
    border: 1.5px solid var(--cream-dark);
    border-radius: 10px;
    font-family: var(--sans);
    font-size: 1rem;
    color: var(--text);
    background: white;
    outline: none;
    transition: all 0.25s;
}

.form-input:focus {
    border-color: #7E0D4D;
    box-shadow: 0 0 0 3px rgba(201, 145, 58, 0.12);
}

.form-input.error {
    border-color: #e55;
    box-shadow: 0 0 0 3px rgba(220, 80, 80, 0.1);
}

.form-input::placeholder {
    color: oklch(72% 0.015 60);
}

textarea.form-input {
    resize: vertical;
    min-height: 90px;
}

.form-error-msg {
    font-size: 0.72rem;
    color: #d44;
    margin-top: 2px;
    display: none;
}

.form-input.error+.form-error-msg {
    display: block;
}

.modal-submit {
    width: 100%;
    margin-top: 24px;
    padding: 16px;
    background: #7E0D4D;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 100px;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(201, 145, 58, 0.3);
}

.modal-submit:hover {
    background: oklch(70% 0.13 62);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 145, 58, 0.45);
}

.modal-submit::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.modal-submit:hover::after {
    left: 120%;
}

.modal-success {
    text-align: center;
    padding: 40px 20px;
    display: none;
}

.modal-success.show {
    display: block;
}

.modal-form-inner.hide {
    display: none;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #7E0D4D, var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.8rem;
    box-shadow: 0 8px 32px rgba(201, 145, 58, 0.35);
}

.success-title {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--espresso);
    margin-bottom: 12px;
}

.success-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

/* ─── OUR PRESENCE ─── */
#locations {
    background: var(--espresso);
    padding: 100px 60px;
}

.presence-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-bottom: 70px;
    border-radius: 16px;
    overflow: hidden;
}

.presence-stat {
    background: oklch(20% 0.04 52);
    padding: 36px 32px;
    text-align: center;
    transition: background 0.3s;
}

.presence-stat:hover {
    background: oklch(22% 0.05 54);
}

.presence-stat-num {
    font-family: var(--serif);
    font-size: 2.8rem;
    font-weight: 600;
    color: #7E0D4D;
    line-height: 1;
    margin-bottom: 8px;
}

.presence-stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

.presence-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Map redesign */
.presence-map {
    border-radius: 16px;
    overflow: hidden;
    background: oklch(18% 0.035 52);
    position: relative;
    height: 460px;
}

.presence-map-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 20px 24px;
    background: linear-gradient(to bottom, oklch(18% 0.035 52), transparent);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.presence-map-title {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 500;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-live-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
    }
}

.map-area-label {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}
.footer-logo img {
    height: 100px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 10px;
}
/* Outlet cards grid */
.presence-outlets {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.presence-outlets-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.presence-outlets-title {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: white;
}

.presence-outlets-all {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7E0D4D;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.presence-outlets-all:hover {
    gap: 10px;
}

.outlet-card {
    background: oklch(20% 0.04 52);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.outlet-card:hover {
    background: rgba(201, 145, 58, 0.1);
    border-color: rgba(201, 145, 58, 0.3);
    transform: translateX(6px);
}

.outlet-card-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.outlet-pin-icon {
    width: 36px;
    height: 36px;
    background: rgba(201, 145, 58, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.outlet-pin-icon svg {
    width: 16px;
    height: 16px;
    fill: #7E0D4D;
}

.outlet-card-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}

.outlet-card-area {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.38);
    margin-top: 2px;
    font-weight: 300;
}

.outlet-card-arrow {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    transition: color 0.2s, transform 0.2s;
}

.outlet-card:hover .outlet-card-arrow {
    color: #7E0D4D;
    transform: translateX(4px);
}

.outlets-more-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--sans);
    font-weight: 400;
    letter-spacing: 0.04em;
}

.outlets-more-btn:hover {
    border-color: rgba(201, 145, 58, 0.3);
    color: #7E0D4D;
}

/* ─── FOOTER CTA ─── */
#cta-band {
    position: relative;
    background: var(--espresso);
    padding: 0;
    overflow: hidden;
}

.cta-band-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
}

.cta-band-left {
    background: #7E0D4D;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cta-band-left::before {
    content: 'F';
    font-family: var(--serif);
    font-size: 22rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.06);
    position: absolute;
    right: -40px;
    bottom: -60px;
    line-height: 1;
    pointer-events: none;
    letter-spacing: -0.05em;
}

.cta-band-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-band-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}

.cta-band-heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
}

.cta-band-heading em {
    font-style: italic;
}

.cta-band-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 36px;
    max-width: 360px;
}

.cta-band-right {
    background: oklch(20% 0.04 52);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cta-band-right::before {
    content: 'D';
    font-family: var(--serif);
    font-size: 22rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    right: -40px;
    bottom: -60px;
    line-height: 1;
    pointer-events: none;
}

.cta-band-right .cta-band-eyebrow {
    color: rgba(255, 255, 255, 0.4);
}

.cta-band-right .cta-band-eyebrow::before {
    background: rgba(255, 255, 255, 0.2);
}

.cta-band-right .cta-band-heading {
    color: white;
}

.cta-band-right .cta-band-sub {
    color: rgba(255, 255, 255, 0.4);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

@media (max-width: 1100px) {
.about-img-accent {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 45%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    border: 6px solid #f7f7f7;
}
.mobile-menu {
   
    top: 110px;
}
.about-img-main {
    width: 100%;
    height: 80%;
}
div#prod-cat-nav button.prod-cat-btn {
    width: 55%;
}
    .hero-product-area {
        display: block !important;
    }
    .hero-product-area {
        position: absolute;
        right: 0;
        top: 110px;
        bottom: 0;
        width: 100%;
        overflow: hidden;
        height: 270px;
    }
    #hero {
        padding-top: 80px;
        min-height: 70vh;
    }



    nav {
        padding: 18px 30px;
    }

    nav.scrolled {
        padding: 12px 30px;
    }

    .nav-links {
        gap: 18px;
    }

    #about,
    .dist-header {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .franchise-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .franchise-perks-grid,
    .dist-reasons-grid,
    .dist-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .presence-body {
        grid-template-columns: 1fr;
    }

    .presence-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-band-inner {
        grid-template-columns: 1fr;
    }
.footer-grid {
    display: block;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
        #hero {
        padding-top: 330px;
        min-height: 120vh;
    }
    .values-grid {
    display: block;
}
.value-card {
    padding: 20px 20px;
    margin-bottom: 20px;
    margin: 10px;
}
    .footer-col-title {
    margin-top: 30px;
}
.products-header {
    display: block;
}
    .hero-product-area {
        display: none;
    }
.prod-small-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
}
.prod-small-row .pci {
    height: 150px;
}
    .hero-content {
        max-width: 100%;
        padding: 60px 30px 40px;
    }

    #about {
        padding: 80px 30px;
    }

     #values, #products, #locations {
        padding-left: 5px;
        padding-right: 5px;
    }
.franchise-inner,#distribution {
        padding: 30px 10px;
    }


    #cta-band {
        padding: 0;
    }

    .cta-band-left,
    .cta-band-right {
        padding: 60px 30px;
    }

    footer {
        padding: 60px 30px 30px;
    }

    .modal-box {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}