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

:root {
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Poppins', sans-serif;

    /* Color Palette */
    --bg-primary: #FFFDF9;
    --bg-secondary: #F5EFEB;
    --text-primary: #2A2825;
    --text-secondary: #6E665F;
    
    --accent-rose: #D28D7D;
    --accent-rose-hover: #C57B6B;
    --accent-rose-dark: #B25E50;
    --accent-rose-light: #F9EBE8;
    
    --accent-green: #7A8E73;
    --accent-green-light: #EFF2EE;
    --accent-gold: #E0A96D;
    --white: #FFFFFF;
    --black: #000000;
    --border-color: #EAE3DC;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(110, 102, 95, 0.05);
    --shadow-md: 0 8px 24px rgba(110, 102, 95, 0.08);
    --shadow-lg: 0 16px 40px rgba(110, 102, 95, 0.12);

    /* Border Radii */
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-normal: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

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

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

ul {
    list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-rose);
}

/* Header & Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-normal);
    background: rgba(255, 253, 249, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 48px;
    width: 48px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-left: 0.5rem;
    letter-spacing: 1px;
    display: none; /* Logo image contains text already */
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-item {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    cursor: pointer;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-rose-dark);
    transition: var(--transition-fast);
}

.nav-item:hover {
    color: var(--accent-rose-dark);
}

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

.nav-item.active {
    color: var(--accent-rose-dark);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.icon-btn:hover {
    background-color: rgba(210, 141, 125, 0.1);
    color: var(--accent-rose-dark);
}

.icon-btn svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.8;
    fill: none;
    stroke: currentColor;
}

.badge-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--accent-rose-dark);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Nav Toggle */
.mobile-menu-toggle {
    display: none;
}

/* Page Section Wrapper & Header Offset Gap */
main {
    padding-top: 98px;
}

.page-section {
    display: none;
    min-height: calc(100vh - 98px);
}

