* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1e1e1e;
    min-height: 100vh;
    padding: 16px;
    padding-top: 140px;
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 237, 213, 0.2) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(254, 243, 199, 0.15) 0%, transparent 50%);
}
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.header {
    position: fixed; top: 16px; left: 16px; right: 16px; z-index: 100;
    background: rgba(255, 255, 255, 0.75); backdrop-filter: blur(14px);
    border-radius: 40px; border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 8px 30px rgba(0,0,0,0.05); padding: 12px 24px;
}
.header-row { display: flex; align-items: center; justify-content: space-between; }
.header-left, .header-right { display: flex; align-items: center; gap: 12px; }
.header-center { display: flex; align-items: center; gap: 30px; }
.logo { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.5rem; color: #0f2b4b; text-decoration: none; }
.logo i { color: #f59e0b; margin-right: 4px; }
.cart-btn { background: transparent; border: none; position: relative; font-size: 1.5rem; color: #1e3a5f; cursor: pointer; }
.cart-badge {
    position: absolute; top: -2px; right: -6px; background: #f59e0b; color: white;
    font-size: 0.65rem; font-weight: 700; width: 18px; height: 18px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.cart-label { font-weight: 500; font-size: 0.9rem; color: #1e3a5f; }
.nav-links { display: flex; gap: 12px; }
.nav-links a { text-decoration: none; color: #1e3a5f; font-weight: 500; font-size: 0.85rem; }
.nav-links a:hover { color: #f59e0b; }
.btn-signin, .btn-signup {
    padding: 8px 20px; border-radius: 30px; font-weight: 600; font-size: 0.8rem;
    cursor: pointer; border: 1px solid #cbd5e1; background: rgba(255,255,255,0.8);
    color: #1e3a5f; text-decoration: none; transition: 0.2s;
}
.btn-signup { background: #f59e0b; color: white; border: none; }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: #1e3a5f; cursor: pointer; }
.search-row { display: flex; justify-content: center; margin-top: 8px; }
.search-wrapper {
    display: flex; align-items: center; padding: 8px 16px; width: 280px;
    background: rgba(255,255,255,0.7); border-radius: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05); border: 1px solid rgba(255,255,255,0.9);
}
.search-icon { color: #64748b; margin-right: 8px; }
.search-input { border: none; background: transparent; font-size: 0.85rem; outline: none; width: 100%; color: #1e293b; }
.search-input::placeholder { color: #94a3b8; }
.search-clear { background: none; border: none; color: #94a3b8; cursor: pointer; display: none; }
.mobile-nav {
    display: none; position: absolute; top: 100%; left: 16px; right: 16px;
    margin-top: 8px; background: white; border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1); padding: 24px;
    flex-direction: column; gap: 16px; border: 1px solid #e2e8f0;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
    display: block; text-decoration: none; color: #1e3a5f; font-weight: 600;
    padding: 8px 12px; border-radius: 12px; background: #f8fafc;
}
.hero { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-bottom: 60px; flex-wrap: wrap; }
.hero-content { flex: 1; }
.hero-title { font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 700; line-height: 1.2; color: #0f2b4b; }
.hero-subtitle { margin: 16px 0 8px; color: #475569; font-size: 1.1rem; }
.policy-badge {
    display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: #0f2b4b;
    margin-bottom: 24px; background: rgba(255,255,255,0.8); backdrop-filter: blur(8px);
    padding: 8px 18px; border-radius: 40px; width: fit-content;
    border: 1px solid rgba(255,255,255,0.8); box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.btn-primary {
    background: #f59e0b; border: none; color: white; padding: 14px 30px;
    border-radius: 40px; font-weight: 600; cursor: pointer; display: inline-flex;
    align-items: center; gap: 8px; transition: 0.2s; box-shadow: 0 4px 12px rgba(245,158,11,0.3);
}
.btn-primary:hover { background: #d97706; transform: translateY(-2px); }
.btn-outline {
    background: transparent; border: 1px solid #cbd5e1; padding: 14px 28px;
    border-radius: 40px; font-weight: 600; cursor: pointer; display: inline-flex;
    align-items: center; gap: 8px; color: #1e3a5f; transition: 0.2s;
}
.btn-outline:hover { border-color: #f59e0b; color: #f59e0b; }
.section-title { font-family: 'Outfit', sans-serif; font-size: 2rem; margin-bottom: 32px; color: #0f2b4b; text-align: center; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 32px; max-width: 1100px; margin: 0 auto 60px; padding: 0 16px; }
.product-card { padding: 16px; display: flex; flex-direction: column; cursor: pointer; }
.card-img { width: 100%; height: 180px; object-fit: cover; border-radius: 14px; margin-bottom: 12px; }
.card-tag { font-size: 0.7rem; background: rgba(245,158,11,0.15); color: #b45309; padding: 2px 10px; border-radius: 20px; font-weight: 600; align-self: flex-start; margin-bottom: 6px; }
.card-name { font-weight: 700; font-size: 1rem; margin: 4px 0; color: #0f2b4b; }
.card-desc { font-size: 0.75rem; color: #475569; flex: 1; }
.card-price { font-weight: 700; font-size: 1.1rem; color: #0f2b4b; margin-top: 8px; }
.card-mrp { text-decoration: line-through; font-size: 0.8rem; color: #94a3b8; margin-left: 6px; }
.card-actions { display: flex; gap: 8px; margin-top: 12px; }
.btn-add-cart { background: #f59e0b; border: none; color: white; padding: 8px 14px; border-radius: 30px; font-weight: 600; font-size: 0.8rem; cursor: pointer; display: flex; align-items: center; gap: 4px; transition: 0.2s; }
.btn-add-cart:hover { background: #d97706; }
.btn-view { background: rgba(255,255,255,0.8); border: 1px solid #cbd5e1; padding: 8px 14px; border-radius: 30px; font-size: 0.8rem; cursor: pointer; color: #1e3a5f; transition: 0.2s; }
.btn-view:hover { background: white; border-color: #f59e0b; }
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.15); backdrop-filter: blur(3px); z-index: 200; display: none; }
.cart-sidebar {
    position: fixed; top: 0; right: 0; width: 400px; max-width: 100vw; height: 100vh;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255,255,255,0.6); box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    z-index: 201; transform: translateX(100%); transition: transform 0.3s;
    padding: 24px; display: flex; flex-direction: column;
}
.cart-sidebar.open { transform: translateX(0); }
.cart-close { background: none; border: none; font-size: 1.4rem; cursor: pointer; align-self: flex-end; color: #1e3a5f; }
.cart-items { flex: 1; overflow-y: auto; }
.btn-checkout { background: #f59e0b; color: white; border: none; width: 100%; padding: 16px; border-radius: 40px; font-weight: 700; margin-top: 16px; cursor: pointer; transition: 0.2s; }
.btn-checkout:hover { background: #d97706; }
.modal { position: fixed; inset: 0; background: rgba(0,0,0,0.2); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; z-index: 300; }
.modal.active { display: flex; }
.modal-box { max-width: 500px; width: 90%; max-height: 90vh; overflow-y: auto; padding: 30px; background: rgba(255,255,255,0.9); backdrop-filter: blur(12px); border-radius: 32px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); position: relative; border: 1px solid rgba(255,255,255,0.8); }
.modal-box h2 { font-family: 'Outfit', sans-serif; color: #0f2b4b; margin-bottom: 20px; }
.modal-close { position: absolute; top: 16px; right: 20px; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: #1e3a5f; }
.form-group { margin-bottom: 16px; }
.form-group input { width: 100%; padding: 12px 16px; border: 1px solid #cbd5e1; border-radius: 16px; font-family: 'Inter', sans-serif; font-size: 0.9rem; outline: none; transition: 0.2s; }
.form-group input:focus { border-color: #f59e0b; box-shadow: 0 0 0 3px rgba(245,158,11,0.2); }
.checkout-summary { background: #f8fafc; border-radius: 20px; padding: 20px; margin: 24px 0; }
.terms-container { max-width: 800px; margin: 0 auto 40px; padding: 30px; line-height: 1.8; }
.terms-container h2 { color: #0f2b4b; margin: 24px 0 12px; font-size: 1.4rem; }
.terms-container p, .terms-container li { color: #334155; font-size: 0.95rem; margin-bottom: 8px; }
@media (max-width: 900px) {
    .header-right { display: none; }
    .menu-toggle { display: block; }
    .hero { flex-direction: column; text-align: center; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .cart-sidebar { width: 100%; }
}
@media (max-width: 550px) {
    .products-grid { grid-template-columns: 1fr; }
}