/* ==========================================================================
   DEPANVINE CONFECTIONARY & CAFE - MAIN STYLESHEET
   Brand Palette: Pink & Purple Exclusively
   Typography: Gazpacho (Headings) & Century Gothic / Montserrat (Body)
   ========================================================================== */

/* --- Font Declarations --- */
@font-face {
    font-family: 'Gazpacho Italic Black';
    src: url('../fonts/Gazpacho Italic Black.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gazpacho';
    src: url('../fonts/Gazpacho Italic Black.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gazpacho';
    src: url('../fonts/Gazpacho Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gazpacho';
    src: url('../fonts/Gazpacho Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gazpacho';
    src: url('../fonts/Gazpacho Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gazpacho';
    src: url('../fonts/Gazpacho Heavy.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gazpacho';
    src: url('../fonts/Gazpacho Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gazpacho';
    src: url('../fonts/Gazpacho Italic Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* --- Google Fonts Import for Century Gothic Alternatives (Montserrat / Questrial) --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Questrial&display=swap');

/* --- Root CSS Variables --- */
:root {
    /* Main Brand Palette (Pink & Purple) */
    --purple-primary: #631B68;       /* Refined Lighter Regal Plum */
    --purple-deep: #430F47;          /* Deep Royal Plum */
    --purple-mid: #8E24AA;           /* Vibrant Plum Accent */
    --purple-light: #AB47BC;         /* Bright Purple */
    --purple-soft: #F7EAF9;          /* Soft Lilac Tint */
    --purple-bg: #FAF3FB;            /* Light Purple Background */

    --pink-primary: #f06ba8;         /* User Requested Signature Pink */
    --pink-bright: #ff7bb7;          /* Lighter Pink Accent */
    --pink-rose: #d64d8a;            /* Deeper Pink Accent */
    --pink-soft: #fdeaf2;            /* Soft Pink Wash */
    --pink-glow: rgba(240, 107, 168, 0.25);

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #f06ba8 0%, #8E24AA 100%);
    --grad-purple: linear-gradient(135deg, #631B68 0%, #8E24AA 100%);
    --grad-pink: linear-gradient(135deg, #ff7bb7 0%, #f06ba8 100%);
    --grad-subtle: linear-gradient(180deg, #FDF6FA 0%, #FFFFFF 100%);
    --grad-hero: linear-gradient(135deg, #FAF0F8 0%, #F5E6F5 50%, #FDF4FA 100%);

    /* WhatsApp Specific */
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;

    /* Neutrals */
    --text-main: #2A082E;
    --text-muted: #6B4E71;
    --text-light: #8E7395;
    --border-color: #EBD4E8;
    --card-bg: #FFFFFF;
    --body-bg: #FCF7FB;

    /* Typography */
    --font-heading: 'Gazpacho Italic Black', 'Gazpacho', Georgia, serif;
    --font-body: 'Century Gothic', 'Questrial', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Shadows & Transitions */
    --shadow-sm: 0 4px 12px rgba(74, 14, 78, 0.06);
    --shadow-md: 0 10px 30px rgba(74, 14, 78, 0.1);
    --shadow-lg: 0 20px 40px rgba(74, 14, 78, 0.15);
    --shadow-pink: 0 10px 25px rgba(240, 107, 168, 0.35);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--body-bg);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--purple-primary);
    line-height: 1.25;
    font-weight: 900;
    font-style: italic;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

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

a:hover {
    color: var(--purple-mid);
}

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

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
    position: relative;
}

.section-bg-alt {
    background: var(--purple-bg);
}

.section-bg-white {
    background: #ffffff;
}

.text-center { text-align: center; }
.text-pink { color: var(--pink-primary) !important; }
.text-purple { color: var(--purple-primary) !important; }

/* --- Section Header Badge --- */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0;
    background: transparent !important;
    color: var(--pink-primary) !important;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: none !important;
    box-shadow: none !important;
}

/* Left line for all badges */
.section-badge::before {
    content: '';
    display: inline-block;
    width: 45px;
    height: 2px;
    background: var(--pink-primary) !important;
    border-radius: 2px;
    flex-shrink: 0;
}

/* For center-aligned badges: lines on BOTH left and right, text in center */
.text-center .section-badge,
.section-badge.badge-center,
.section-badge-center {
    justify-content: center;
}

.text-center .section-badge::after,
.section-badge.badge-center::after,
.section-badge-center::after {
    content: '';
    display: inline-block;
    width: 45px;
    height: 2px;
    background: var(--pink-primary) !important;
    border-radius: 2px;
    flex-shrink: 0;
}

.section-badge i {
    display: none !important;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    max-width: 650px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* --- Buttons & UI Elements --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.8rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--pink-primary);
    color: #ffffff;
    border-color: var(--pink-primary);
    box-shadow: none;
}

.btn-primary:hover {
    background: var(--purple-primary);
    border-color: var(--purple-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: none;
}

.btn-purple {
    background: var(--purple-primary);
    color: #ffffff;
    box-shadow: none;
}

.btn-purple:hover {
    background: var(--purple-mid);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: none;
}

.btn-pink-solid {
    background: var(--pink-primary);
    color: #ffffff;
    border-color: var(--pink-primary);
    box-shadow: none;
}

.btn-pink-solid:hover {
    background: var(--purple-primary);
    border-color: var(--purple-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: none;
}

.btn-outline {
    background: transparent;
    border-color: var(--purple-primary);
    color: var(--purple-primary);
}

.btn-outline:hover {
    background: var(--purple-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline-pink {
    background: transparent;
    border-color: var(--pink-primary);
    color: var(--pink-primary);
}

.btn-outline-pink:hover {
    background: var(--pink-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    box-shadow: none;
    font-weight: 700;
}

.btn-whatsapp:hover {
    background: #1ebc59;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: none;
}

.btn-sm {
    padding: 0.55rem 1.2rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 0.95rem 2.1rem;
    font-size: 1rem;
}

/* --- Announcement Top Bar --- */
.top-announcement {
    background: var(--grad-purple);
    color: #ffffff;
    padding: 0.55rem 0;
    font-size: 0.85rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-announcement .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-announcement a {
    color: #FFD1E8;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.top-announcement a:hover {
    color: #ffffff;
}

/* --- Universal Header & Navigation --- */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1240px;
    margin: 0 auto;
}

.brand-logo {
    display: flex;
    align-items: center;
}

.brand-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--purple-primary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.4rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink-primary);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--pink-primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.social-header-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--purple-soft);
    color: var(--purple-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.social-icon-btn:hover {
    background: var(--pink-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 42px;
    height: 42px;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 2100;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.hamburger-box {
    width: 24px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--purple-primary);
    border-radius: 2px;
    transition: all 0.35s ease;
    transform-origin: center;
}

.cake-morph-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0) rotate(-45deg);
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.45s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-toggle.active .hamburger-box {
    transform: scale(0) rotate(90deg);
    opacity: 0;
}

.mobile-menu-toggle.active .cake-morph-icon {
    transform: translate(-50%, -50%) scale(1.15) rotate(0deg);
    opacity: 1;
    pointer-events: auto;
    filter: drop-shadow(0 3px 8px rgba(233, 30, 99, 0.45));
}

/* Mobile Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: #ffffff;
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(74, 14, 78, 0.2);
    padding: 1.5rem 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.4s ease-in-out;
}

.mobile-nav-drawer.open {
    right: 0;
}

.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 8, 50, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--purple-primary);
    cursor: pointer;
    line-height: 1;
    padding: 0.2rem;
    transition: var(--transition);
}

.mobile-close-btn:hover {
    color: var(--pink-primary);
    transform: rotate(90deg);
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.mobile-nav-link {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--purple-primary);
    font-weight: 600;
    display: block;
    padding: 0.3rem 0;
    transition: var(--transition);
}

.mobile-nav-link.active, .mobile-nav-link:hover {
    color: var(--pink-primary);
    padding-left: 0.4rem;
}

/* --- Hero Section --- */
.hero-section {
    background: var(--grad-hero);
    position: relative;
    padding: 5rem 0 6rem;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 31, 162, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    padding-top: 1.25rem;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 1.25rem;
    color: var(--purple-primary);
    text-align: center;
}

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

.hero-lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.2rem;
    line-height: 1.65;
    text-align: center;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2.8rem;
}

/* --- Hero Features Continuous Marquee --- */
.hero-marquee-wrapper {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    min-width: 0;
    overflow: hidden;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.hero-marquee-track {
    display: flex;
    width: max-content;
    animation: heroMarqueeScroll 24s linear infinite;
}

.hero-marquee-track:hover {
    animation-play-state: paused;
}

.hero-marquee-group {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding-right: 2.5rem;
    flex-shrink: 0;
}

.hero-feat-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--purple-primary);
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-feat-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--pink-soft);
    color: var(--pink-rose);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

@keyframes heroMarqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-cake-img {
    width: 100%;
    max-width: 480px;
    filter: drop-shadow(0 25px 35px rgba(74, 14, 78, 0.25));
    animation: floatCake 6s ease-in-out infinite;
}

@keyframes floatCake {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-badge-float {
    position: absolute;
    bottom: 20px;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: pulseFloat 4s ease-in-out infinite;
}

@keyframes pulseFloat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.badge-icon-wrap {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.badge-text-wrap h5 {
    font-size: 0.95rem;
    color: var(--purple-primary);
}

.badge-text-wrap p {
    font-size: 0.8rem;
    margin: 0;
    color: var(--pink-rose);
    font-weight: 600;
}

/* --- Service Cards & Gallery Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--pink-primary);
}

.service-img-wrap {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img-wrap img {
    transform: scale(1.08);
}

.service-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body h3 {
    margin-bottom: 0.75rem;
}

.service-card-body p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

/* --- Product Cards & Shop Grid --- */
.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.6rem 1.4rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--purple-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--pink-primary);
    color: #ffffff;
    border-color: transparent;
    box-shadow: none;
}

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

.product-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--pink-bright);
}

.product-img-wrap {
    position: relative;
    height: 250px;
    background: var(--purple-soft);
    overflow: hidden;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--grad-primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category-tag {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--pink-rose);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--purple-primary);
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pink-primary);
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.product-desc-snippet {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-actions {
    display: flex;
    gap: 0.6rem;
}

.product-actions .btn {
    flex: 1;
}

/* --- WhatsApp Order Modal --- */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 8, 50, 0.75);
    backdrop-filter: blur(6px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #ffffff;
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    padding: 2.2rem;
    position: relative;
    transform: scale(0.95);
    transition: var(--transition);
}

.modal-backdrop.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: var(--purple-soft);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--purple-primary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--pink-primary);
    color: #ffffff;
}

.modal-header-product {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    align-items: center;
}

.modal-product-thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.modal-form-group {
    margin-bottom: 1.4rem;
}

.modal-label {
    display: block;
    font-weight: 600;
    color: var(--purple-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.modal-select, .modal-input, .modal-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    background: #ffffff;
    transition: var(--transition);
}

.modal-select:focus, .modal-input:focus, .modal-textarea:focus {
    outline: none;
    border-color: var(--pink-primary);
    box-shadow: 0 0 0 3px var(--pink-soft);
}

.modal-price-display {
    background: var(--purple-soft);
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-price-display span {
    font-weight: 600;
    color: var(--purple-primary);
}

.modal-price-display strong {
    font-size: 1.4rem;
    color: var(--pink-primary);
}

/* --- Story / About Highlight --- */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-grid-heritage {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.story-cta-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.story-img-heritage {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 100%;
    height: auto;
    max-height: 440px;
    margin: 0 auto;
    object-fit: cover;
    display: block;
}

.story-image-wrap {
    position: relative;
}

.story-img-main {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.story-experience-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--grad-purple);
    color: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.story-experience-card h4 {
    color: #FFD1E8;
    font-size: 2.2rem;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.story-experience-card p {
    color: #ffffff;
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* --- Social Wall / Gallery Showcase (Original Site Match) --- */
.socials-section {
    padding: 5rem 0;
}

.socials-layout {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 3rem;
    align-items: center;
}

.socials-left-col h2.socials-title {
    font-size: clamp(1.8rem, 2.6vw, 2.5rem);
    color: var(--purple-primary);
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 900;
}

.socials-grid-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.socials-row-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.socials-row-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
}

.social-img-link {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-sm);
    text-decoration: none;
}

.social-img-grow {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: var(--radius-sm);
    transition: transform 0.35s ease;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.social-img-grow:hover {
    transform: scale(1.05);
}

.socials-community-card {
    background: var(--purple-bg);
    background-image: linear-gradient(135deg, rgba(250, 240, 248, 0.95) 0%, rgba(243, 229, 245, 0.95) 100%);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 380px;
}

.socials-community-card h3 {
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    color: var(--purple-primary);
    margin-bottom: 1.2rem;
    line-height: 1.35;
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 900;
}

.socials-community-card h4 {
    font-size: 1.5rem;
    color: var(--pink-primary);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 900;
}

.socials-icon-group {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

.social-circle-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--pink-primary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: none;
    transition: var(--transition);
}

.social-circle-btn:hover {
    background: var(--purple-primary);
    transform: translateY(-2px) scale(1.04);
    box-shadow: none;
    color: #ffffff;
}

.social-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.social-gallery-item {
    position: relative;
    height: 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.social-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.social-gallery-item:hover img {
    transform: scale(1.1);
}

.social-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(74, 14, 78, 0.2) 0%, rgba(233, 30, 99, 0.8) 100%);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.8rem;
    transition: var(--transition);
}

.social-gallery-item:hover .social-gallery-overlay {
    opacity: 1;
}

/* --- CTA Banner (Pink & Purple Gradient) --- */
.cta-banner {
    background: var(--grad-primary);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-pink);
    margin: 3rem 0;
}

.cta-banner h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.15rem;
}

/* --- Footer --- */
.site-footer {
    background: var(--purple-deep);
    color: #D6C2D9;
    padding: 4.5rem 0 2rem;
    position: relative;
    border-top: 4px solid var(--pink-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-brand img {
    height: 48px;
    width: auto;
    margin-bottom: 1.25rem;
}

.footer-brand p {
    color: #D6C2D9;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--pink-primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #D6C2D9;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--pink-bright);
    padding-left: 0.3rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    align-items: flex-start;
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--pink-bright);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.footer-contact-item a {
    color: #D6C2D9;
}

.footer-contact-item a:hover {
    color: var(--pink-bright);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

/* --- Floating WhatsApp Button --- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1500;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #25D366;
    color: #ffffff;
    padding: 0.8rem 1.4rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    animation: bounceBadge 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
    background: #1ebc59;
    color: #ffffff;
    transform: scale(1.03);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.floating-whatsapp i {
    font-size: 1.4rem;
}

@keyframes bounceBadge {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* ==========================================================================
   DEPANVINE CONCIERGE & QUICK ORDER SECTION (POST-CONTENT SIDEBAR)
   Structured 4-Column Grid on Desktop / 2x2 on Tablet / 1-Col on Mobile
   ========================================================================== */
.sidebar-section {
    padding: 4.5rem 0;
    border-top: 1px solid var(--border-color);
    background: var(--purple-bg);
}

.page-sidebar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.8rem;
    align-items: stretch;
    width: 100%;
    position: static;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 0;
}

.sidebar-widget:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--pink-primary);
    transform: translateY(-4px);
}

.sidebar-widget-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.9rem;
    border-bottom: 2px solid var(--purple-soft);
}

.sidebar-widget-header i {
    font-size: 1.25rem;
    color: var(--pink-primary);
}

.sidebar-widget-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--purple-primary);
    margin: 0;
}

/* Express WhatsApp Ordering Widget */
.sidebar-order-widget {
    background: linear-gradient(145deg, #FAF3FB 0%, #FFFFFF 100%);
    border: 1.5px solid rgba(240, 107, 168, 0.25);
    position: relative;
    overflow: hidden;
}

.sidebar-order-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-primary);
}

.sidebar-order-badge {
    display: inline-block;
    background: var(--pink-soft);
    color: var(--pink-rose);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

/* Featured Flyer Card Widget */
.sidebar-flyer-widget {
    padding: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border-color);
}

.sidebar-flyer-img-wrap {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: var(--purple-soft);
    border-radius: calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px) 0 0;
}

.sidebar-flyer-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

.sidebar-flyer-widget:hover .sidebar-flyer-img {
    transform: scale(1.05);
}

.sidebar-flyer-body {
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sidebar-flyer-body a {
    margin-top: auto;
}

/* Popular Bakery Picks Widget */
.sidebar-picks-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
    justify-content: space-around;
}

.sidebar-pick-item {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    background: var(--purple-bg);
    border: 1px solid rgba(235, 212, 232, 0.6);
    transition: var(--transition);
}

.sidebar-pick-item:hover {
    background: #ffffff;
    border-color: var(--pink-primary);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.sidebar-pick-thumb {
    width: 58px;
    height: 58px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.sidebar-pick-info {
    flex-grow: 1;
    min-width: 0;
}

.sidebar-pick-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--purple-primary);
    margin-bottom: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-pick-price {
    font-size: 0.82rem;
    color: var(--pink-rose);
    font-weight: 700;
    display: block;
    margin-bottom: 0.35rem;
}

.sidebar-pick-btn {
    font-size: 0.75rem;
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-full);
}

/* Trust Badges Widget */
.sidebar-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    flex-grow: 1;
}

