* { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f5f5f7;
            color: #1a1a2e;
            font-size: 14px;
            overflow-x: hidden;
        }
        .top-bar {
            background: linear-gradient(90deg, #6a1b9a, #ad1457);
            color: #fff;
            font-size: 12px;
            padding: 8px 0;
        }
        .top-bar-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        .top-bar a {
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            margin-left: 20px;
            transition: color 0.2s;
        }
        .top-bar a:hover { color: #fff; }

        .header {
            background: #fff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .logo {
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2px;
        }
        .logo-svg { height: 44px; width: auto; display: block; }
        .logo-sub {
            font-size: 9px;
            color: #999;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-left: 4px;
        }
        .search-box { flex: 1; position: relative; min-width: 0; }
        .search-box input {
            width: 100%;
            padding: 12px 50px 12px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 14px;
            font-family: inherit;
            transition: border-color 0.2s;
        }
        .search-box input:focus { outline: none; border-color: #ad1457; }
        .search-btn {
            position: absolute;
            right: 5px; top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #ad1457, #e91e63);
            border: none;
            width: 38px; height: 38px;
            border-radius: 10px;
            cursor: pointer;
            color: #fff;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .header-actions { display: flex; gap: 8px; margin-left: auto; }
        .header-action {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 8px 12px;
            border-radius: 12px;
            cursor: pointer;
            transition: background 0.2s;
            text-decoration: none;
            color: #333;
            position: relative;
        }
        .header-action:hover { background: #f5f5f7; }
        .header-action-icon { font-size: 22px; margin-bottom: 2px; line-height: 1; }
        .header-action-label { font-size: 11px; color: #666; }
        .badge-count {
            position: absolute;
            top: 2px; right: 8px;
            background: #e91e63;
            color: #fff;
            border-radius: 10px;
            padding: 2px 6px;
            font-size: 10px;
            font-weight: 700;
            min-width: 18px;
            text-align: center;
        }
        .nav {
            background: #fff;
            border-top: 1px solid #eee;
        }
        .nav-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            gap: 5px;
            overflow-x: auto;
        }
        .nav-inner::-webkit-scrollbar { display: none; }
        .nav-item {
            padding: 12px 18px;
            font-size: 13px;
            font-weight: 500;
            color: #333;
            text-decoration: none;
            white-space: nowrap;
            border-bottom: 3px solid transparent;
            transition: all 0.2s;
        }
        .nav-item:hover, .nav-item.active {
            color: #ad1457;
            border-bottom-color: #ad1457;
        }

        .hero {
            max-width: 1400px;
            margin: 20px auto;
            padding: 0 20px;
        }
        .hero-banner {
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            min-height: 420px;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #a3569300, #a4589475);
        }
        .hero-banner-img {
            position: absolute;
            top: 0; right: 0;
            width: 60%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
        }
        .hero-overlay {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: linear-gradient(
                90deg,
                rgba(106,27,154,0.97) 0%,
                rgba(106,27,154,0.90) 20%,
                rgba(130,25,120,0.75) 35%,
                rgba(155,22,105,0.55) 50%,
                rgba(173,20,87,0.35) 65%,
                rgba(173,20,87,0.15) 80%,
                rgba(173,20,87,0.03) 92%,
                transparent 100%
            );
            z-index: 2;
        }
        .hero-content {
            position: relative;
            z-index: 3;
            padding: 50px 60px;
            color: #fff;
            max-width: 620px;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 15px;
            letter-spacing: 1px;
            border: 1px solid rgba(255,255,255,0.3);
        }
        .hero h1 { font-size: 40px; font-weight: 800; line-height: 1.1; margin-bottom: 15px; }
        .hero p { font-size: 16px; opacity: 0.97; margin-bottom: 25px; line-height: 1.6; }
        .hero-btn {
            display: inline-block;
            background: #fff;
            color: #ad1457;
            padding: 14px 32px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.2s;
        }
        .hero-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px 40px;
            display: flex;
            gap: 25px;
            align-items: flex-start;
        }

        .filters-sidebar {
            width: 260px;
            flex-shrink: 0;
            position: sticky;
            top: 90px;
        }
        .filters-card {
            background: #fff;
            border-radius: 16px;
            padding: 20px;
        }
        .filters-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        .filters-header h3 { font-size: 16px; font-weight: 700; color: #1a1a2e; }
        .filters-reset {
            font-size: 12px;
            color: #ad1457;
            cursor: pointer;
            background: none;
            border: none;
            font-family: inherit;
            font-weight: 500;
        }
        .filters-reset:hover { text-decoration: underline; }
        .filters-close-btn {
            display: none;
            position: absolute;
            top: 15px; right: 15px;
            width: 36px; height: 36px;
            background: #f5f5f7;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            align-items: center;
            justify-content: center;
        }
        .filter-group { margin-bottom: 22px; }
        .filter-group-title { font-size: 13px; font-weight: 700; margin-bottom: 12px; color: #333; }
        .filter-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 5px 0;
            cursor: pointer;
            font-size: 13px;
            color: #555;
        }
        .filter-option:hover { color: #ad1457; }
        .filter-option input { accent-color: #ad1457; cursor: pointer; }
        .price-inputs { display: flex; gap: 10px; margin-top: 10px; }
        .price-inputs input {
            width: 100%;
            padding: 8px 10px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 13px;
            font-family: inherit;
        }
        .price-inputs input:focus { outline: none; border-color: #ad1457; }

        .products-area { flex: 1; min-width: 0; }
        .filter-toggle-bar { display: none; gap: 10px; margin-bottom: 15px; }
        .mobile-filter-btn {
            flex: 1;
            padding: 12px 16px;
            background: #fff;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            color: #333;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            font-family: inherit;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .mobile-filter-btn.active { background: #ad1457; color: #fff; border-color: #ad1457; }
        .active-filters-count {
            background: #ad1457;
            color: #fff;
            border-radius: 10px;
            padding: 1px 7px;
            font-size: 11px;
            font-weight: 700;
        }
        .mobile-filter-btn.active .active-filters-count { background: #fff; color: #ad1457; }

        .products-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 15px;
        }
        .products-title { font-size: 22px; font-weight: 700; color: #1a1a2e; }
        .products-count { color: #999; font-size: 13px; font-weight: 400; }
        .sort-select {
            padding: 10px 15px;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            font-size: 13px;
            font-family: inherit;
            background: #fff;
            cursor: pointer;
        }
        .sort-select:focus { outline: none; border-color: #ad1457; }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
        }

        .product-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            transition: box-shadow 0.3s, transform 0.3s;
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }
        .product-card:hover {
            box-shadow: 0 10px 30px rgba(173,20,87,0.15);
            transform: translateY(-4px);
        }
        .product-image-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 3/4;
            overflow: hidden;
            background: #f5f5f7;
        }
        .product-image { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s; }
        .product-image-alt {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 0.4s;
        }
        .product-card:hover .product-image { opacity: 0; }
        .product-card:hover .product-image-alt { opacity: 1; }

        .product-badges {
            position: absolute;
            top: 10px; left: 10px;
            display: flex;
            flex-direction: column;
            gap: 5px;
            z-index: 2;
        }
        .product-badge {
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            color: #fff;
        }
        .badge-sale { background: #ff4757; }
        .badge-hit { background: #ffa502; }
        .badge-new { background: #2ed573; }

        .product-wishlist {
            position: absolute;
            top: 10px; right: 10px;
            width: 34px; height: 34px;
            background: rgba(255,255,255,0.95);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            z-index: 2;
        }
        .product-wishlist:hover { transform: scale(1.1); }
        .product-wishlist.active { color: #e91e63; }

        .product-quick-add {
            position: absolute;
            bottom: 10px; left: 10px; right: 10px;
            padding: 10px;
            background: rgba(173,20,87,0.95);
            color: #fff;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s;
            z-index: 2;
            font-family: inherit;
        }
        .product-card:hover .product-quick-add { opacity: 1; transform: translateY(0); }
        .product-quick-add:hover { background: #880e4f; }

        .product-info { padding: 14px; flex: 1; display: flex; flex-direction: column; }
        .product-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
        .product-price { font-size: 18px; font-weight: 700; color: #1a1a2e; }
        .product-old-price { font-size: 13px; color: #999; text-decoration: line-through; }
        .product-discount { font-size: 12px; color: #ff4757; font-weight: 600; }
        .product-name {
            font-size: 14px;
            color: #333;
            line-height: 1.4;
            margin-bottom: 6px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 39px;
            font-weight: 500;
        }
        .product-brand { font-size: 12px; color: #999; margin-bottom: 8px; }
        .product-rating { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #666; margin-bottom: 10px; }
        .stars { color: #ffa502; letter-spacing: 1px; }
        .product-colors { display: flex; gap: 5px; margin-bottom: 12px; }
        .product-color-dot {
            width: 16px; height: 16px;
            border-radius: 50%;
            border: 2px solid #fff;
            box-shadow: 0 0 0 1px #ddd;
        }

        .load-more-container {
            text-align: center;
            padding: 40px 20px;
        }
        .load-more-btn {
            padding: 14px 40px;
            background: #fff;
            border: 2px solid #ad1457;
            color: #ad1457;
            border-radius: 12px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            font-family: inherit;
            margin-top: 10px;
        }
        .profile-info { display: flex; gap: 18px; align-items: center; margin-bottom: 10px; }
        .profile-avatar {
            width: 64px; height: 64px; flex-shrink: 0;
            background: #f5f5f7; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 30px; color: #ad1457;
        }
        .profile-lines { font-size: 14px; color: #333; line-height: 1.9; }
        .profile-lines .profile-label { color: #777; font-weight: 600; }
        .auth-submit.profile-danger { background: linear-gradient(135deg, #c62828, #e53935); }
        .auth-submit.profile-plain { background: #e0e0e0; color: #333; }

        .cookies-banner {
            position: fixed;
            left: 20px; bottom: 20px;
            z-index: 9000;
            max-width: 560px;
            background: #1a1a2e;
            color: #eee;
            border-radius: 16px;
            padding: 18px 22px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.35);
        }
        .cookies-banner-inner { display: flex; align-items: center; gap: 18px; }
        .cookies-banner p { font-size: 13px; line-height: 1.6; color: #ccc; }
        .cookies-banner a { color: #e91e63; text-decoration: none; }
        .cookies-banner button {
            flex-shrink: 0;
            padding: 10px 22px;
            background: linear-gradient(135deg, #ad1457, #e91e63);
            color: #fff;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
        }
        .cookies-banner button:hover { opacity: 0.9; }
        .cookies-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
        .cookies-banner button.cookies-reject {
            background: transparent;
            color: #ccc;
            border: 1px solid #555;
        }
        .cookies-banner button.cookies-reject:hover { opacity: 1; border-color: #888; }
        @media (max-width: 600px) {
            .cookies-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; }
            .cookies-banner-inner { flex-direction: column; align-items: flex-start; }
        }
        .load-more-btn:hover {
            background: #ad1457;
            color: #fff;
        }
        .load-more-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        .loader {
            display: inline-block;
            width: 30px;
            height: 30px;
            border: 3px solid #f3f3f3;
            border-top: 3px solid #ad1457;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .all-loaded {
            color: #999;
            font-size: 14px;
            padding: 20px;
        }

        .info-sections {
            max-width: 1400px;
            margin: 40px auto;
            padding: 0 20px;
        }
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 20px;
        }
        .info-card {
            background: #fff;
            border-radius: 16px;
            padding: 30px;
        }
        .info-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .info-card p, .info-card li { color: #666; line-height: 1.7; font-size: 14px; }
        .info-card ul { list-style: none; padding: 0; }
        .info-card li { padding: 6px 0 6px 25px; position: relative; }
        .info-card li:before { content: "✓"; position: absolute; left: 0; color: #ad1457; font-weight: 700; }

        .footer {
            background: linear-gradient(135deg, #1a1a2e 0%, #2d1b3d 100%);
            color: #fff;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
        }
        .footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 15px; }
        .footer-col a {
            display: block;
            color: #aaa;
            text-decoration: none;
            font-size: 13px;
            padding: 5px 0;
            transition: color 0.2s;
        }
        .footer-col a:hover { color: #fff; }
        .footer-about { font-size: 13px; color: #aaa; line-height: 1.7; margin-top: 10px; }
        .footer-bottom {
            max-width: 1400px;
            margin: 30px auto 0;
            padding: 20px 20px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #666;
            flex-wrap: wrap;
            gap: 10px;
        }

        .modal-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.6);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 20px;
            backdrop-filter: blur(4px);
        }
        .modal-overlay.active { display: flex; }
        .modal {
            background: #fff;
            border-radius: 20px;
            max-width: 900px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
        }
        .modal-close {
            position: absolute;
            top: 15px; right: 15px;
            width: 36px; height: 36px;
            background: #f5f5f7;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            z-index: 10;
        }
        .modal-close:hover { background: #e0e0e0; }
        .modal-body { display: grid; grid-template-columns: 1fr 1fr; }
        .modal-gallery { padding: 30px; background: #f5f5f7; border-radius: 20px 0 0 20px; }
        .modal-main-image { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 12px; margin-bottom: 10px; }
        .modal-thumbnails { display: flex; gap: 8px; }
        .modal-thumb {
            width: 60px; height: 80px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            border: 2px solid transparent;
        }
        .modal-thumb.active, .modal-thumb:hover { border-color: #ad1457; }
        .modal-details { padding: 30px; }
        .modal-brand { font-size: 13px; color: #999; margin-bottom: 5px; }
        .modal-title { font-size: 22px; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
        .modal-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; font-size: 13px; color: #666; }
        .modal-price-block {
            display: flex;
            align-items: baseline;
            gap: 12px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        .modal-price { font-size: 28px; font-weight: 800; color: #1a1a2e; }
        .modal-old-price { font-size: 16px; color: #999; text-decoration: line-through; }
        .modal-section { margin-bottom: 20px; }
        .modal-section-title { font-size: 13px; font-weight: 700; margin-bottom: 10px; color: #333; }
        .modal-description {
            font-size: 13px;
            color: #555;
            line-height: 1.6;
            padding: 12px 14px;
            background: #f9f9fb;
            border-radius: 10px;
            border-left: 3px solid #ad1457;
        }
        .color-options { display: flex; gap: 10px; flex-wrap: wrap; }
        .color-option {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            cursor: pointer;
            font-size: 13px;
        }
        .color-option:hover { border-color: #ad1457; }
        .color-option.active { border-color: #ad1457; background: #fce4ec; }
        .color-option-dot {
            width: 20px; height: 20px;
            border-radius: 50%;
            border: 2px solid #fff;
            box-shadow: 0 0 0 1px #ddd;
        }
        .size-options { display: flex; gap: 8px; flex-wrap: wrap; }
        .size-option {
            padding: 10px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            cursor: pointer;
            font-size: 13px;
            font-weight: 500;
            background: #fff;
        }
        .size-option:hover { border-color: #ad1457; }
        .size-option.active { border-color: #ad1457; background: #fce4ec; color: #ad1457; }
        .modal-add-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #ad1457, #e91e63);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            font-family: inherit;
            margin-top: 10px;
        }
        .modal-add-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(173,20,87,0.3); }
        .modal-info-list { list-style: none; margin-top: 15px; }
        .modal-info-list li {
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
            font-size: 13px;
            color: #555;
            display: flex;
            justify-content: space-between;
        }
        .modal-info-list li:last-child { border-bottom: none; }
        .modal-info-list span:first-child { color: #999; }

        .cart-modal .modal { max-width: 600px; }
        .cart-header { padding: 25px 30px; border-bottom: 1px solid #eee; }
        .cart-header h2 { font-size: 22px; font-weight: 700; color: #1a1a2e; }
        .cart-items { padding: 20px 30px; max-height: 50vh; overflow-y: auto; }
        .cart-item { display: flex; gap: 15px; padding: 15px 0; border-bottom: 1px solid #f0f0f0; align-items: center; }
        .cart-item:last-child { border-bottom: none; }
        .cart-item-img { width: 80px; height: 100px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
        .cart-item-info { flex: 1; min-width: 0; }
        .cart-item-name { font-size: 14px; font-weight: 600; color: #1a1a2e; margin-bottom: 4px; }
        .cart-item-meta { font-size: 12px; color: #999; margin-bottom: 8px; }
        .cart-item-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
        .cart-item-price { font-size: 16px; font-weight: 700; color: #1a1a2e; }
        .cart-item-remove { background: none; border: none; color: #999; cursor: pointer; font-size: 18px; }
        .cart-item-remove:hover { color: #ff4757; }
        .cart-empty { text-align: center; padding: 40px 20px; color: #999; }
        .cart-footer { padding: 20px 30px; border-top: 1px solid #eee; }
        .cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; font-size: 18px; font-weight: 700; }
        .cart-total-value { color: #ad1457; font-size: 24px; }
        .cart-checkout {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #ad1457, #e91e63);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            font-family: inherit;
        }

        .auth-modal .modal { max-width: 440px; }
        .auth-modal .modal-body { display: block; padding: 40px 35px; }
        .auth-header { text-align: center; margin-bottom: 30px; }
        .auth-header h2 { font-size: 24px; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
        .auth-header p { color: #999; font-size: 14px; }
        .auth-tabs { display: flex; background: #f5f5f7; border-radius: 12px; padding: 4px; margin-bottom: 25px; }
        .auth-tab {
            flex: 1;
            padding: 12px;
            text-align: center;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            color: #666;
        }
        .auth-tab.active { background: #fff; color: #ad1457; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
        .auth-form { display: none; }
        .auth-form.active { display: block; }
        .auth-field { margin-bottom: 15px; }
        .auth-field label { display: block; font-size: 13px; font-weight: 600; color: #333; margin-bottom: 6px; }
        .auth-field input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 14px;
            font-family: inherit;
        }
        .auth-field input:focus { outline: none; border-color: #ad1457; }
        .auth-newsletter {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 4px 0 15px;
            cursor: pointer;
            font-size: 13px;
            color: #555;
            line-height: 1.5;
        }
        .auth-newsletter input { width: 18px; height: 18px; accent-color: #ad1457; cursor: pointer; flex-shrink: 0; }
        .auth-consent {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin: 4px 0 14px;
            cursor: pointer;
            font-size: 12px;
            color: #666;
            line-height: 1.5;
        }
        .auth-consent input { width: 18px; height: 18px; margin-top: 1px; accent-color: #ad1457; cursor: pointer; flex-shrink: 0; }
        .auth-consent a { color: #ad1457; text-decoration: none; }
        .auth-consent a:hover { text-decoration: underline; }
        .auth-submit {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #ad1457, #e91e63);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            font-family: inherit;
            margin-top: 10px;
            transition: opacity 0.2s, transform 0.1s;
        }
        .auth-submit:disabled,
        .auth-submit.loading {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .notification {
            position: fixed;
            bottom: 30px; right: 30px;
            max-width: calc(100vw - 60px);
            background: #1a1a2e;
            color: #fff;
            padding: 15px 25px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            z-index: 2000;
            transform: translateX(calc(100% + 60px));
            transition: transform 0.3s;
            font-size: 14px;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        .notification.show { transform: translateX(0); opacity: 1; visibility: visible; }

        .filter-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 998;
        }
        .filter-overlay.active { display: block; }

        @media (max-width: 1024px) {
            .filters-sidebar {
                position: fixed;
                top: 0;
                left: -320px;
                width: 300px;
                height: 100vh;
                z-index: 999;
                transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                overflow-y: auto;
                background: #fff;
                padding: 0;
            }
            .filters-sidebar.open { left: 0; box-shadow: 5px 0 30px rgba(0,0,0,0.2); }
            .filters-card { border-radius: 0; min-height: 100vh; padding: 20px 20px 100px; }
            .filters-close-btn { display: flex; }
            .filter-toggle-bar { display: flex; }
            .modal-body { grid-template-columns: 1fr; }
            .modal-gallery { border-radius: 20px 20px 0 0; }
            .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
            .hero h1 { font-size: 32px; }
            .hero-content { padding: 40px; }
            .hero-banner { min-height: 380px; }
            .footer-inner { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .top-bar { font-size: 11px; }
            .top-bar-inner { flex-direction: column; text-align: center; gap: 5px; }
            .header-inner { flex-wrap: wrap; gap: 10px; padding: 10px 15px; justify-content: center; }
            .logo-svg { height: 36px; }
            .header-actions { order: 2; margin-left: 0; justify-content: center; }
            .search-box { order: 5; flex: 1 1 100%; width: 100%; min-width: 0; }
            .search-box input { padding: 10px 45px 10px 15px; font-size: 13px; }
            .search-btn { width: 34px; height: 34px; font-size: 16px; left: auto; right: 5px; transform: translateY(-50%); }
            .header-actions { gap: 4px; }
            .header-action { padding: 6px 8px; min-width: 50px; flex-shrink: 0; }
            .header-action-label { font-size: 9px; text-align: center; white-space: nowrap; }
            .badge-count { top: 0; right: 4px; padding: 1px 4px; font-size: 9px; min-width: 16px; }
            .nav-item { padding: 10px 12px; font-size: 12px; }
            .hero-banner { min-height: 320px; }
            .hero-banner-img { width: 100%; object-position: top center; }
            .hero-overlay {
                background: linear-gradient(
                    180deg,
                    rgba(106,27,154,0.95) 0%,
                    rgba(106,27,154,0.90) 25%,
                    rgba(140,24,110,0.85) 50%,
                    rgba(173,20,87,0.90) 100%
                );
            }
            .hero-content { padding: 30px 20px; text-align: center; }
            .hero h1 { font-size: 26px; }
            .hero p { font-size: 14px; }
            .main { padding: 0 15px 40px; gap: 15px; }
            .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .product-price { font-size: 15px; }
            .product-name { font-size: 12px; min-height: 34px; }
            .product-review { display: none; }
            .info-grid { grid-template-columns: 1fr; }
            .footer-inner { grid-template-columns: 1fr; gap: 30px; }
            .footer { padding: 30px 0 15px; }
            .modal { border-radius: 15px; margin: 10px; }
            .modal-gallery { padding: 20px; }
            .modal-details { padding: 20px; }
            .modal-title { font-size: 18px; }
            .modal-price { font-size: 24px; }
            .filters-sidebar { width: 85vw; max-width: 340px; left: -100vw; }
            .filter-toggle-bar { flex-direction: column; }
            .products-header { flex-direction: column; align-items: stretch; }
            .sort-select { width: 100%; }
        }

        @media (max-width: 480px) {
            .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
            .product-info { padding: 10px; }
            .product-price { font-size: 14px; }
            .product-old-price { font-size: 11px; }
            .product-colors { display: none; }
        }

        @media (min-width: 1400px) {
            .products-grid { grid-template-columns: repeat(4, 1fr); }
        }