@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Quicksand:wght@300..700&display=swap');

/* Root Variables - Mockup Palette */
:root {
    --color-primary: #c89a90;          /* Warm peach-mauve */
    --color-primary-dark: #b08278;     /* Deeper peach-mauve */
    --color-primary-light: #fdf0f0;    /* Soft padded pink frame background */
    --color-secondary: #a39594;        /* Muted taupe-brown */
    --color-accent: #f5e6d3;           /* Soft Cream */
    --color-dark: #4a3e3d;             /* Deep warm brown text */
    --color-light: #faf6f0;            /* Creamy warm vanilla backdrop */
    --color-white: #ffffff;
    --color-border: rgba(200, 154, 144, 0.15); /* Light pink-beige border */
    
    --font-primary: 'Playfair Display', Georgia, serif;
    --font-secondary: 'Quicksand', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    --box-shadow: 0 10px 30px rgba(74, 62, 61, 0.05);
    --box-shadow-hover: 0 15px 35px rgba(200, 154, 144, 0.18);
    
    --glass-bg: rgba(255, 255, 255, 0.45);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px rgba(74, 62, 61, 0.06);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10px, -15px) scale(1.05); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.3) rotate(25deg); }
}

@keyframes cartBounce {
    0%, 100% { transform: scale(1); }
    40% { transform: scale(1.25) translateY(-8px); }
    70% { transform: scale(0.9) translateY(2px); }
}

@keyframes heartPop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.4); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes toastSlide {
    0% { transform: translateY(100px) translateX(-50%); opacity: 0; }
    15% { transform: translateY(0) translateX(-50%); opacity: 1; }
    85% { transform: translateY(0) translateX(-50%); opacity: 1; }
    100% { transform: translateY(-20px) translateX(-50%); opacity: 0; }
}

/* ==========================================
   RESET & GLOBAL STYLES
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-light);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(253, 240, 240, 0.8) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(245, 230, 211, 0.6) 0%, transparent 45%);
    background-attachment: fixed;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--color-primary-dark);
}

h1, h2, h3, h4 {
    font-family: var(--font-primary);
    color: var(--color-dark);
    font-weight: 600;
}

/* ==========================================
   FLOATING HEADER & NAVIGATION (True Liquid Glass Sheen)
   ========================================== */

.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
    pointer-events: none;
}

.header {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.2) 100%);
    border: 1px solid rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    box-shadow: 
        inset 0 1px 1px rgba(255, 255, 255, 0.95),
        inset 0 12px 24px -6px rgba(255, 255, 255, 0.65),
        inset 0 -12px 24px -6px rgba(255, 255, 255, 0.18),
        0 15px 35px -5px rgba(74, 62, 61, 0.12),
        0 5px 15px -5px rgba(0, 0, 0, 0.06);
    border-radius: 50px;
    max-width: 1120px;
    width: 92%;
    margin: 0 auto;
    pointer-events: auto;
    transition: var(--transition);
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    height: 48%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.06) 85%, rgba(255, 255, 255, 0) 100%);
    border-radius: 24px 24px 0 0;
    pointer-events: none;
    z-index: 1;
}

.header:hover {
    box-shadow: 
        inset 0 1px 1px rgba(255, 255, 255, 0.95),
        inset 0 16px 30px -4px rgba(255, 255, 255, 0.75),
        inset 0 -16px 30px -4px rgba(255, 255, 255, 0.22),
        0 20px 45px -5px rgba(74, 62, 61, 0.16),
        0 6px 18px -4px rgba(0, 0, 0, 0.08);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 2rem;
}

.logo {
    position: relative;
    z-index: 2;
}

.logo a {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.logo h1 {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
    letter-spacing: -0.5px;
}

.logo p {
    font-size: 0.7rem;
    color: var(--color-primary);
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 1.8rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.nav-link {
    font-size: 0.85rem;
    color: var(--color-dark);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 0.3rem 0.2rem;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 12px;
    height: 2px;
    background-color: var(--color-primary);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

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

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Nav Icons Menu (Search, Account, Cart) */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 0.5rem;
    position: relative;
    z-index: 2;
}

.nav-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-dark);
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 50%;
}