.page-section.active {
    display: block;
    animation: fadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Section Common Styling */
.section-padding {
    padding: 2.8rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
    font-size: 0.98rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Hero Section Redesign: Full 3 Pictures Banner Slider + Action Bar Below */
.hero-section {
    position: relative;
    width: 100%;
    margin-top: 0;
    background-color: var(--bg-primary);
    overflow: hidden;
}

.hero-slider-container {
    position: relative;
    
    width: 100%;
    overflow: hidden;
    background-color: var(--bg-secondary);
}

.hero-slider-track {
    display: flex;
    width: 300%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.hero-slide {
    width: 33.3333%;
    position: relative;
    flex-shrink: 0;
}

.hero-slide img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Action Bar Below Image */
.hero-actions-bar {
    padding: 1.8rem 1.5rem;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.hero-slider-dots {
    display: flex;
    gap: 0.8rem;
}

.hero-slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.hero-slider-dots .dot.active {
    background-color: var(--accent-rose-dark);
    transform: scale(1.3);
}

.hero-btn-group {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: 0;
    }
    
    .hero-slide img {
        max-height: 380px;
        object-fit: contain;
        background-color: #FDF7F4;
    }
    
    .hero-actions-bar {
        padding: 1.5rem 1rem;
    }
    
    .hero-btn-group {
        width: 100%;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-btn-group .btn {
        width: 100%;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary {
    background-color: var(--accent-rose-dark);
    color: var(--white);
    border: 2px solid var(--accent-rose-dark);
}

.btn-primary:hover {
    background-color: var(--accent-rose-hover);
    border-color: var(--accent-rose-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

/* Features Grid */
.features-section {
    background-color: var(--bg-secondary);
    padding: 2.2rem 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    text-align: center;
    padding: 1.5rem 1.2rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.feature-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--accent-rose-light);
    color: var(--accent-rose-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon-wrapper svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.8;
}

.feature-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.feature-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

/* Bestsellers Home Section */
.bestsellers-home {
    background-color: var(--bg-primary);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-normal);
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    background-color: var(--accent-rose-dark);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
}

.product-card-wishlist-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: var(--white);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.product-card-wishlist-btn:hover {
    color: var(--accent-rose-dark);
    transform: scale(1.1);
}

.product-card-wishlist-btn.active {
    color: var(--accent-rose-dark);
}

.product-card-wishlist-btn.active svg {
    fill: var(--accent-rose-dark);
}

.product-image-container {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    background-color: var(--bg-secondary);
    overflow: hidden;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.product-actions-bar {
    padding: 0.8rem 1rem 0;
    display: flex;
    gap: 0.5rem;
    background: var(--white);
}

.product-actions-bar .btn {
    padding: 0.6rem 0.8rem;
    font-size: 0.78rem;
    flex: 1;
    border-radius: var(--radius-md);
    white-space: nowrap;
}

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

.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.product-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.product-card-rating {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-bottom: 0.8rem;
    font-size: 0.8rem;
    color: var(--accent-gold);
}

.product-card-rating span {
    color: var(--text-secondary);
    margin-left: 0.3rem;
}

.product-card-price-row {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
}

.price-current {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--accent-rose-dark);
}

.price-original {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

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

/* Shop Section Styling */
.shop-filters-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.8rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-categories {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--accent-rose-dark);
    color: var(--white);
    border-color: var(--accent-rose-dark);
}

.sort-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.sort-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.sort-select {
    padding: 0.4rem 1.5rem 0.4rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--white);
    outline: none;
    font-size: 0.85rem;
    cursor: pointer;
}

/* Bouquet Builder Configurator */
.builder-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-top: 1.5rem;
}

.builder-preview-col {
    background-color: var(--bg-secondary);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border-color);
    position: relative;
    min-height: 480px;
}

.builder-canvas-wrapper {
    width: 100%;
    max-width: 400px;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.builder-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 8px 16px rgba(110, 102, 95, 0.1));
}

.builder-preview-info {
    position: absolute;
    bottom: 1.5rem;
    text-align: center;
}

.builder-preview-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.builder-preview-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-rose-dark);
}

.builder-options-col {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    max-height: 700px;
    overflow-y: auto;
}

.builder-step-header {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    color: var(--accent-rose-dark);
}

.builder-option-section {
    margin-bottom: 2.2rem;
}

.builder-section-title {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
}

.builder-section-title span {
    color: var(--accent-rose-dark);
}

/* Wrap Option Styling */
.wrap-color-grid {
    display: flex;
    gap: 1rem;
}

.wrap-color-option {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 1px var(--border-color);
    transition: var(--transition-fast);
}

.wrap-color-option.active {
    box-shadow: 0 0 0 2px var(--accent-rose-dark);
    transform: scale(1.1);
}

/* Flower Select List */
.flower-selector-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.flower-selector-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.flower-selector-item:hover {
    border-color: var(--accent-rose);
}

.flower-color-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.flower-meta {
    display: flex;
    flex-direction: column;
}

.flower-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.flower-price {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    overflow: hidden;
    background-color: var(--bg-primary);
}

.qty-btn {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-fast);
}

.qty-btn:hover {
    background-color: var(--border-color);
    color: var(--accent-rose-dark);
}

.qty-val {
    width: 28px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Ribbon Select */
.ribbon-select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    outline: none;
    background-color: var(--white);
}

/* Gift Card Textarea */
.gift-card-textarea {
    width: 100%;
    height: 90px;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    outline: none;
    resize: none;
    font-size: 0.85rem;
}

.builder-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Story Section */
.story-section {
    background-color: var(--bg-primary);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2.5rem;
    align-items: center;
}

.story-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.story-card-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.story-founder {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.story-role {
    font-size: 0.8rem;
    color: var(--accent-rose-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-content h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.story-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Slide-over Drawers (Cart and Wishlist) */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(42, 40, 37, 0.4);
    backdrop-filter: blur(4px);
    z-index: 200;
    display: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-normal);
}

.drawer-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-lg);
    z-index: 201;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.drawer.active {
    transform: translateX(-420px);
}

@media (max-width: 450px) {
    .drawer {
        max-width: 100%;
        right: -100%;
    }
    .drawer.active {
        transform: translateX(-100%);
    }
}

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

.drawer-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
}

.drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.drawer-close:hover {
    background-color: var(--bg-secondary);
}

.drawer-close svg {
    width: 20px;
    height: 20px;
}

.drawer-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Empty Drawer State */
.drawer-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 100%;
}

.drawer-empty-icon {
    width: 64px;
    height: 64px;
    color: var(--border-color);
}

.drawer-empty-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Drawer Item Cards */
.drawer-item-card {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.drawer-item-img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    object-fit: cover;
    background-color: var(--bg-secondary);
}

.drawer-item-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.drawer-item-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.drawer-item-meta {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.drawer-item-price {
    font-weight: 600;
    color: var(--accent-rose-dark);
    margin-bottom: 0.5rem;
}

.drawer-item-action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.drawer-item-remove-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.75rem;
    cursor: pointer;
    text-decoration: underline;
    transition: var(--transition-fast);
}

.drawer-item-remove-btn:hover {
    color: var(--accent-rose-dark);
}

.drawer-footer {
    padding: 1.5rem;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.drawer-price-summary {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.drawer-price-val {
    color: var(--accent-rose-dark);
}

/* Modals (Quick View and Checkout Wizard) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(42, 40, 37, 0.5);
    backdrop-filter: blur(6px);
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-normal);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--bg-primary);
    width: 100%;
    max-width: 800px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    animation: modalScaleUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes modalScaleUp {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: var(--white);
    border: 1px solid var(--border-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    background-color: var(--bg-secondary);
    color: var(--accent-rose-dark);
}

.modal-body-scroll {
    overflow-y: auto;
    padding: 2.5rem;
}

/* Quick View Layout */
.quick-view-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.qv-image-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--bg-secondary);
    padding-top: 100%;
    position: relative;
}

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

.qv-info {
    display: flex;
    flex-direction: column;
}

.qv-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.qv-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.qv-rating {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    color: var(--accent-gold);
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
}

.qv-rating span {
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

.qv-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.qv-price-current {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-rose-dark);
}

.qv-price-original {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.qv-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.qv-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.qv-actions .quantity-controls {
    height: 48px;
}

.qv-actions .qty-btn {
    width: 36px;
    height: 48px;
}

.qv-actions .qty-val {
    width: 36px;
}

.qv-actions .btn {
    flex-grow: 1;
    height: 48px;
}

/* Checkout Wizard Layout */
.checkout-modal-content {
    max-width: 550px;
}

.checkout-header {
    padding: 1.5rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.checkout-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 1rem;
}

.checkout-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
    transform: translateY(-50%);
}

.checkout-progress-bar {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent-rose-dark);
    z-index: 2;
    transform: translateY(-50%);
    transition: var(--transition-normal);
}

.checkout-step-indicator {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    position: relative;
    z-index: 3;
    transition: var(--transition-normal);
}

.checkout-step-indicator.active {
    border-color: var(--accent-rose-dark);
    background-color: var(--accent-rose-dark);
    color: var(--white);
}

.checkout-step-indicator.completed {
    border-color: var(--accent-green);
    background-color: var(--accent-green);
    color: var(--white);
}

.checkout-form-step {
    display: none;
}

.checkout-form-step.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

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

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

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

.form-group input,
.form-group select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--white);
    outline: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-rose-dark);
    box-shadow: 0 0 0 3px rgba(178, 94, 80, 0.15);
}

/* Order Summary Mini-Table */
.checkout-summary-box {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}

.summary-row:last-child {
    margin-bottom: 0;
    padding-top: 0.6rem;
    border-top: 1px solid var(--border-color);
    font-weight: 700;
    font-size: 1rem;
}

.checkout-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    position: sticky;
    bottom: -2.5rem;
    background-color: var(--bg-primary);
    padding: 1.5rem 0;
    z-index: 10;
}

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

/* Success Confirmation Screen */
.success-screen {
    text-align: center;
    padding: 1.2rem 0.5rem;
}

.success-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #E8F8EF;
    color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
}

.success-icon-wrapper svg {
    width: 36px;
    height: 36px;
}

