/* ==========================================================================
   MoonFlower - Premium Handmade Flower Boutique Stylesheet
   Palette: Soft Blush Pink, Pure White, Warm Cream, Deep Plum Accents
   ========================================================================== */

:root {
    /* Color Palette */
    --plum-900: #290818;
    --plum-800: #380D21;
    --plum-700: #4A152B; /* Primary Dark Accent */
    --plum-600: #68203F;
    --plum-500: #853155;
    
    --blush-50: #FFF9FA;
    --blush-100: #FDEEF0;
    --blush-200: #F7D9DC; /* Primary Soft Blush */
    --blush-300: #EDBCC2;
    --blush-400: #E09AA3;
    --blush-500: #D07884;
    
    --cream-50: #FFFEFD;
    --cream-100: #FAF7F5; /* Primary Warm Background */
    --cream-200: #F2ECE8;
    --cream-300: #E5DDD8;
    
    --white: #FFFFFF;
    --text-main: #2D2529; /* High contrast body text */
    --text-muted: #6B5B62;
    --text-light: #94828A;
    --border-light: #EDE4E7;
    --border-card: #EADCE0;
    
    --success: #1E824C;
    --success-bg: #E8F8F0;
    --warning: #D35400;
    --warning-bg: #FEF5E7;
    --error: #C0392B;
    --error-bg: #FDEDEC;
    
    /* WhatsApp Official Green */
    --wa-green: #25D366;
    --wa-green-hover: #1EBE5D;
    --wa-dark: #128C7E;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Radii */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(41, 8, 24, 0.04);
    --shadow-sm: 0 3px 8px rgba(41, 8, 24, 0.06);
    --shadow-md: 0 8px 24px rgba(41, 8, 24, 0.08);
    --shadow-lg: 0 16px 40px rgba(41, 8, 24, 0.12);
    --shadow-hover: 0 12px 30px rgba(74, 21, 43, 0.15);
    
    /* Layout */
    --container-max: 1200px;
    --header-height: 80px;
    --header-mobile-height: 70px;
}

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

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

body {
    background-color: var(--cream-100);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

button, input, textarea, select {
    font: inherit;
    color: inherit;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--plum-800);
    line-height: 1.25;
    font-weight: 600;
}

h1 { font-size: clamp(2rem, 4vw + 1rem, 3.25rem); }
h2 { font-size: clamp(1.6rem, 2.5vw + 0.8rem, 2.35rem); }
h3 { font-size: clamp(1.3rem, 1.8vw + 0.6rem, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}
p:last-child {
    margin-bottom: 0;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Icons */
.icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Buttons & CTAs */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px; /* Touch friendly */
    padding: 12px 26px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.btn-plum {
    background: var(--plum-700);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(74, 21, 43, 0.25);
}
.btn-plum:hover {
    background: var(--plum-900);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 21, 43, 0.35);
}

.btn-secondary {
    background: var(--white);
    color: var(--plum-700);
    border-color: var(--border-light);
    box-shadow: var(--shadow-xs);
}
.btn-secondary:hover {
    background: var(--blush-100);
    border-color: var(--blush-300);
    color: var(--plum-900);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--wa-green);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
    background: var(--wa-green-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-sm {
    min-height: 40px;
    padding: 8px 18px;
    font-size: 13.5px;
}

.btn-lg {
    min-height: 54px;
    padding: 14px 34px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

/* Announcement Bar */
.announcement-bar {
    background: var(--plum-800);
    color: var(--blush-100);
    font-size: 13px;
    font-weight: 500;
    padding: 9px 16px;
    text-align: center;
    position: relative;
    z-index: 1020;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.announcement-bar a.announcement-link {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
    margin-left: 6px;
}
.announcement-bar a.announcement-link:hover {
    color: var(--blush-200);
}

/* Site Header */
.site-header {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

/* Desktop Nav */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--plum-700);
    transition: width 0.25s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--plum-700);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Mobile Toggle */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--plum-800);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
}

/* Mobile Off-canvas Nav */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(41, 8, 24, 0.45);
    backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    padding: 24px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.open {
    transform: translateX(-320px);
}
.mobile-nav-overlay.open {
    display: block;
    opacity: 1;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.drawer-close-btn {
    background: none;
    border: none;
    color: var(--plum-800);
    cursor: pointer;
    padding: 6px;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: auto;
}

.mobile-nav-link {
    display: block;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-main);
}
.mobile-nav-link:hover, .mobile-nav-link.active {
    background: var(--blush-100);
    color: var(--plum-800);
    font-weight: 600;
}

.mobile-drawer-footer {
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

/* ==========================================================================
   Homepage Sections
   ========================================================================== */

/* Hero Section */
.hero-section {
    padding: 64px 0 80px;
    background: linear-gradient(170deg, var(--blush-100) 0%, var(--cream-100) 55%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--white);
    border: 1px solid var(--blush-200);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--plum-700);
    margin-bottom: 20px;
    box-shadow: var(--shadow-xs);
}

.hero-title {
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

.hero-highlights {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-card);
}

.hero-highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--text-muted);
    font-weight: 500;
}
.hero-highlight-item .icon {
    color: var(--plum-600);
}

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

