/* ════════════════════════════════════════════════════
   ShopEase – Main Stylesheet
   Beauty & Skincare | Modern Minimalist Theme
════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────── */
:root {
    --primary:        #E8607C;
    --primary-light:  #FFF0F3;
    --primary-dark:   #C94060;
    --primary-hover:  #d4506c;
    --accent:         #F4A0B0;
    --dark:           #2C2C2C;
    --gray:           #6C757D;
    --light-gray:     #F8F9FA;
    --border:         #E9ECEF;
    --white:          #FFFFFF;
    --bg:             #FAFAFA;
    --shadow-sm:      0 2px 8px rgba(0,0,0,0.07);
    --shadow-md:      0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg:      0 8px 40px rgba(0,0,0,0.12);
    --radius-sm:      8px;
    --radius-md:      12px;
    --radius-lg:      20px;
    --transition:     0.25s ease;
}

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

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--dark);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ── Scrollbar ──────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

/* ── Typography ─────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.3; }
.section-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.4rem;
}
.section-subtitle {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}
.text-primary-custom { color: var(--primary) !important; }

/* ── Buttons ────────────────────────────────────── */
.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(232,96,124,0.35);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-outline-custom:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

/* ── Navbar ─────────────────────────────────────── */
.navbar-custom {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar-custom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-brand-custom {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}
.navbar-brand-custom span { color: var(--dark); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-links a {
    padding: 8px 14px;
    border-radius: 8px;
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
    background: var(--primary-light);
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-btn {
    position: relative;
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--dark);
    font-size: 1.1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    background: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.cart-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
}
.cart-badge {
    position: absolute;
    top: 3px;
    right: 3px;
    background: var(--primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.user-menu { position: relative; }
.user-menu-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 50px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}
.user-menu-toggle:hover { background: var(--accent); color: white; }

.user-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    padding: 8px 0;
    display: none;
    z-index: 9999;
    border: 1px solid var(--border);
}
.user-menu:hover .user-dropdown { display: block; }
.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: var(--dark);
    font-size: 0.875rem;
    transition: var(--transition);
}
.user-dropdown a:hover { background: var(--primary-light); color: var(--primary); }
.user-dropdown hr { margin: 6px 0; border-color: var(--border); }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ── Hero Section ───────────────────────────────── */
.hero {
    background: linear-gradient(135deg, #FFF0F3 0%, #FFE4EC 50%, #FFF8FA 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(232,96,124,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-content {
    max-width: 500px;
}
.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}
.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 16px;
}
.hero h1 span { color: var(--primary); }
.hero p {
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 28px;
    line-height: 1.7;
}
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-img-container {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD1DC, #FFB6C1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}
.hero-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.hero-stat-label { font-size: 0.8rem; color: var(--gray); }

/* ── Section Wrapper ────────────────────────────── */
.section { padding: 70px 0; }
.section-header { text-align: center; margin-bottom: 40px; }

/* ── Category Pills ─────────────────────────────── */
.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.category-pill {
    padding: 8px 20px;
    border-radius: 50px;
    border: 2px solid var(--border);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}
.category-pill:hover, .category-pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* ── Product Cards ──────────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--primary-light);
}
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD1DC, #FFB6C1);
    font-size: 3rem;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 0.3px;
}
.product-badge.out-of-stock { background: #6c757d; }

.product-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gray);
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 0;
}
.product-card:hover .product-wishlist { opacity: 1; }
.product-wishlist:hover { color: var(--primary); background: var(--primary-light); }

.product-info { padding: 16px; }
.product-category {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.product-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
}
.product-price-old {
    font-size: 0.85rem;
    color: var(--gray);
    text-decoration: line-through;
    margin-left: 6px;
    font-weight: 400;
}

.product-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}
.btn-add-cart {
    flex: 1;
    background: var(--primary);
    color: white;
    border: none;
    padding: 9px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.btn-add-cart:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-add-cart:disabled { background: var(--gray); cursor: not-allowed; transform: none; }

.btn-view-product {
    background: var(--primary-light);
    color: var(--primary);
    border: none;
    padding: 9px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.btn-view-product:hover { background: var(--primary); color: white; }

/* ── Flash Messages ─────────────────────────────── */
.flash-message {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    animation: fadeInDown 0.3s ease;
}
.flash-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.flash-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.flash-info    { background: #cce5ff; color: #004085; border: 1px solid #b8daff; }
.flash-warning { background: #fff3cd; color: #856404; border: 1px solid #ffc107; }

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

/* ── Forms ──────────────────────────────────────── */
.form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}
.form-control-custom {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--dark);
    background: white;
    transition: var(--transition);
    outline: none;
}
.form-control-custom:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232,96,124,0.1);
}
.form-control-custom.error { border-color: #dc3545; }
.form-error { font-size: 0.8rem; color: #dc3545; margin-top: 4px; }

/* ── Auth Pages ─────────────────────────────────── */
.auth-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #FFF0F3, #FFE4EC);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}
.auth-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-lg);
}
.auth-logo {
    text-align: center;
    margin-bottom: 8px;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}