.nav-icon-btn:hover {
    background-color: rgba(255,255,255,0.6);
    color: var(--color-primary);
    transform: scale(1.08);
}

.nav-icon-btn svg {
    width: 19px;
    height: 19px;
}

/* Cart Button specific */
.nav-cart-btn-wrapper {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background-color: var(--color-primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(200, 154, 144, 0.4);
    animation: heartPop 0.4s ease-out;
}

/* ==========================================
   HERO SECTION (Mockup Bokeh & Static Organic Glass Panel)
   ========================================== */

.hero {
    background: 
        radial-gradient(circle at 25% 30%, #fcedd8 0%, transparent 28%),
        radial-gradient(circle at 75% 25%, #fde0e4 0%, transparent 25%),
        radial-gradient(circle at 45% 70%, rgba(255, 255, 255, 0.45) 0%, transparent 40%),
        linear-gradient(180deg, #fff2f2 0%, #faf6f0 100%);
    padding: 4.5rem 2rem 5.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
    border-bottom: 2px dashed var(--color-border);
}

.hero-sparkle {
    position: absolute;
    pointer-events: none;
    animation: sparkle 4s ease-in-out infinite;
    font-size: 1.6rem;
    color: rgba(200, 154, 144, 0.5);
}
.sparkle-1 { top: 15%; left: 14%; animation-delay: 0.5s; }
.sparkle-2 { top: 20%; right: 15%; animation-delay: 1.5s; }
.sparkle-3 { bottom: 18%; left: 16%; animation-delay: 2.5s; }
.sparkle-4 { bottom: 14%; right: 14%; animation-delay: 0.2s; }

/* The double-bordered wavy liquid glass panel (STATIC - First Card Does Not Move) */
.hero-glass-panel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.28) 100%);
    border: 2px solid rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 
        inset 0 20px 20px -20px rgba(255, 255, 255, 0.8),
        inset 0 -20px 20px -20px rgba(255, 255, 255, 0.1),
        0 20px 55px rgba(74, 62, 61, 0.08);
    border-radius: 65px 42px 65px 42px; /* Smooth organic blob shape matching mockup */
    padding: 4rem 3rem 4.5rem;
    max-width: 820px;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
}

/* Wavy inner dashed line decoration matching mockup */
.hero-glass-panel::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px dashed rgba(255, 255, 255, 0.55);
    border-radius: 60px 38px 60px 38px;
    pointer-events: none;
}

