/* ============================================
   Ravneet's Collection — V2 Redesign
   Mobile-first · Warm Cream · Editorial
   ============================================ */

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── Design Tokens ─── */
:root {
    /* Palette */
    --color-cream: #F5F0EB;
    --color-cream-dark: #EDE6DD;
    --color-sand: #D4C9BC;
    --color-charcoal: #1A1A1A;
    --color-charcoal-light: #2E2E2E;
    --color-text: #333333;
    --color-text-muted: #7A7268;
    --color-text-light: #9E958B;
    --color-gold: #B8956A;
    --color-gold-light: #D4B896;
    --color-gold-dark: #96754E;
    --color-red: #C0392B;
    --color-red-hover: #A93226;
    --color-white: #FFFFFF;
    --color-border: rgba(26, 26, 26, 0.08);
    --color-border-dark: rgba(26, 26, 26, 0.15);
    --color-shadow: rgba(26, 26, 26, 0.06);
    --color-whatsapp: #25D366;
    --color-whatsapp-hover: #1EBE57;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Layout */
    --max-width: 1200px;
    --max-width-narrow: 900px;
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 100px;

    /* Shadows */
    --shadow-sm: 0 1px 3px var(--color-shadow);
    --shadow-md: 0 4px 20px rgba(26, 26, 26, 0.08);
    --shadow-lg: 0 8px 40px rgba(26, 26, 26, 0.12);
    --shadow-card: 0 2px 12px rgba(26, 26, 26, 0.05);
    --shadow-card-hover: 0 12px 40px rgba(26, 26, 26, 0.12);

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* ─── Reset & Base ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

address {
    font-style: normal;
}

::selection {
    background: var(--color-gold-light);
    color: var(--color-charcoal);
}


/* ─── Utility ─── */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container--narrow {
    max-width: var(--max-width-narrow);
}

.section {
    padding: var(--space-xl) 0;
}

.section--cream {
    background: var(--color-cream);
}

.section--white {
    background: var(--color-white);
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-charcoal);
    line-height: 1.25;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    max-width: 500px;
    line-height: 1.7;
}

.section-divider {
    width: 40px;
    height: 2px;
    background: var(--color-gold);
    margin-top: var(--space-md);
}

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

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}


/* ─── Scroll Reveal Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    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;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}


/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 240, 235, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: var(--space-sm) 0;
    transition: padding var(--transition);
}



.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.header__logo-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: 10001;
}

.header__logo-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.header__brand {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-charcoal);
    letter-spacing: 0.3px;
}

.header__brand span {
    font-weight: 400;
    color: var(--color-gold);
}

/* Nav — mobile hidden */
.nav {
    display: none;
}

.nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--color-cream);
    padding: 100px var(--space-xl) var(--space-xl);
    gap: var(--space-lg);
    z-index: 9999;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav__link {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-charcoal);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
    transition: color var(--transition);
}

.nav__link:hover,
.nav__link.active {
    color: var(--color-gold);
}

.nav__whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    background: var(--color-whatsapp);
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    margin-top: var(--space-md);
    transition: background var(--transition);
    width: fit-content;
}

.nav__whatsapp-btn:hover {
    background: var(--color-whatsapp-hover);
}

.nav__whatsapp-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Standalone Header WhatsApp Button (Hidden on Mobile) */
.header__whatsapp-btn {
    display: none;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.55rem 1.2rem;
    background: var(--color-whatsapp);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    transition: background var(--transition);
    text-decoration: none;
}

.header__whatsapp-btn:hover {
    background: var(--color-whatsapp-hover);
}

.header__whatsapp-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Hamburger */
.nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 10001;
    cursor: pointer;
}

.nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-charcoal);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav__toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
    /* Offset for the fixed solid header */
}

.hero__bg {
    position: absolute;
    inset: 0;
}

.hero__bg picture,
.hero__bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    /* Removed the bright whitish tint */
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    max-width: 600px;
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: 0.80rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgb(224, 189, 100);
    margin-bottom: var(--space-md);
}