.hero-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
    border: 8px solid var(--white);
    width: 100%;
    max-width: 460px;
}

.hero-image-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 8px);
}

.hero-floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatAnim 4s ease-in-out infinite;
}

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

.floating-icon {
    width: 40px;
    height: 40px;
    background: var(--blush-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-800);
}

.floating-text strong {
    display: block;
    font-size: 14px;
    color: var(--plum-900);
}
.floating-text span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Section Common Styling */
.section {
    padding: 80px 0;
}

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

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 52px;
}

.section-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--plum-600);
    margin-bottom: 10px;
}

.section-title {
    margin-bottom: 14px;
}

.section-lead {
    font-size: 16px;
    color: var(--text-muted);
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 24px;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xs);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--blush-300);
}

.category-icon-box {
    width: 64px;
    height: 64px;
    background: var(--blush-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-700);
    margin-bottom: 16px;
    transition: background 0.3s ease;
}

.category-card:hover .category-icon-box {
    background: var(--blush-200);
}

.category-title {
    font-size: 17px;
    margin-bottom: 6px;
    color: var(--plum-800);
}

.category-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Product Cards Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 28px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-card);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--blush-300);
}

.product-image-wrap {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect ratio */
    overflow: hidden;
    background: var(--cream-100);
}

.product-image-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.badge-discount {
    background: var(--plum-700);
    color: var(--white);
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
}

.badge-availability {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    text-transform: capitalize;
}

.badge-available {
    background: rgba(30, 130, 76, 0.9);
    color: var(--white);
}

.badge-made-to-order {
    background: rgba(211, 84, 0, 0.9);
    color: var(--white);
}

.badge-out-of-stock {
    background: rgba(120, 120, 120, 0.9);
    color: var(--white);
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category-name {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--plum-500);
    margin-bottom: 6px;
}

.product-title {
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.35;
}

.product-title a:hover {
    color: var(--plum-600);
}

.product-sku {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: auto;
    margin-bottom: 16px;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--plum-800);
}

.regular-price-crossed {
    font-size: 14.5px;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    gap: 8px;
}

/* Brand Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.benefit-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    text-align: center;
    box-shadow: var(--shadow-xs);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: var(--blush-100);
    color: var(--plum-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.benefit-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--plum-800);
}

.benefit-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Custom Bouquet Section */
.custom-bouquet-box {
    background: linear-gradient(135deg, var(--blush-100) 0%, var(--white) 100%);
    border: 1px solid var(--blush-200);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.custom-bouquet-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0 32px;
}

.custom-feat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--plum-800);
}
.custom-feat-item .icon {
    color: var(--plum-600);
}

.custom-bouquet-preview {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 6px solid var(--white);
}

.custom-bouquet-preview img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

/* WhatsApp Banner Section */
.cta-banner {
    background: linear-gradient(135deg, var(--plum-800) 0%, var(--plum-900) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 14px;
}

.cta-banner p {
    color: var(--blush-100);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 28px;
    opacity: 0.95;
}

/* ==========================================================================
   Shop Page & Filters
   ========================================================================== */

.shop-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    margin-bottom: 36px;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill-btn {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    background: var(--cream-100);
    color: var(--text-main);
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.pill-btn:hover {
    background: var(--blush-100);
    color: var(--plum-700);
}

.pill-btn.active {
    background: var(--plum-700);
    color: var(--white);
}

.shop-counter {
    font-size: 14px;
    color: var(--text-muted);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px dashed var(--border-card);
}
.empty-state-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    color: var(--blush-400);
}

/* ==========================================================================
   Product Details Page
   ========================================================================== */

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 52px;
    align-items: start;
    margin-bottom: 64px;
}

/* Gallery */
.gallery-wrapper {
    position: sticky;
    top: 100px;
}

.main-image-viewport {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-sm);
    cursor: zoom-in;
    padding-top: 100%;
}

