/* ===== CLOSET by NOVA - Modern Boutique Styles ===== */

:root {
    --primary: #D6336C;       /* Vibrant Pink */
    --primary-dark: #B02158;  /* Deep Rose */
    --secondary: #212529;     /* Rich Dark Charcoal */
    --light-pink: #FFF0F5;    /* Lavender Blush */
    --border: #E9ECEF;        /* Soft Grey */
    --text-dark: #2C2C2C;
    --text-medium: #6c757d;
    --text-light: #adb5bd;
    --bg-white: #FFFFFF;
    --bg-cream: #FAFAFA;
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 40px rgba(214, 51, 108, 0.12);
    --radius: 16px;           /* Modern rounded corners */
    --radius-sm: 8px;
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    font-weight: 700;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 25px; }

/* ===== Top Bar ===== */
.top-bar { background: var(--secondary); color: #e9ecef; padding: 10px 0; font-size: 12px; letter-spacing: 1px; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-links a { color: var(--primary); margin-left: 15px; font-weight: 500; }
.top-bar-links a:hover { color: #fff; }

/* ===== Header ===== */
.site-header { background: #fff; box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 25px; gap: 30px; }

.logo { display: flex; flex-direction: column; align-items: center; text-decoration: none; }
.logo-img { max-height: 50px; width: auto; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 800; color: var(--text-dark); letter-spacing: 2px; line-height: 1; }
.logo-sub { font-size: 11px; color: var(--primary); letter-spacing: 6px; text-transform: uppercase; margin-top: 5px; font-weight: 600; }

/* ===== Main Nav ===== */
.main-nav ul { display: flex; list-style: none; gap: 40px; }
.main-nav a { font-weight: 500; color: var(--text-dark); position: relative; padding: 5px 0; font-size: 15px; }
.main-nav a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); }
.main-nav a:hover { color: var(--primary); }
.main-nav a:hover::after { width: 100%; }

/* ===== Hamburger ===== */
.hamburger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 5px; z-index: 200; }
.hamburger span { width: 28px; height: 2px; background: var(--text-dark); transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

.nav-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 98; backdrop-filter: blur(3px); }
.nav-overlay.active { display: block; }

/* ===== Header Actions ===== */
.header-actions { display: flex; align-items: center; gap: 20px; }
.search-form { display: flex; align-items: center; gap: 10px; border: 1px solid var(--border); border-radius: 50px; padding: 8px 20px; background: var(--bg-cream); transition: var(--transition); }
.search-form:focus-within { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(214, 51, 108, 0.1); background: #fff; }
.search-form input { border: none; background: none; font-size: 14px; width: 200px; outline: none; color: var(--text-dark); font-family: 'Poppins', sans-serif; }
.search-form button { background: none; border: none; cursor: pointer; font-size: 16px; color: var(--text-medium); transition: var(--transition); }
.search-form button:hover { color: var(--primary); }

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 500px;
    padding: 140px 0;
    display: flex;
    align-items: center;
    color: #fff;
    background-color: #212529; 
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1483985988355-763728e1935b?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(33, 37, 41, 0.85) 0%, rgba(214, 51, 108, 0.65) 100%);
}