.sidebar-trust-item {
    background: var(--purple-bg);
    border-radius: var(--radius-md);
    padding: 0.85rem 0.5rem;
    text-align: center;
    border: 1px solid rgba(235, 212, 232, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sidebar-trust-item i {
    font-size: 1.35rem;
    color: var(--pink-primary);
    margin-bottom: 0.4rem;
    display: inline-block;
}

.sidebar-trust-item h5 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--purple-primary);
    margin-bottom: 0.2rem;
}

.sidebar-trust-item p {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.3;
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN SYSTEM
   Breakpoints: 1200px, 992px, 768px, 600px, 480px, 360px
   ========================================================================== */

/* --- Medium Desktops & Large Tablets (<= 1150px) --- */
@media (max-width: 1150px) {
    .page-sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 1.5rem !important;
    }
}

/* --- Tablet / Medium Screens (<= 1024px) --- */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.25rem;
    }
    .hero-grid {
        gap: 2.5rem;
    }
    .story-grid {
        gap: 2.5rem;
    }
    .socials-layout {
        gap: 2.5rem;
    }
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 2rem;
    }
}

/* --- Tablets & Small Laptops (<= 992px) --- */
@media (max-width: 992px) {
    .main-nav, .header-actions .btn {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .hero-section {
        padding: 5.5rem 0 6.5rem;
        min-height: 520px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        width: 100%;
        margin: auto;
    }
    .hero-content {
        padding-top: 100px !important;
        text-align: center;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .hero-content h1 {
        text-align: center;
    }
    .hero-lead {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta-group {
        justify-content: center;
        align-items: center;
    }
    .hero-image-wrapper {
        display: none;
    }
    /* Badges on mobile: always centralized with lines on BOTH sides (30% scale) */
    .section-badge {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: fit-content !important;
        max-width: 100% !important;
        font-size: 0.62rem !important;
        letter-spacing: 1px !important;
        gap: 0.55rem !important;
        color: var(--pink-primary) !important;
    }
    .section-badge::before {
        content: '' !important;
        display: inline-block !important;
        width: 25px !important;
        height: 1.5px !important;
        background: var(--pink-primary) !important;
        border-radius: 2px !important;
        flex-shrink: 0 !important;
    }
    .section-badge::after {
        content: '' !important;
        display: inline-block !important;
        width: 25px !important;
        height: 1.5px !important;
        background: var(--pink-primary) !important;
        border-radius: 2px !important;
        flex-shrink: 0 !important;
    }
    .story-grid,
    .story-grid-heritage {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 2.5rem;
    }
    .page-sidebar {
        position: static !important;
        top: auto;
    }
    .story-cta-group {
        justify-content: center;
    }
    .story-grid ul {
        text-align: left;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
    .story-grid .btn {
        margin: 0 auto;
    }
    .story-img-main {
        height: auto;
        max-height: 400px;
        margin: 0 auto;
    }
    .socials-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .socials-left-col h2.socials-title {
        text-align: center;
    }
    .socials-row-top {
        display: grid;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.65rem;
    }
    .socials-row-bottom {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 0.65rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

/* --- Tablets & Phablets (<= 768px) --- */
@media (max-width: 768px) {
    .section {
        padding: 3.5rem 0;
    }
    .section-subtitle {
        margin-bottom: 2rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
    .service-img-wrap {
        height: 220px;
    }
    .page-sidebar {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
    }
    .product-img-wrap {
        height: 220px;
    }
    .top-announcement .top-contact-info {
        display: none;
    }
    .top-announcement .container {
        justify-content: center;
    }
    .top-announcement .top-quick-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }
    .cta-banner {
        padding: 3rem 1.8rem;
        margin: 2rem 0;
    }
    .cta-banner p {
        font-size: 1rem;
    }
}

/* --- Mobile Landscape / Large Mobile (<= 600px) --- */
@media (max-width: 600px) {
    html {
        font-size: 15px;
    }
    .section {
        padding: 3rem 0;
    }
    .brand-logo img {
        height: 40px;
    }
    .header-container {
        padding: 0.8rem 1rem;
    }
    .social-header-links {
        display: none;
    }
    .top-announcement {
        display: none;
    }
    .hero-section {
        padding: 4.5rem 0 5.5rem;
        min-height: 520px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero-content {
        padding-top: 50px !important;
        text-align: center;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .hero-content h1 {
        text-align: center;
    }
    .hero-lead {
        font-size: 1.1rem;
        line-height: 1.65;
        margin-bottom: 1.8rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0.75rem;
        margin-bottom: 2rem;
        justify-content: center;
    }
    .hero-cta-group .btn {
        width: 100%;
        max-width: 290px;
        padding: 0.75rem 1.4rem;
        font-size: 0.92rem;
        align-self: center;
    }
    .story-cta-group,
    .story-grid div > div[style*="display: flex"] {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0.75rem;
    }
    .story-cta-group .btn,
    .story-grid div > div[style*="display: flex"] .btn {
        width: 100%;
        max-width: 290px;
    }
    .story-img-heritage {
        max-width: 90%;
        max-height: 320px;
    }
    .story-experience-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin: -25px auto 0;
        max-width: 220px;
        padding: 1rem 1.5rem;
    }
    .filter-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 0.5rem 0.8rem;
        margin-bottom: 2rem;
        -webkit-overflow-scrolling: touch;
    }
    .filter-btn {
        flex-shrink: 0;
        padding: 0.5rem 1.1rem;
        font-size: 0.85rem;
    }
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .socials-row-top {
        display: grid;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.5rem;
    }
    .socials-row-bottom {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 0.5rem;
    }
    .socials-community-card {
        padding: 2.5rem 1.5rem;
        min-height: auto;
    }
    .socials-community-card h3 {
        font-size: 1.35rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    .modal-content {
        padding: 1.5rem 1.2rem;
        width: 95%;
        max-height: 92vh;
    }
    .modal-header-product {
        gap: 0.8rem;
    }
    .modal-product-thumb {
        width: 60px;
        height: 60px;
    }
    .modal-select, .modal-input, .modal-textarea {
        font-size: 16px; /* Prevents auto zoom on iOS */
    }
    .floating-whatsapp span {
        display: none;
    }
    .floating-whatsapp {
        padding: 0.9rem;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        justify-content: center;
    }
    .floating-whatsapp i {
        font-size: 1.6rem;
    }
}

/* --- Small Mobile Screens (<= 400px) --- */
@media (max-width: 400px) {
    .socials-row-top {
        display: grid;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.4rem;
    }
    .socials-row-bottom {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 0.4rem;
    }
    .cta-banner {
        padding: 2.2rem 1.2rem;
    }
    .cta-banner .btn {
        width: 100%;
    }
}

/* --- Contact Page Responsiveness & Mobile Button Fluidity --- */
.contact-channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}
.contact-channel-card {
    background: var(--purple-bg);
    padding: 1.35rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-sizing: border-box;
}
.contact-faq-card {
    background: var(--purple-bg);
    padding: 1.35rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-sizing: border-box;
}
.contact-form-card {
    background: var(--purple-bg);
    padding: 2.2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .btn {
        white-space: normal !important;
        max-width: 100% !important;
        text-align: center !important;
    }
    .contact-channels-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-bottom: 2rem !important;
    }
    .contact-channel-card {
        padding: 1.15rem 1rem !important;
        width: 100% !important;
    }
    .contact-faq-card {
        padding: 1.15rem 1rem !important;
        width: 100% !important;
        text-align: left !important;
    }
    .contact-form-card {
        padding: 1.4rem 1.1rem !important;
        width: 100% !important;
    }
    .contact-form-card form {
        width: 100% !important;
    }
    .contact-form-card .btn {
        white-space: normal !important;
        width: 100% !important;
        padding: 0.85rem 1rem !important;
    }
}