.success-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.success-desc {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.88rem;
    line-height: 1.45;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.success-details {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 0.85rem 1.2rem;
    text-align: left;
    margin-bottom: 1.2rem;
    border: 1px solid var(--border-color);
}

.success-detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.86rem;
    margin-bottom: 0.4rem;
}

.success-detail-row:last-child {
    margin-bottom: 0;
    font-weight: 600;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
}

.btn-success-wa {
    background: linear-gradient(135deg, #25D366, #1DA851) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 0.65rem 1.2rem !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.6rem !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
}

.btn-success-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45) !important;
    background: linear-gradient(135deg, #22c55e, #16a34a) !important;
}

.btn-success-wa svg {
    flex-shrink: 0;
}

.btn-outline-store {
    background: transparent !important;
    color: var(--text-secondary) !important;
    border: 1px solid var(--border-color) !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.84rem !important;
    font-weight: 500 !important;
    border-radius: 50px !important;
    transition: all 0.2s ease !important;
    cursor: pointer;
}

.btn-outline-store:hover {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    border-color: var(--text-secondary) !important;
}

/* Footer Section */
footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 2rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2.5rem;
}

.footer-col-about p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1.2rem;
    line-height: 1.7;
}

.footer-col-title {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.footer-col-newsletter p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex-grow: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    outline: none;
    font-size: 0.85rem;
}

.newsletter-input:focus {
    border-color: var(--accent-rose-dark);
}

.newsletter-form .btn {
    padding: 0.75rem 1.2rem;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.developer-credit {
    margin-top: 0.3rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.dev-link {
    color: var(--accent-rose-dark);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-fast);
}

.dev-link:hover {
    color: var(--accent-rose);
    text-decoration: underline;
}

.footer-payment-methods {
    display: flex;
    gap: 0.5rem;
}

.footer-payment-methods svg {
    width: 38px;
    height: 24px;
    color: var(--text-secondary);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 95px;
    right: 1.5rem;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    pointer-events: none;
}

.toast {
    background-color: var(--text-primary);
    color: var(--white);
    padding: 0.8rem 1.4rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.88rem;
    font-weight: 500;
    animation: toastSlideDown 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-width: 240px;
    pointer-events: auto;
}

@keyframes toastSlideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.toast-success {
    border-left: 4px solid var(--accent-green);
}

.toast-info {
    border-left: 4px solid var(--accent-rose);
}

.toast svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Contact Us Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
    margin-top: 1.5rem;
}

.contact-info-col {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.contact-info-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.contact-detail-item span {
    word-break: break-word;
    overflow-wrap: anywhere;
}

.contact-detail-item svg {
    width: 24px;
    height: 24px;
    color: var(--accent-rose-dark);
    flex-shrink: 0;
}

.contact-socials-row {
    display: flex;
    gap: 1.2rem;
}

.social-icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    background-color: var(--bg-primary);
}

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

.social-icon-btn.whatsapp:hover {
    background-color: #25D366;
    color: var(--white) !important;
    border-color: #25D366 !important;
}

.social-icon-btn.instagram:hover {
    background-color: #E1306C;
    color: var(--white) !important;
    border-color: #E1306C !important;
}

.social-icon-btn.facebook:hover {
    background-color: #1877F2;
    color: var(--white) !important;
    border-color: #1877F2 !important;
}

.contact-form-col {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.header-social-link {
    display: flex;
}

/* 9:16 Video Showcase Section */
.video-showcase-section {
    background-color: var(--bg-primary);
}

.video-showcase-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.2rem 2.5rem;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    align-items: center;
}

.video-showcase-info {
    display: flex;
    flex-direction: column;
}

.text-left {
    text-align: left !important;
    margin-left: 0 !important;
}

.video-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.vf-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.vf-icon {
    font-size: 1.4rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--accent-rose-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vf-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.vf-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.video-container-916 {
    display: flex;
    justify-content: center;
}

.reel-frame {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9 / 16;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    background-color: var(--black);
}

.reel-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(42, 40, 37, 0.75);
    backdrop-filter: blur(6px);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-full);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Video Reels Slider Section */