.hero__title {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 500;
    color: var(--color-charcoal);
    line-height: 1.15;
    margin-bottom: var(--space-lg);
}

.hero__title em {
    font-style: italic;
    color: rgb(224, 189, 100);
}

.hero__description {
    font-size: 0.95rem;
    color: black;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.hero__scroll {
    font-size: 0.95rem;
    color: rgb(232, 210, 88);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.9rem 2.2rem;
    background: var(--color-charcoal);
    color: var(--color-cream);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--radius-pill);
    transition: all var(--transition);
}

.hero__cta:hover {
    background: var(--color-gold-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}


/* ============================================
   EDITORIAL SECTION
   (asymmetric story block on home page)
   ============================================ */
.editorial {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.editorial__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.editorial__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.editorial__image:hover img {
    transform: scale(1.03);
}

.editorial__content {
    padding: var(--space-md) 0;
}

.editorial__text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.9;
    margin-bottom: var(--space-lg);
}

.editorial__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold-dark);
    transition: gap var(--transition);
}

.editorial__link:hover {
    gap: var(--space-md);
}


/* ============================================
   PRODUCT GRID & CARDS
   ============================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.product-card {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.product-card__image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--color-cream-dark);
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image {
    transform: scale(1.05);
}

.product-card__category-tag {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    padding: 0.25rem 0.65rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
    border-radius: var(--radius-pill);
}

.product-card__body {
    padding: var(--space-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card__name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-charcoal);
    line-height: 1.35;
    margin-bottom: var(--space-xs);
}

.product-card__price {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gold-dark);
    margin-top: auto;
}


/* ============================================
   TOOLBAR (Category Filters + Sort)
   ============================================ */
.toolbar {
    padding: var(--space-md) 0;
    position: sticky;
    top: 60px;
    z-index: 100;
    background: var(--color-cream);
    border-bottom: 1px solid var(--color-border);
}

.toolbar__inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.categories {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.categories::-webkit-scrollbar {
    display: none;
}

.categories__btn {
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 0.5rem 1.25rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--color-text-muted);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    white-space: nowrap;
    transition: all var(--transition);
    cursor: pointer;
}

.categories__btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold-dark);
}

.categories__btn.active {
    background: var(--color-charcoal);
    color: var(--color-cream);
    border-color: var(--color-charcoal);
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.sort-controls__label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sort-controls__select {
    font-family: var(--font-body);
    font-size: 0.82rem;
    padding: 0.45rem 0.8rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-white);
    color: var(--color-text);
    cursor: pointer;
    outline: none;
    transition: border-color var(--transition);
}

.sort-controls__select:focus {
    border-color: var(--color-gold);
}


/* ============================================
   PAGE TITLE (Products, About)
   ============================================ */
.page-title-section {
    padding: calc(80px + var(--space-2xl)) 0 var(--space-lg);
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
}

.page-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}


/* ============================================
   PRODUCT DETAIL
   ============================================ */
.product-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding-top: 80px;
}

.product-detail__back {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-muted);
    padding: var(--space-md) 0;
    transition: color var(--transition);
}

.product-detail__back:hover {
    color: var(--color-gold-dark);
}

.product-detail__image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--color-white);
}

.product-detail__carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.product-detail__carousel::-webkit-scrollbar {
    display: none;
}

.product-detail__carousel-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    aspect-ratio: 3/4;
}

.product-detail__carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail__carousel-controls {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-sm);
}

.product-detail__carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.2);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.product-detail__carousel-dot.active {
    background: var(--color-charcoal);
    transform: scale(1.3);
}

.product-detail__carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--color-charcoal);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.product-detail__carousel-btn:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
}

.product-detail__carousel-btn--prev {
    left: var(--space-sm);
}

.product-detail__carousel-btn--next {
    right: var(--space-sm);
}

/* Product Info */
.product-detail__info {
    padding: var(--space-md) 0;
}