.hero-glass-panel h2 {
    font-size: 2.8rem;
    color: #4a3e3d;
    margin: 0;
    line-height: 1.15;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-glass-panel .subtext {
    font-size: 1.05rem;
    color: var(--color-secondary);
    margin: 0;
    max-width: 500px;
    line-height: 1.5;
}

/* Rounded pink resin puddle drop at the bottom-left */
.hero-resin-blob {
    position: absolute;
    bottom: -22px;
    left: 45px;
    width: 82px;
    height: 74px;
    background: radial-gradient(circle at 35% 35%, rgba(253, 230, 230, 0.85) 0%, rgba(229, 142, 155, 0.82) 60%, rgba(199, 128, 140, 0.95) 100%);
    border-radius: 54% 46% 52% 48% / 48% 55% 45% 52%;
    border: 2px solid rgba(255, 255, 255, 0.85);
    box-shadow: 
        inset 2px 2px 5px rgba(255, 255, 255, 0.6),
        inset -2px -2px 5px rgba(0, 0, 0, 0.05),
        0 8px 20px rgba(74, 62, 61, 0.15);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-resin-blob::before {
    content: '✨';
    font-size: 1.1rem;
    color: #e5b058;
    text-shadow: 12px 14px 0 #f0c272, -15px 8px 0 #e5b058, 8px -12px 0 rgba(255,255,255,0.7);
    opacity: 0.85;
}

/* Wavy card shop button - gradient matching mockup */
.hero-glass-panel .cta-button {
    background: linear-gradient(135deg, #c7808c 0%, #dca492 100%);
    box-shadow: 0 6px 18px rgba(199, 128, 140, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.85rem 2.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    border-radius: 50px;
}

.hero-glass-panel .cta-button:hover {
    background: linear-gradient(135deg, #b0707c 0%, #c89080 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(199, 128, 140, 0.45);
}

/* Botanical illustrations growing from bottom borders */
.hero-deco-left {
    position: absolute;
    bottom: 12px;
    left: 120px;
    z-index: 5;
    width: 80px !important;
    height: auto;
    color: #556c54 !important;
    opacity: 0.85;
    pointer-events: none;
}

.hero-deco-right {
    position: absolute;
    bottom: 12px;
    right: 90px;
    z-index: 5;
    width: 90px !important;
    height: auto;
    color: #556c54 !important;
    opacity: 0.85;
    pointer-events: none;
}

/* ==========================================
   PRODUCTS SECTION
   ========================================== */

.products-section {
    padding: 3rem 2rem 5rem;
}

.section-title {
    text-align: center;
    color: var(--color-dark);
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--color-secondary);
    font-size: 0.95rem;
    margin-top: 0.4rem;
    margin-bottom: 2.5rem;
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.55rem 1.3rem;
    border: 1px solid var(--color-white);
    background-color: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--color-dark);
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition);
    font-family: var(--font-secondary);
    box-shadow: 0 4px 12px rgba(74, 62, 61, 0.02);
    letter-spacing: 0.3px;
}

.filter-btn:hover {
    background-color: var(--color-white);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-btn.active {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
    border-color: var(--color-primary);
    box-shadow: 0 6px 15px rgba(200, 154, 144, 0.15);
}

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

/* Product Card - Mockup match */
.product-card {
    background-color: var(--color-white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    padding: 12px; /* Thick outline padding */
}

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

/* Image container with soft pink frame background */
.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--color-primary-light);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

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

.category-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    color: var(--color-primary-dark);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    border: 1px solid var(--color-primary);
}

.product-info {
    padding: 1.2rem 0.6rem 0.6rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.product-info h3 {
    margin-bottom: 0.3rem;
    color: var(--color-dark);
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1.3;
}

.product-info h3:hover {
    color: var(--color-primary);
}

.description {
    font-size: 0.8rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    line-height: 1.4;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px dashed rgba(200, 154, 144, 0.15);
}

.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: 0.5px;
}

.add-cart-btn {
    background-color: var(--color-primary);
    border: none;
    color: white;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
}

.add-cart-btn:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 154, 144, 0.25);
}

.add-cart-btn svg {
    width: 13px;
    height: 13px;
}

/* ==========================================
   INTERACTIVE CUSTOMIZER (Personalized resin art)
   ========================================== */

.customizer-section {
    padding: 5rem 2rem;
    background-color: var(--color-white);
    border-top: 1px dashed rgba(200, 154, 144, 0.2);
    border-bottom: 1px dashed rgba(200, 154, 144, 0.2);
}

.customizer-container {
    max-width: 980px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fffcf9 0%, #fffefe 100%);
    border-radius: 35px;
    border: 1px solid rgba(200, 154, 144, 0.25);
    box-shadow: var(--box-shadow);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
}

.customizer-steps {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.step-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.step-title {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-title span {
    background-color: var(--color-primary);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.8rem;
}

.option-card {
    border: 1.5px solid rgba(200, 154, 144, 0.15);
    border-radius: 18px;
    padding: 0.8rem;
    text-align: center;
    cursor: pointer;
    background-color: var(--color-white);
    transition: var(--transition);
    position: relative;
    user-select: none;
}

.option-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.option-card.selected {
    border-color: var(--color-primary);
    background-color: var(--color-primary-light);
    box-shadow: 0 4px 10px rgba(200, 154, 144, 0.12);
}

.option-emoji {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
    display: block;
}

.option-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-dark);
    display: block;
}