.video-slider-section {
    background-color: var(--bg-secondary);
    overflow: hidden;
}

.video-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 0.5rem;
}

.video-slider-viewport {
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
}

.video-slider-track {
    display: flex;
    gap: 0.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.video-reel-item {
    flex: 0 0 calc(33.3333% - 0.34rem);
    min-width: 0;
    box-sizing: border-box;
}

.reel-card-916 {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--white);
    background-color: var(--black);
    transition: var(--transition-normal);
}

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

.reel-card-916 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: var(--white);
    pointer-events: none;
}

.reel-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-rose);
    font-weight: 600;
}

.reel-title {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.2rem;
}

.v-slider-arrow {
    background: var(--white);
    border: 1px solid var(--border-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 10;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.v-slider-arrow:hover {
    background-color: var(--accent-rose-dark);
    color: var(--white);
    border-color: var(--accent-rose-dark);
}

.v-slider-arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-secondary);
    overflow: hidden;
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.testimonials-slider-container {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    overflow: hidden;
    padding: 1rem 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 200%; /* 2 slides view */
}

.testimonial-slide {
    width: 50%; /* 2 columns side-by-side */
    padding: 0 0.5rem;
    flex-shrink: 0;
}

.testimonial-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2.5rem;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    align-items: stretch;
}

.testimonial-image-box {
    position: relative;
    width: 100%;
    min-height: 350px;
}

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

.testimonial-text-box {
    padding: 3rem 3rem 3rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-rose-dark);
}