.auth-logo span { color: var(--dark); }
.auth-title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.auth-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 28px;
}
.auth-divider {
    text-align: center;
    color: var(--gray);
    font-size: 0.85rem;
    margin: 20px 0;
    position: relative;
}
.auth-divider::before, .auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: var(--border);
}
.auth-divider::before { left: 0; }
.auth-divider::after  { right: 0; }

/* ── Cart ───────────────────────────────────────── */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
    padding: 14px 16px;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border);
}
.cart-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}
.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-right: 14px;
}
.cart-item-img-placeholder {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 14px;
}
.qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
}
.qty-btn {
    width: 30px;
    height: 30px;
    border: 2px solid var(--border);
    border-radius: 50%;
    background: white;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--dark);
    font-weight: bold;
}
.qty-btn:hover { border-color: var(--primary); color: var(--primary); }
.qty-input {
    width: 50px;
    text-align: center;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}
.btn-remove {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    padding: 6px;
    border-radius: 50%;
}
.btn-remove:hover { background: #fee2e2; }

.cart-summary {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--gray);
    border-bottom: 1px solid var(--border);
}
.summary-row:last-child { border-bottom: none; }
.summary-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
}
.summary-total span { color: var(--primary); }

/* ── Product Detail ─────────────────────────────── */
.product-detail-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.product-detail-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #FFD1DC, #FFB6C1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}
.product-detail-name { font-size: 2rem; font-weight: 700; margin-bottom: 8px; }
.product-detail-price { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.product-detail-desc { color: var(--gray); line-height: 1.8; margin-bottom: 24px; }
.stock-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.stock-in  { background: #d4edda; color: #155724; }
.stock-low { background: #fff3cd; color: #856404; }
.stock-out { background: #f8d7da; color: #721c24; }

.qty-select-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

/* ── Breadcrumb ─────────────────────────────────── */
.breadcrumb-custom {
    padding: 14px 0;
    font-size: 0.85rem;
    color: var(--gray);
}
.breadcrumb-custom a { color: var(--primary); }
.breadcrumb-custom span { margin: 0 6px; }

/* ── Orders ─────────────────────────────────────── */
.order-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}
.order-card:hover { box-shadow: var(--shadow-md); }

.status-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: capitalize;
}
.status-pending    { background: #fff3cd; color: #856404; }
.status-processing { background: #cce5ff; color: #004085; }
.status-shipped    { background: #d1ecf1; color: #0c5460; }
.status-delivered  { background: #d4edda; color: #155724; }
.status-cancelled  { background: #f8d7da; color: #721c24; }

/* ── Footer ─────────────────────────────────────── */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    padding: 60px 0 0;
    margin-top: 80px;
}
.footer-logo { font-size: 1.6rem; font-weight: 800; color: white; margin-bottom: 12px; }
.footer-logo span { color: var(--primary); }
.footer-desc { font-size: 0.875rem; line-height: 1.7; margin-bottom: 24px; }
.footer-heading {
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.875rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}
.footer-social { display: flex; gap: 10px; margin-top: 12px; }
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    font-size: 0.9rem;
}
.footer-social a:hover { background: var(--primary); }

/* ── Checkout ───────────────────────────────────── */
.checkout-section { padding: 50px 0; }
.checkout-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}
.checkout-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    color: var(--dark);
}
.payment-option {
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.payment-option:has(input:checked), .payment-option.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}
.payment-option input[type="radio"] { accent-color: var(--primary); }

/* ── Empty State ────────────────────────────────── */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}
.empty-state-icon { font-size: 4rem; margin-bottom: 16px; color: var(--accent); }
.empty-state h4 { font-size: 1.3rem; margin-bottom: 8px; }
.empty-state p { color: var(--gray); margin-bottom: 24px; }

/* ── Shop Search/Filter ─────────────────────────── */
.shop-header {
    background: white;
    padding: 24px 0;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border);
}
.search-bar {
    display: flex;
    align-items: center;
    background: var(--light-gray);
    border-radius: 50px;
    padding: 8px 18px;
    gap: 10px;
    border: 2px solid var(--border);
    transition: var(--transition);
    max-width: 400px;
}
.search-bar:focus-within {
    border-color: var(--primary);
    background: white;
}
.search-bar input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.9rem;
    flex: 1;
    font-family: inherit;
}
.search-bar i { color: var(--gray); }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 991px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-img-container { width: 280px; height: 280px; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .nav-toggle { display: flex; }
    .mobile-menu {
        display: none;
        flex-direction: column;
        background: white;
        padding: 16px;
        border-top: 1px solid var(--border);
        gap: 4px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
        padding: 10px 14px;
        border-radius: 8px;
        color: var(--dark);
        font-size: 0.9rem;
        font-weight: 500;
    }
    .mobile-menu a:hover { background: var(--primary-light); color: var(--primary); }
    .hero { padding: 50px 0; }
    .hero h1 { font-size: 1.8rem; }
    .hero-image { display: none; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
    .auth-card { padding: 32px 24px; }
    .form-card { padding: 24px; }
    .section { padding: 40px 0; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .cart-table { font-size: 0.85rem; }
}