.hero-content { position: relative; z-index: 2; display: flex; justify-content: flex-start; width: 100%; }
.hero-text-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 50px;
    border-radius: var(--radius);
    max-width: 600px;
    animation: fadeUp 1s ease;
}
.hero-eyebrow { display: inline-block; font-size: 12px; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 20px; padding: 8px 20px; background: var(--primary); border-radius: 50px; font-weight: 600; }
.hero h1 { font-size: 64px; font-weight: 800; margin-bottom: 20px; color: #fff; line-height: 1.1; }
.hero p { font-size: 18px; margin-bottom: 35px; font-weight: 300; opacity: 0.9; }
.hero-actions { display: flex; gap: 15px; flex-wrap: wrap; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 35px; font-weight: 600; font-size: 14px; cursor: pointer; transition: var(--transition); border: none; text-align: center; letter-spacing: 1px; text-transform: uppercase; font-family: 'Poppins', sans-serif; border-radius: 50px; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 20px rgba(214, 51, 108, 0.3); }
.btn-primary:hover { background: #fff; color: var(--primary); transform: translateY(-3px); box-shadow: 0 15px 25px rgba(0,0,0,0.2); }
.btn-outline-light { background: transparent; border: 2px solid #fff; color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--text-dark); transform: translateY(-3px); }
.btn-dark { background: var(--secondary); color: #fff; }
.btn-dark:hover { background: var(--primary); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--text-dark); }
.btn-light:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }

/* ===== Category Pills ===== */
.category-bar { background: #fff; padding: 25px 0; border-bottom: 1px solid var(--border); }
.category-list { display: flex; gap: 15px; overflow-x: auto; justify-content: center; scrollbar-width: none; }
.category-list::-webkit-scrollbar { display: none; }
.category-list a { white-space: nowrap; padding: 10px 30px; font-size: 13px; font-weight: 500; color: var(--text-medium); border: 2px solid var(--border); text-transform: uppercase; letter-spacing: 1px; border-radius: 50px; transition: var(--transition); }
.category-list a.active, .category-list a:hover { color: #fff; background: var(--primary); border-color: var(--primary); }

/* ===== Products Section ===== */
.products-section { padding: 100px 0; background: var(--bg-cream); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-subtitle { display: block; font-size: 14px; color: var(--primary); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; font-weight: 600; }
.section-header h2 { font-size: 42px; margin-bottom: 15px; }
.section-divider { width: 80px; height: 4px; background: var(--primary); margin: 0 auto 15px; border-radius: 2px; }
.section-header p { color: var(--text-light); font-size: 14px; }

.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 35px; }

/* Modern Product Card */
.product-card { background: #fff; overflow: hidden; transition: var(--transition); border-radius: var(--radius); box-shadow: var(--shadow-sm); position: relative; display: flex; flex-direction: column; }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-12px); }

.product-image { position: relative; width: 100%; aspect-ratio: 3/4; overflow: hidden; background: var(--bg-cream); border-top-left-radius: var(--radius); border-top-right-radius: var(--radius); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-image img { transform: scale(1.1); }

.product-no-image { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 80px; background: var(--light-pink); }

.badge-new { position: absolute; top: 20px; left: 20px; background: var(--primary); color: #fff; padding: 8px 18px; font-size: 11px; font-weight: 600; letter-spacing: 1px; border-radius: 50px; box-shadow: 0 4px 10px rgba(214, 51, 108, 0.3); }

.product-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 25px; background: linear-gradient(transparent, rgba(0,0,0,0.7)); opacity: 0; transition: var(--transition); display: flex; justify-content: center; align-items: flex-end; }
.product-card:hover .product-overlay { opacity: 1; }
.view-btn { background: #fff; color: var(--text-dark); padding: 12px 30px; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; border-radius: 50px; transform: translateY(20px); transition: var(--transition); }
.product-card:hover .view-btn { transform: translateY(0); }
.view-btn:hover { background: var(--primary); color: #fff; }

.product-info { padding: 25px 20px; text-align: center; margin-top: auto; /* Pushes info to bottom */ }
.product-info h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; font-family: 'Poppins', sans-serif; color: var(--text-dark); }
.product-category { display: block; font-size: 12px; color: var(--primary); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; font-weight: 500; }

/* ===== Price Side-by-Side Styling ===== */
.price-wrapper {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    line-height: 1.2;
}
.price-dash {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 400;
}
.price-original {
    text-decoration: line-through;
    color: #adb5bd;
    font-size: 16px;
    font-weight: 400;
}
.price-discount {
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 700;
}
.price-regular {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 20px;
}

/* ===== Empty State ===== */
.empty-state { text-align: center; padding: 100px 20px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.empty-icon { font-size: 80px; margin-bottom: 20px; }
.empty-state h3 { font-size: 24px; margin-bottom: 10px; }
.empty-state p { color: var(--text-light); margin-bottom: 30px; }

/* ===== Promo Banner (Stylish Div) ===== */
.promo-banner { padding: 80px 0; background: var(--bg-cream); }
.promo-box {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: var(--radius);
    padding: 60px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.promo-box::before { content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px; background: rgba(255,255,255,0.1); border-radius: 50%; }
.promo-text { position: relative; z-index: 2; flex: 1; }
.promo-tag { display: inline-block; background: rgba(255,255,255,0.2); padding: 5px 15px; border-radius: 50px; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; }
.promo-text h2 { color: #fff; font-size: 36px; margin-bottom: 15px; }
.promo-text p { font-size: 16px; margin-bottom: 30px; opacity: 0.9; font-weight: 300; max-width: 500px; }
.promo-graphic { font-size: 120px; color: rgba(255,255,255,0.2); position: relative; z-index: 2; }

/* ===== Features Section ===== */
.features-section { padding: 100px 0; background: #fff; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.feature-card { text-align: center; padding: 40px 20px; background: var(--bg-cream); border-radius: var(--radius); transition: var(--transition); border: 1px solid transparent; }
.feature-card:hover { background: #fff; border-color: var(--border); box-shadow: var(--shadow-md); transform: translateY(-10px); }
.feature-icon-box { width: 70px; height: 70px; background: var(--light-pink); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 28px; color: var(--primary); transition: var(--transition); }
.feature-card:hover .feature-icon-box { background: var(--primary); color: #fff; transform: rotate(10deg); }
.feature-card h4 { font-size: 16px; margin-bottom: 8px; font-family: 'Poppins', sans-serif; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.feature-card p { font-size: 14px; color: var(--text-light); }

/* ===== Footer ===== */
.site-footer { background: var(--secondary); color: #adb5bd; padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-col .logo { margin-bottom: 20px; align-items: flex-start; }
.footer-col .logo-text { color: #fff; }
.footer-col p { font-size: 14px; margin-bottom: 15px; line-height: 1.8; }
.footer-col h4 { color: #fff; font-size: 14px; margin-bottom: 25px; font-family: 'Poppins', sans-serif; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: #adb5bd; font-size: 14px; }
.footer-col ul a:hover { color: var(--primary); padding-left: 5px; }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-link { width: 40px; height: 40px; border: 1px solid #495057; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #adb5bd; }
.social-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid #343a40; padding-top: 30px; text-align: center; font-size: 13px; color: #6c757d; }

/* ===== Product Detail Page ===== */
.product-detail { padding: 60px 0; background: #fff; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 0; }
.btn-back { font-size: 14px; color: var(--text-medium); white-space: nowrap; padding: 8px 20px; border: 1px solid var(--border); border-radius: 50px; transition: var(--transition); }
.btn-back:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.product-gallery { position: sticky; top: 100px; align-self: start; }
.main-image-container { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--bg-cream); aspect-ratio: 3/4; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.main-image { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; transition: transform 0.3s ease; }
.zoom-hint { position: absolute; bottom: 15px; right: 15px; background: rgba(255,255,255,0.95); color: var(--text-dark); padding: 8px 18px; border-radius: 50px; font-size: 12px; font-weight: 600; pointer-events: none; box-shadow: 0 4px 10px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 6px; }

.thumbnail-row { display: flex; gap: 15px; margin-top: 20px; }
.thumbnail { flex-shrink: 0; width: 90px; height: 110px; border-radius: 12px; overflow: hidden; border: 2px solid transparent; cursor: pointer; background: none; padding: 0; transition: var(--transition); }
.thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.thumbnail.active { border-color: var(--primary); box-shadow: 0 4px 10px rgba(214, 51, 108, 0.2); }
.thumbnail:hover { border-color: var(--primary); }

.product-info-detail { padding-top: 20px; }
.breadcrumb-category { display: inline-block; font-size: 12px; color: var(--primary); background: var(--light-pink); padding: 6px 18px; border-radius: 50px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.product-info-detail h1 { font-size: 36px; margin-bottom: 15px; line-height: 1.2; }

/* Detail Page Price Overrides */
.price-detail { margin-bottom: 25px; font-family: 'Poppins', sans-serif; }
.price-detail .price-discount { font-size: 32px; }
.price-detail .price-dash { font-size: 24px; }
.price-detail .price-original { font-size: 24px; }
.price-detail .price-regular { font-size: 32px; color: var(--primary); }

.product-description { font-size: 15px; color: var(--text-medium); line-height: 1.8; margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid var(--border); }

.product-meta { display: flex; flex-wrap: wrap; gap: 20px; }
.meta-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-medium); font-weight: 500; }
.meta-icon { width: 40px; height: 40px; background: var(--light-pink); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; }

/* WhatsApp Detail Button */
.btn-wa-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: 'Poppins', sans-serif;
    border: none;
    cursor: pointer;
}
.btn-wa-detail:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}
.btn-wa-detail i {
    font-size: 18px;
}

/* ===== Order Section ===== */
.order-section { background: var(--bg-cream); padding: 80px 0; margin-top: 60px; }
.order-form-container { max-width: 650px; margin: 0 auto; background: #fff; padding: 50px; border-radius: var(--radius); box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.order-header { text-align: center; margin-bottom: 35px; }
.order-icon { width: 60px; height: 60px; background: var(--light-pink); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 15px; }
.order-form-container h2 { font-size: 28px; margin-bottom: 8px; }
.order-intro { text-align: center; color: var(--text-light); font-size: 14px; }

.order-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.order-form .form-group { margin-bottom: 20px; }
.order-form label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 13px; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.5px; }
.required { color: var(--primary); }
.order-form input, .order-form textarea { width: 100%; padding: 15px; border: 1.5px solid var(--border); border-radius: 12px; font-size: 14px; font-family: 'Poppins', sans-serif; outline: none; transition: var(--transition); resize: vertical; background: var(--bg-cream); color: var(--text-dark); }
.order-form input:focus, .order-form textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(214, 51, 108, 0.1); background: #fff; }
.order-form input::placeholder, .order-form textarea::placeholder { color: #adb5bd; }

.btn-order { width: 100%; background: var(--primary); color: #fff; font-size: 16px; padding: 18px; border-radius: 12px; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 10px 20px rgba(214, 51, 108, 0.3); display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-order:hover { background: var(--secondary); transform: translateY(-2px); box-shadow: 0 15px 25px rgba(0,0,0,0.2); }

.order-note { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 20px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.alert { padding: 15px; border-radius: 12px; margin-bottom: 25px; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.alert-error { background: #FFF0F0; color: #D32F2F; border: 1px solid #FFCDD2; }

/* ===== Zoom Modal ===== */
.zoom-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); z-index: 9999; align-items: center; justify-content: center; }
.zoom-modal.active { display: flex; }
.zoom-modal-content { max-width: 90%; max-height: 90%; }
.zoom-modal-content img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 8px; }
.zoom-close { position: absolute; top: 30px; right: 40px; background: none; border: none; color: #fff; font-size: 40px; cursor: pointer; z-index: 10000; transition: 0.3s; }
.zoom-close:hover { color: var(--primary); transform: rotate(90deg); }
.zoom-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: none; color: #fff; font-size: 40px; cursor: pointer; padding: 15px 25px; border-radius: 50%; transition: 0.3s; }
.zoom-nav:hover { background: var(--primary); }
.zoom-prev { left: 30px; }
.zoom-next { right: 30px; }
.zoom-counter { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 14px; background: rgba(0,0,0,0.5); padding: 8px 20px; border-radius: 50px; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 48px; }
    .promo-box { flex-direction: column; text-align: center; padding: 40px; }
    .promo-text p { margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .main-nav { position: fixed; top: 0; right: -100%; width: 320px; height: 100vh; background: #fff; box-shadow: -5px 0 30px rgba(0,0,0,0.1); padding: 100px 30px 30px; transition: right 0.4s ease; z-index: 9999; overflow-y: auto; }
    .main-nav.active { right: 0; }
    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav ul li { border-bottom: 1px solid var(--border); }
    .main-nav ul li a { display: block; padding: 15px 0; font-size: 16px; }
    
    .header-actions { gap: 15px; }
    .search-form { display: none; }
    
    .hero { padding: 60px 0; min-height: 400px; }
    .hero-text-box { padding: 30px; }
    .hero h1 { font-size: 36px; }
    .hero p { font-size: 15px; }
    
    .section-header h2 { font-size: 30px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .product-info { padding: 15px 10px; }
    .product-info h3 { font-size: 14px; }
    .price-discount { font-size: 16px; }
    .price-original { font-size: 12px; }
    .price-dash { font-size: 12px; }
    .product-overlay { display: none; } 
    
    .features-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
    .feature-card { padding: 25px 15px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .top-bar .container { flex-direction: column; gap: 5px; }

    /* Responsive Product Detail */
    .product-detail-grid { grid-template-columns: 1fr; gap: 30px; }
    .product-gallery { position: static; }
    .product-info-detail { padding-top: 0; }
    .product-info-detail h1 { font-size: 24px; }
    .price-detail .price-discount { font-size: 24px; }
    .price-detail .price-dash { font-size: 18px; }
    .price-detail .price-original { font-size: 18px; }
    .price-detail .price-regular { font-size: 24px; }
    .order-form-container { padding: 30px 20px; }
    .order-section { padding: 50px 0; margin-top: 40px; }
    .order-form .form-row { grid-template-columns: 1fr; gap: 0; }
    .thumbnail { width: 70px; height: 90px; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 28px; }
    .container { padding: 0 20px; }
    .btn { padding: 14px 25px; font-size: 12px; }
    .features-grid { grid-template-columns: 1fr; }
}