.testimonial-location {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

/* Search Modal & Cart Upsell Styles */
.search-modal-content {
    max-width: 750px;
}

.search-header {
    padding: 1.5rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.search-input-box {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background-color: var(--bg-secondary);
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
}

.search-input-box input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 1rem;
}

.cart-upsell-section {
    padding: 0.5rem 1rem;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.cart-upsell-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

.cart-upsell-container {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.upsell-item-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--white);
    padding: 0.35rem 0.6rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.upsell-item-img {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.upsell-item-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
}

.upsell-item-title {
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.upsell-item-price {
    font-size: 0.72rem;
    color: var(--accent-rose-dark);
    font-weight: 700;
}

.upsell-add-btn {
    padding: 0.2rem 0.55rem;
    font-size: 0.7rem;
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .video-showcase-card {
        grid-template-columns: 1fr 260px;
        padding: 2rem 1.5rem;
        gap: 1.8rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 900px) {
    .header-social-link {
        display: none; /* Hide header social icons on mobile for space */
    }

    .testimonial-content-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .testimonial-image-box {
        min-height: 300px;
    }

    .testimonial-text-box {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0.8rem 1.2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        display: flex;
        order: -1;
        margin-right: 0.5rem;
    }

    .logo-link {
        margin-right: auto;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 253, 249, 0.98);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border-color);
        padding: 0.5rem 0;
        box-shadow: var(--shadow-md);
        gap: 0;
        z-index: 99;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-item {
        width: 100%;
        padding: 1rem 2rem;
        text-align: left;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-item::after {
        display: none; /* Hide hover line on mobile menu */
    }

    .mobile-menu-toggle {
        display: block;
    }

    main {
        padding-top: 80px;
    }

    .hero-section {
        margin-top: 0;
        padding: 0;
        height: auto;
        min-height: 0;
    }

    .section-padding {
        padding: 2.2rem 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .quick-view-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modal-body-scroll {
        padding: 1.5rem;
    }

    .contact-info-col, .contact-form-col {
        padding: 1.2rem;
        width: 100%;
        box-sizing: border-box;
    }

    .modal-overlay {
        padding: 1rem;
    }

    .checkout-modal-content {
        max-height: 95vh;
    }

    .video-showcase-card {
        grid-template-columns: 1fr 180px;
        padding: 1.2rem 1rem;
        gap: 1rem;
    }
    .video-showcase-info .section-title {
        font-size: 1.4rem;
    }
    .video-showcase-info .section-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    .video-features-list {
        gap: 0.6rem;
        margin-top: 0.6rem;
    }
    .vf-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    .vf-item h4 {
        font-size: 0.82rem;
    }
    .vf-item p {
        font-size: 0.72rem;
    }
    .video-showcase-info .btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.72rem;
        margin-top: 0.8rem !important;
    }
}

@media (max-width: 480px) {
    .video-showcase-card {
        grid-template-columns: 1fr 135px;
        padding: 0.8rem 0.6rem;
        gap: 0.6rem;
    }
    .video-showcase-info .section-title {
        font-size: 1.15rem;
        line-height: 1.25;
        margin-bottom: 0.3rem;
    }
    .video-showcase-info .section-subtitle {
        font-size: 0.72rem;
        line-height: 1.35;
        margin-bottom: 0.4rem;
    }
    .video-features-list {
        gap: 0.4rem;
        margin-top: 0.4rem;
    }
    .vf-item {
        gap: 0.4rem;
    }
    .vf-icon {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
    .vf-item h4 {
        font-size: 0.75rem;
    }
    .vf-item p {
        font-size: 0.65rem;
        line-height: 1.25;
    }
    .video-showcase-info .btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.65rem;
        margin-top: 0.6rem !important;
    }
    .reel-frame {
        max-width: 135px;
        border-width: 2px;
    }
    .reel-badge {
        font-size: 0.5rem;
        padding: 0.15rem 0.4rem;
        top: 0.4rem;
        right: 0.4rem;
    }
    .section-padding {
        padding: 1.8rem 0.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .product-actions-bar {
        padding: 0.4rem 0.4rem 0;
        flex-direction: column;
        gap: 0.3rem;
    }

    .product-actions-bar .btn {
        padding: 0.45rem 0.3rem;
        font-size: 0.68rem;
    }

    .product-details {
        padding: 0.7rem 0.6rem;
    }

    .product-card-title {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }

    .price-current {
        font-size: 1.05rem;
    }

    .video-reel-item {
        flex: 0 0 calc(33.3333% - 0.34rem);
        min-width: 0;
    }

    .reel-info-overlay {
        padding: 0.6rem 0.4rem;
    }

    .reel-tag {
        font-size: 0.55rem;
    }

    .reel-title {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    .v-slider-arrow {
        display: none;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .drawer {
        width: 100%;
    }

    .checkout-header {
        padding: 1rem 1.5rem;
    }

    .testimonials-section {
        padding-top: 1.5rem;
        padding-bottom: 0.8rem;
    }

    footer {
        padding-top: 1.2rem;
    }

    .checkout-actions {
        flex-direction: column;
        gap: 0.8rem;
        bottom: -1.5rem;
        padding: 1rem 0;
        margin-top: 1rem;
    }

    .toast-container {
        top: 85px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: calc(100% - 2rem);
        max-width: 340px;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .newsletter-input, .newsletter-form .btn {
        width: 100% !important;
        box-sizing: border-box;
    }

    .contact-info-col, .contact-form-col {
        padding: 1rem 0.85rem;
    }

    .contact-info-card h3 {
        font-size: 1.5rem;
    }

    .contact-detail-item {
        font-size: 0.88rem;
        gap: 0.6rem;
    }

    /* Mobile-optimized Step 3 - No Scroll */
    .success-screen {
        padding: 0.5rem 0.2rem;
    }
    .success-icon-wrapper {
        width: 48px;
        height: 48px;
        margin-bottom: 0.4rem;
    }
    .success-icon-wrapper svg {
        width: 26px;
        height: 26px;
    }
    .success-title {
        font-size: 1.5rem;
        margin-bottom: 0.2rem;
    }
    .success-desc {
        font-size: 0.78rem;
        margin-bottom: 0.6rem;
        line-height: 1.35;
    }
    .success-details {
        padding: 0.55rem 0.85rem;
        margin-bottom: 0.75rem;
    }
    .success-detail-row {
        font-size: 0.78rem;
        margin-bottom: 0.2rem;
    }
    .btn-success-wa {
        padding: 0.55rem 1rem !important;
        font-size: 0.85rem !important;
    }
    .btn-outline-store {
        padding: 0.45rem 0.8rem !important;
        font-size: 0.78rem !important;
    }
}