.option-price {
    font-size: 0.7rem;
    color: var(--color-primary-dark);
    font-weight: 700;
    margin-top: 1px;
    display: block;
}

.sticker-checkbox-container {
    background-color: rgba(253, 240, 240, 0.4);
    border: 1.5px dashed var(--color-primary);
    border-radius: 18px;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.sticker-checkbox-container:hover {
    background-color: var(--color-primary-light);
}

.sticker-checkbox-container input {
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--color-primary-dark);
}

.sticker-checkbox-text h4 {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 2px;
}

.sticker-checkbox-text p {
    font-size: 0.75rem;
    color: var(--color-secondary);
}

.custom-input-text {
    width: 100%;
    padding: 0.75rem 1.2rem;
    border: 1.5px solid rgba(200, 154, 144, 0.2);
    border-radius: 15px;
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: var(--color-dark);
    outline: none;
    transition: var(--transition);
}

.custom-input-text:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-light);
}

.custom-input-text:disabled {
    background-color: #f7f7f7;
    border-color: #e5e5e5;
    cursor: not-allowed;
    opacity: 0.6;
}

.customizer-preview {
    background-color: var(--color-white);
    border-radius: 26px;
    border: 1px solid rgba(200, 154, 144, 0.2);
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: sticky;
    top: 110px;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.01);
}

.preview-title {
    font-family: var(--font-primary);
    font-size: 1.35rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 1px dashed rgba(200, 154, 144, 0.2);
    padding-bottom: 0.8rem;
}

.preview-detail-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2rem;
}

.preview-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(0,0,0,0.02);
    padding-bottom: 0.4rem;
}

.preview-label {
    color: var(--color-secondary);
    font-weight: 500;
}

.preview-val {
    color: var(--color-dark);
    font-weight: 700;
}

.customizer-price-footer {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: auto;
}

.custom-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px dashed rgba(200, 154, 144, 0.2);
}

.custom-price-label {
    font-size: 1rem;
    font-weight: 600;
}

.custom-price-val {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.add-custom-btn {
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 0.85rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.add-custom-btn:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 154, 144, 0.25);
}

/* ==========================================
   PRODUCT QUICK VIEW MODAL
   ========================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(74, 62, 61, 0.35);
    backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background-color: var(--color-white);
    width: 90%;
    max-width: 780px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(74, 62, 61, 0.15);
    transform: translateY(30px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-overlay.open .modal-container {
    transform: translateY(0) scale(1);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    overflow-y: auto;
}

.modal-img-container {
    height: 100%;
    min-height: 380px;
    background-color: var(--color-primary-light);
    position: relative;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.modal-content-panel {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.modal-close-btn {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background-color: var(--color-light);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--color-dark);
    z-index: 10;
}

.modal-close-btn:hover {
    background-color: var(--color-primary-light);
    color: var(--color-primary-dark);
    transform: rotate(90deg);
}

.modal-badge {
    align-self: flex-start;
    background-color: var(--color-primary-light);
    color: var(--color-primary-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    border: 1px solid var(--color-primary);
}

.modal-title {
    font-size: 1.6rem;
    color: var(--color-dark);
    margin-bottom: 0.6rem;
    line-height: 1.35;
}

.modal-price {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.modal-desc {
    font-size: 0.85rem;
    color: var(--color-secondary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.modal-care-guide {
    background-color: #fffbf9;
    border: 1.5px dashed rgba(200, 154, 144, 0.25);
    border-radius: 18px;
    padding: 1rem;
    margin-bottom: 1.8rem;
}

.care-title {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}

.care-text {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.modal-action-row {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.modal-qty-selector {
    display: flex;
    align-items: center;
    border: 1.5px solid rgba(200, 154, 144, 0.25);
    border-radius: 25px;
    overflow: hidden;
}

.qty-btn {
    background: none;
    border: none;
    width: 32px;
    height: 100%;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-dark);
    transition: var(--transition);
}

.qty-btn:hover {
    background-color: var(--color-light);
}

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

.modal-add-btn {
    flex-grow: 1;
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.85rem;
}

.modal-add-btn:hover {
    background-color: var(--color-primary-dark);
    box-shadow: 0 4px 12px rgba(200, 154, 144, 0.25);
}

/* ==========================================
   RESIN BASKET DRAWER (Mockup Peach Drawer)
   ========================================== */