.product-detail__category {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.product-detail__name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-charcoal);
    line-height: 1.25;
    margin-bottom: var(--space-md);
}

.product-detail__price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gold-dark);
    margin-bottom: var(--space-lg);
}

.product-detail__divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin-bottom: var(--space-lg);
}

.product-detail__desc-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
}

.product-detail__description {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 2;
    white-space: pre-line;
    margin-bottom: var(--space-xl);
}

.product-detail__whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: 1rem;
    margin: var(--space-md) 0 0;
    background: var(--color-whatsapp);
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.product-detail__whatsapp-btn:hover {
    background: var(--color-whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.product-detail__whatsapp-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}


/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero__bg {
    position: absolute;
    inset: 0;
}

.about-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(245, 240, 235, 0.4) 0%,
            rgba(245, 240, 235, 0.7) 60%,
            rgba(245, 240, 235, 0.95) 100%);
}

.about-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: calc(80px + var(--space-xl)) var(--space-lg) var(--space-xl);
}

.about-hero__title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--color-charcoal);
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

.about-hero__subtitle {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* About Content */
.about-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.about-content p {
    font-size: 0.95rem;
    line-height: 2;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.about-content p strong {
    color: var(--color-charcoal);
    font-weight: 600;
}

.about-content p em {
    color: var(--color-gold-dark);
    font-style: italic;
}

/* Value Cards */
.about-values {
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: var(--space-sm);
}

.about-values::-webkit-scrollbar {
    display: none;
}

.about-value-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-card);
}

.about-value-card__icon {
    margin-bottom: var(--space-md);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-value-card__icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-gold);
}

.about-value-card__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
}

.about-value-card__text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Instagram CTA */
.about-insta-cta {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-card);
}

.about-insta-cta__icon svg {
    width: 36px;
    height: 36px;
    fill: var(--color-gold);
    margin-bottom: var(--space-md);
}

.about-insta-cta__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
}

.about-insta-cta__text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.insta-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
    color: var(--color-white);
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    transition: transform var(--transition), box-shadow var(--transition);
}

.insta-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(131, 58, 180, 0.25);
}

.insta-follow-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}


/* ============================================
   INSTAGRAM REELS SECTION
   ============================================ */
.reels-section {
    padding: var(--space-xl) 0;
}

.reels-grid {
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0 var(--space-lg) var(--space-sm);
}

.reels-grid::-webkit-scrollbar {
    display: none;
}

.reels-grid .reel-card {
    flex: 0 0 75%;
    max-width: 300px;
    scroll-snap-align: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-card);
}

/* Force all Instagram embeds to fill the card uniformly */
.reels-grid .reel-card .instagram-media {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.reels-grid .reel-card iframe {
    width: 100% !important;
    max-width: 100% !important;
    border: none;
    min-height: 420px;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer__section-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.footer__text {
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
}

.footer__text a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.footer__text a:hover {
    color: var(--color-gold-light);
}

.footer__social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.footer__social-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.5rem 1rem;
    font-size: 0.78rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-pill);
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition);
}

.footer__social-link:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--color-white);
}

.footer__social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer__address {
    font-size: 0.85rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.55);
}

.footer__address strong {
    display: block;
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    font-size: 0.88rem;
}

.footer__address a {
    color: var(--color-gold-light);
    transition: opacity var(--transition);
}

.footer__address a:hover {
    opacity: 0.75;
}

.footer__map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: rgba(255, 255, 255, 0.05);
    margin-top: var(--space-md);
}

.footer__map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: var(--space-lg);
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.5px;
}


/* ============================================
   NO PRODUCTS STATE
   ============================================ */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
}

.no-products__icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.no-products__text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}


/* ============================================
   MAIN CONTENT AREA
   ============================================ */
.main {
    min-height: 50vh;
    padding-bottom: var(--space-2xl);
    padding-top: 80px;
    /* Offset for solid header on internal pages */
}

.main .container {
    padding-top: var(--space-md);
}


/* ============================================
   MOBILE WHATSAPP STICKY BAR
   ============================================ */