.main-image-viewport img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-row {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.thumbnail-item {
    width: 76px;
    height: 76px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    flex-shrink: 0;
    background: var(--white);
    transition: all 0.2s ease;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-item.active {
    border-color: var(--plum-700);
    box-shadow: var(--shadow-sm);
}

/* Detail Info */
.detail-meta-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.detail-sku {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.detail-title {
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    margin-bottom: 16px;
}

.detail-price-card {
    background: var(--blush-50);
    border: 1px solid var(--blush-200);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.detail-current-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--plum-900);
}

.detail-regular-price {
    font-size: 20px;
    color: var(--text-light);
    text-decoration: line-through;
}

.detail-discount-badge {
    background: var(--plum-700);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.detail-short-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Delivery Informational Box */
.delivery-info-pill {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 28px;
}

.delivery-pill-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14.5px;
    color: var(--plum-800);
    margin-bottom: 8px;
}

.delivery-rates {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13.5px;
    color: var(--text-muted);
}

.free-delivery-tag {
    margin-top: 8px;
    display: inline-block;
    background: var(--blush-100);
    color: var(--plum-800);
    font-size: 12.5px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

/* WhatsApp Order Controls */
.order-controls-box {
    background: var(--white);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.quantity-control label {
    font-weight: 600;
    font-size: 14.5px;
    color: var(--text-main);
}

.qty-counter {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-full);
    background: var(--cream-100);
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-800);
    transition: background 0.2s ease;
}

.qty-btn:hover {
    background: var(--blush-200);
}

.qty-input {
    width: 44px;
    text-align: center;
    font-weight: 600;
    border: none;
    background: transparent;
}

.qty-input:focus {
    outline: none;
}

.order-whatsapp-btn {
    width: 100%;
    min-height: 52px;
    font-size: 16px;
}

.whatsapp-instruction {
    text-align: center;
    font-size: 12.5px;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Product Tabs / Details */
.detail-full-description {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 32px;
    line-height: 1.8;
}

.detail-full-description h3 {
    margin-bottom: 16px;
    font-size: 20px;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(41, 8, 24, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.lightbox-modal.open {
    display: flex;
}
.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}
.lightbox-close {
    position: absolute;
    top: -44px;
    right: 0;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

/* ==========================================================================
   About & Contact Pages
   ========================================================================== */

.story-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.story-content h2 {
    margin-bottom: 18px;
}
.story-content p {
    font-size: 16.5px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 18px;
}

.story-image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-md);
}

.story-image-card img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xs);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: var(--blush-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-700);
    flex-shrink: 0;
}

.contact-item-text strong {
    display: block;
    font-size: 15px;
    color: var(--plum-900);
    margin-bottom: 4px;
}
.contact-item-text a, .contact-item-text span {
    font-size: 14.5px;
    color: var(--text-muted);
}
.contact-item-text a:hover {
    color: var(--plum-700);
    text-decoration: underline;
}

.social-links-row {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.social-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--cream-100);
    color: var(--plum-800);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    transition: all 0.25s ease;
}

.social-btn:hover {
    background: var(--plum-700);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

/* Custom Order Inquiry Form/Box on Contact Page */
.custom-inquiry-box {
    background: linear-gradient(145deg, var(--blush-50), var(--white));
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--blush-200);
    box-shadow: var(--shadow-xs);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--plum-900);
    color: var(--blush-100);
    margin-top: auto;
    padding-top: 64px;
    border-top: 3px solid var(--plum-700);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 0.9fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand img {
    height: 42px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 14px;
    color: #DFCDD4;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

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

.footer-links a {
    font-size: 14px;
    color: #DFCDD4;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
    color: #DFCDD4;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-item .icon {
    color: var(--blush-300);
    margin-top: 2px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.footer-social-btn:hover {
    background: var(--wa-green);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    font-size: 13.5px;
    color: #BDA6B0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.footer-credit a {
    color: var(--blush-200);
    font-weight: 600;
    text-decoration: underline;
}

.footer-credit a:hover {
    color: var(--white);
}

/* ==========================================================================
   Responsive Breakpoints & Mobile Optimization
   Tested at 375px, 430px, 768px, 1024px, 1440px
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-highlights {
        justify-content: center;
    }
    .hero-floating-card {
        left: 10px;
        bottom: -15px;
    }
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .gallery-wrapper {
        position: static;
        max-width: 520px;
        margin: 0 auto;
    }
    .story-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 860px) {
    .nav-desktop {
        display: none;
    }
    .mobile-nav-toggle {
        display: block;
    }
    .custom-bouquet-box {
        grid-template-columns: 1fr;
        padding: 36px 24px;
        gap: 32px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    :root {
        --header-height: 66px;
    }
    .section {
        padding: 52px 0;
    }
    .hero-section {
        padding: 40px 0 60px;
    }
    .hero-image-card img {
        height: 340px;
    }
    .hero-floating-card {
        display: none; /* Avoid screen clutter on small phones */
    }
    .product-grid {
        grid-template-columns: 1fr; /* Single column on 375px/430px */
        gap: 20px;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .category-card {
        padding: 16px 12px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .announcement-bar {
        font-size: 12px;
        padding: 8px 12px;
    }
    .detail-price-card {
        flex-direction: column;
        gap: 8px;
    }
}