.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(74, 62, 61, 0.25);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: var(--color-white);
    box-shadow: -15px 0 40px rgba(74, 62, 61, 0.08);
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.cart-drawer-overlay.open .cart-drawer {
    right: 0;
}

.cart-header {
    padding: 1.5rem 1.6rem;
    border-bottom: 1px solid rgba(200, 154, 144, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.close-drawer-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    transition: var(--transition);
}

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

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

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

.empty-cart-message {
    text-align: center;
    color: var(--color-secondary);
    margin: auto;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.empty-cart-message span {
    font-size: 2.2rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 1rem;
    align-items: center;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(200, 154, 144, 0.08);
}

.cart-item-img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    background-color: var(--color-primary-light);
    padding: 4px;
}

.cart-item-details h4 {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 2px;
    line-height: 1.3;
}

.cart-item-customization {
    font-size: 0.7rem;
    color: var(--color-secondary);
    margin-bottom: 4px;
    font-style: italic;
    line-height: 1.3;
}

.cart-item-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    border: 1px solid rgba(200, 154, 144, 0.2);
    border-radius: 12px;
    height: 22px;
    margin-top: 4px;
    display: inline-flex;
}

.cart-item-qty button {
    background: none;
    border: none;
    width: 18px;
    height: 100%;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.75rem;
}

.cart-item-qty span {
    font-size: 0.75rem;
    font-weight: 700;
    width: 14px;
    text-align: center;
}

.remove-cart-item {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    transition: var(--transition);
    padding: 5px;
}

.remove-cart-item:hover {
    color: #e07a7a;
    transform: scale(1.08);
}

.remove-cart-item svg {
    width: 16px;
    height: 16px;
}

.cart-notes-wrapper {
    padding: 1rem 1.6rem;
    border-top: 1px solid rgba(200, 154, 144, 0.15);
    background-color: #faf9f7;
}

.cart-notes-wrapper label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-secondary);
    display: block;
    margin-bottom: 0.3rem;
}

.cart-notes-input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1.5px solid rgba(200, 154, 144, 0.2);
    border-radius: 12px;
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    outline: none;
    resize: none;
    height: 48px;
    transition: var(--transition);
}

.cart-notes-input:focus {
    border-color: var(--color-primary);
}

.cart-footer {
    padding: 1.5rem 1.6rem;
    border-top: 1px solid rgba(200, 154, 144, 0.15);
    background-color: var(--color-white);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.cart-total-label {
    color: var(--color-dark);
}

.cart-total-val {
    color: var(--color-dark);
    font-size: 1.3rem;
    font-weight: 700;
}

.checkout-btn {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    width: 100%;
    padding: 0.85rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(200, 154, 144, 0.2);
}

.checkout-btn:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(200, 154, 144, 0.3);
}

/* ==========================================
   ABOUT & FEATURE SECTION (Cute & Condensed)
   ========================================== */

.about-section {
    padding: 4rem 2rem;
    background-color: transparent;
}