.mobile-whatsapp {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: var(--space-sm) var(--space-lg);
    background: var(--color-cream);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.mobile-whatsapp__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: 0.85rem;
    background: var(--color-whatsapp);
    color: var(--color-white);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-lg);
    transition: background var(--transition);
}

.mobile-whatsapp__btn:hover {
    background: var(--color-whatsapp-hover);
}

.mobile-whatsapp__btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}


/* ============================================
   RESPONSIVE — TABLET (≥ 768px)
   ============================================ */
@media (min-width: 768px) {
    body {
        font-size: 16px;
    }

    .section {
        padding: var(--space-3xl) 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero {
        min-height: 90vh;
    }

    .hero__title {
        font-size: 3.2rem;
    }

    .hero__content {
        max-width: 650px;
    }

    /* Editorial 2-col */
    .editorial {
        grid-template-columns: 1.2fr 1fr;
        gap: var(--space-3xl);
    }

    .editorial__content {
        padding: var(--space-xl) 0;
    }

    /* Product grid — 3 col */
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }

    /* Toolbar horizontal */
    .toolbar__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    /* Product Detail side-by-side */
    .product-detail {
        grid-template-columns: 55% 1fr;
        gap: var(--space-2xl);
        align-items: start;
    }

    .product-detail__name {
        font-size: 2rem;
    }

    /* About hero */
    .about-hero {
        min-height: 60vh;
    }

    .about-hero__title {
        font-size: 2.6rem;
    }

    /* About value cards — stop scrolling */
    .about-values {
        overflow: visible;
    }

    .about-value-card {
        flex: 1;
    }

    /* Footer — 3 columns */
    .footer__grid {
        grid-template-columns: 1.5fr 1fr 1.2fr;
    }

    /* Page titles */
    .page-title {
        font-size: 2.6rem;
    }

    /* Reels — show all 3 */
    .reels-grid {
        overflow: visible;
        justify-content: center;
        padding: 0;
    }

    .reels-grid .reel-card {
        flex: 1;
        max-width: 350px;
    }

    /* Hide mobile whatsapp bar */
    .mobile-whatsapp {
        display: none;
    }

    /* Desktop nav */
    .nav {
        display: flex;
        align-items: center;
        gap: var(--space-lg);
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav__link {
        font-family: var(--font-body);
        font-size: 0.82rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--color-text-muted);
        padding: 0;
        border-bottom: none;
    }

    .nav__link:hover,
    .nav__link.active {
        color: var(--color-charcoal);
    }

    /* Hide the mobile nav WhatsApp button on desktop */
    .nav__whatsapp-btn {
        display: none;
    }

    /* Show the standalone header WhatsApp button on desktop */
    .header__whatsapp-btn {
        display: inline-flex;
    }

    /* Hide toggle on desktop */
    .nav__toggle {
        display: none;
    }
}


/* ============================================
   RESPONSIVE — DESKTOP (≥ 1024px)
   ============================================ */
@media (min-width: 1024px) {
    .hero__title {
        font-size: 3.8rem;
    }

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

    .about-hero__title {
        font-size: 3rem;
    }

    .page-title {
        font-size: 3rem;
    }

    .container {
        padding: 0 var(--space-xl);
    }
}


/* ============================================
   RESPONSIVE — WIDE (≥ 1280px)
   ============================================ */
@media (min-width: 1280px) {
    .hero__title {
        font-size: 4.2rem;
    }

    .editorial {
        gap: var(--space-3xl);
    }
}


/* ============================================
   FEATURED GRID (homepage 2-up layout)
   ============================================ */
.featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (min-width: 1024px) {
    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ============================================
   BODY PADDING FOR FIXED HEADER + STICKY BAR
   ============================================ */
/* Product page adds its own padding for sticky bar */
body.has-sticky-bar {
    padding-bottom: 70px;
}

@media (min-width: 768px) {
    body.has-sticky-bar {
        padding-bottom: 0;
    }
}