.about-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.about-content p {
    font-size: 0.95rem;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.feature {
    background-color: var(--color-white);
    padding: 1.8rem 1.2rem;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.feature-icon {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.feature h3 {
    font-family: var(--font-secondary);
    color: var(--color-dark);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.feature p {
    font-size: 0.75rem;
    color: var(--color-secondary);
    margin: 0;
    line-height: 1.4;
}

/* ==========================================
   INTERACTIVE FAQ (Accordions)
   ========================================== */

.faq-section {
    padding: 4rem 2rem;
    background-color: var(--color-white);
    border-top: 1px dashed rgba(200, 154, 144, 0.2);
}

.faq-container {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-card {
    background-color: var(--color-light);
    border-radius: 18px;
    border: 1px solid rgba(200, 154, 144, 0.1);
    overflow: hidden;
    transition: var(--transition);
}

.faq-card:hover {
    border-color: var(--color-primary);
}

.faq-question {
    padding: 1.1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    color: var(--color-dark);
    font-size: 0.9rem;
}

.faq-question svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    color: var(--color-primary);
}

.faq-card.active .faq-question {
    color: var(--color-primary-dark);
}

.faq-card.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background-color: var(--color-white);
}

.faq-card.active .faq-answer {
    max-height: 800px;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 1px solid rgba(200, 154, 144, 0.08);
}

.faq-answer-content {
    padding: 1.1rem 1.5rem;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.faq-answer-content ul,
.faq-answer-content ol {
    margin-left: 1.2rem;
    margin-top: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* ==========================================
   REVIEWS & TESTIMONIALS SLIDER
   ========================================== */

.reviews-section {
    padding: 4rem 2rem;
    background-color: transparent;
    border-top: 1px dashed rgba(200, 154, 144, 0.2);
}

.reviews-slider-wrapper {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    padding: 0 2.5rem;
}

.reviews-container {
    overflow: hidden;
    position: relative;
    min-height: 200px;
}

.review-slide {
    background-color: var(--color-white);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(200, 154, 144, 0.15);
    box-shadow: var(--box-shadow);
    text-align: center;
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.review-slide.active {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review-stars {
    color: #f7d070;
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    letter-spacing: 1px;
}

.review-text {
    font-size: 0.9rem;
    color: var(--color-dark);
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 1rem;
}

.review-author {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-primary-dark);
}

.review-location {
    font-size: 0.7rem;
    color: var(--color-secondary);
    margin-top: 1px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-white);
    border: 1px solid rgba(200, 154, 144, 0.2);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-dark);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    z-index: 5;
}

.slider-btn:hover {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
}

.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 1.2rem;
}

.slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(200, 154, 144, 0.25);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--color-primary);
    width: 16px;
    border-radius: 4px;
}

/* ==========================================
   FLOATING BASKET TRIGGER (Mockup pink circle trigger)
   ========================================== */

.floating-cart-trigger {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #ff8e9b; /* Bubbly hot pink-blush matching mockup */
    color: white;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 142, 155, 0.4);
    z-index: 99;
    border: none;
    transition: var(--transition);
}

.floating-cart-trigger:hover {
    background-color: #e57d89;
    transform: translateY(-3px) scale(1.04);
}

.floating-cart-trigger.bounce {
    animation: cartBounce 0.6s ease-out;
}

.floating-cart-trigger svg {
    width: 22px;
    height: 22px;
}

.floating-cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: var(--color-white);
    color: #ff8e9b;
    border: 1.5px solid #ff8e9b;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* ==========================================
   INTERACTIVE SEARCH OVERLAY & PROFILE ALERT
   ========================================== */

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(74, 62, 61, 0.4);
    backdrop-filter: blur(8px);
    z-index: 1005;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.search-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.search-box-container {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 28px;
    width: 90%;
    max-width: 580px;
    box-shadow: 0 20px 50px rgba(74, 62, 61, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.search-overlay.open .search-box-container {
    transform: translateY(0);
}

.search-input-row {
    display: flex;
    gap: 10px;
    align-items: center;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 8px;
    margin-bottom: 1.2rem;
}

.search-input-row svg {
    width: 22px;
    height: 22px;
    color: var(--color-primary);
}

.search-bar-input {
    width: 100%;
    border: none;
    outline: none;
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--color-dark);
    background: transparent;
}

.search-results-list {
    max-height: 250px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-result-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 8px 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.search-result-item:hover {
    background-color: var(--color-primary-light);
}

.search-result-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
}

.search-result-details h5 {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
}

.search-result-details span {
    font-size: 0.75rem;
    color: var(--color-primary-dark);
    font-weight: 700;
}

.search-close-btn {
    text-align: right;
    font-size: 0.8rem;
    color: var(--color-secondary);
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
    display: block;
}

.search-close-btn:hover {
    color: var(--color-primary);
}

/* ==========================================
   TOAST NOTIFICATION & ORDER POPUP
   ========================================== */

.toast-container {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(74, 62, 61, 0.95);
    backdrop-filter: blur(8px);
    color: white;
    padding: 0.65rem 1.6rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2000;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    pointer-events: none;
    opacity: 0;
}

.toast-container.show {
    animation: toastSlide 3s cubic-bezier(0.175, 0.885, 0.32, 1.25) forwards;
}

/* Checkout Instructions Popup */
.checkout-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(74, 62, 61, 0.4);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.checkout-popup-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.checkout-popup {
    background-color: var(--color-white);
    padding: 2.2rem;
    border-radius: 28px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(74, 62, 61, 0.15);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.checkout-popup-overlay.open .checkout-popup {
    transform: translateY(0);
}

.checkout-popup-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    display: block;
}

.checkout-popup h3 {
    color: var(--color-primary-dark);
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
}

.checkout-popup p {
    font-size: 0.8rem;
    color: var(--color-secondary);
    line-height: 1.45;
    margin-bottom: 1.2rem;
}

.checkout-code-box {
    background-color: var(--color-light);
    border: 1px dashed rgba(200, 154, 144, 0.3);
    padding: 0.85rem;
    border-radius: 14px;
    text-align: left;
    font-size: 0.75rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    white-space: pre-wrap;
    max-height: 110px;
    overflow-y: auto;
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.35;
}

.checkout-popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkout-popup-btn {
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    width: 100%;
}

.checkout-popup-btn:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-1px);
}

.checkout-popup-btn.whatsapp-btn {
    background-color: #63b382;
}
.checkout-popup-btn.whatsapp-btn:hover {
    background-color: #519b6c;
}

.checkout-popup-btn svg {
    width: 15px;
    height: 15px;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background-color: var(--color-dark);
    color: white;
    padding: 3.5rem 2rem 2rem;
    text-align: center;
    border-radius: 35px 35px 0 0;
    margin-top: 4rem;
}

.footer .container {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer p {
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
    margin: 0;
}

.footer a {
    color: var(--color-accent);
    font-weight: 600;
}

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

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 900px) {
    .customizer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .customizer-preview {
        position: static;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .header-wrapper {
        padding: 0.6rem 0;
    }

    .header {
        border-radius: 30px;
        width: 94%;
    }

    .header .container {
        padding: 0.5rem 1.2rem;
    }

    .logo h1 { font-size: 1.2rem; }
    .logo p { font-size: 0.6rem; }

    .nav-link {
        display: none;
    }

    .hero-glass-panel {
        padding: 2.5rem 1.5rem;
        border-radius: 40px 25px 45px 30px;
        gap: 1.2rem;
    }

    .hero-glass-panel h2 {
        font-size: 1.8rem;
    }

    .hero-glass-panel .definition,
    .hero-glass-panel .subtext {
        font-size: 0.85rem;
    }

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

    .product-image {
        height: 210px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .modal-img-container {
        height: 240px;
        min-height: 240px;
        padding: 16px;
    }
    
    .modal-content-panel {
        padding: 1.5rem;
    }
    
    .reviews-slider-wrapper {
        padding: 0 1rem;
    }
    
    .slider-btn.prev { left: -12px; }
    .slider-btn.next { right: -12px; }
}

@media (max-width: 480px) {
    .header .container {
        padding: 0.4rem 1rem;
    }
    
    .nav-icons {
        gap: 0.6rem;
    }

    .hero-glass-panel h2 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .customizer-container {
        padding: 1.2rem;
    }
    
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-cart-trigger {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .floating-cart-trigger svg {
        width: 18px;
        height: 18px;
    }
    
    .cart-drawer {
        max-width: 100%;
        right: -100%;
    }
}
