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

        :root {
            --black: #05070a;
            --dark: #0a0e14;
            --card: #0e121a;
            --red: #d62828;
            --red-bright: #ff3131;
            --silver: #c8c8c8;
            --dim: #6a6f7a;
            --border: rgba(255,255,255,0.05);
            --ff-title: 'Bebas Neue', sans-serif;
            --ff-body: 'Space Grotesk', sans-serif;
        }

        body {
            font-family: var(--ff-body);
            background: var(--black);
            color: #fff;
            overflow-x: hidden;
        }

        .gradient-bg {
            position: fixed; top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(ellipse 70% 60% at 50% 20%, rgba(214,40,40,0.14) 0%, transparent 70%);
            pointer-events: none; z-index: 0;
        }

        ::-webkit-scrollbar { width: 4px; }
        ::-webkit-scrollbar-track { background: var(--dark); }
        ::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }

        .navbar {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            padding: 1.2rem 0;
            background: rgba(5,7,10,0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
        }
        .nav-inner {
            max-width: 1400px; margin: 0 auto;
            padding: 0 2rem;
            display: flex; align-items: center; justify-content: space-between;
        }
        .nav-right { display: flex; align-items: center; gap: 1rem; }
        .nav-account-btn{display:flex;align-items:center;gap:0.5rem;background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.08);color:#c8c8c8;padding:0.45rem 1rem;border-radius:40px;font-family:var(--ff-body);font-size:0.78rem;font-weight:600;letter-spacing:1px;cursor:pointer;text-decoration:none;transition:all .25s;white-space:nowrap}
        .nav-account-btn:hover{background:rgba(255,255,255,0.1);color:#fff;border-color:rgba(255,255,255,0.2)}
        .nav-account-btn i{font-size:0.75rem}
        @media(max-width:480px){.nav-account-btn span.acc-label{display:none}.nav-account-btn{padding:0.45rem 0.7rem}}
        .logo-link { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; min-width: 0; flex-shrink: 1; }
        .logo-img { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 0 8px rgba(214,40,40,0.5)); flex-shrink: 0; }
        .logo-text { font-family: var(--ff-title); font-size: 1.6rem; letter-spacing: 4px; color: #fff; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
        .logo-text span { color: var(--red); }

        .nav-links { list-style: none; display: flex; gap: 2.5rem; }
        .nav-links a {
            font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
            letter-spacing: 2px; color: var(--dim); text-decoration: none;
            transition: color 0.25s; position: relative;
        }
        .nav-links a::after {
            content: ''; position: absolute; bottom: -4px; left: 0;
            width: 0; height: 1px; background: var(--red); transition: width 0.3s;
        }
        .nav-links a:hover { color: #fff; }
        .nav-links a:hover::after { width: 100%; }
        .nav-links a.active-page { color: #fff; }
        .nav-shop-link {
            background: var(--red) !important;
            color: #fff !important;
            padding: 0.45rem 1.2rem !important;
            border-radius: 40px !important;
            letter-spacing: 1.5px !important;
            box-shadow: 0 2px 12px rgba(214,40,40,0.35);
            transition: all 0.3s !important;
        }
        .nav-shop-link:hover {
            background: var(--red-bright) !important;
            color: #fff !important;
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(214,40,40,0.5) !important;
        }
        .nav-shop-link::after { display: none !important; }

        .hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
        .hamburger span { width: 24px; height: 2px; background: var(--red); display: block; transition: all 0.3s; }
        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        .mobile-menu {
            display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
            height: 100vh; height: 100dvh;
            background: rgba(5,7,10,0.98); backdrop-filter: blur(20px);
            z-index: 999;
            overflow-y: scroll;
            -webkit-overflow-scrolling: touch;
            overscroll-behavior-y: contain;
        }
        .mobile-menu.open { display: block; }
        
        .mobile-menu-inner {
            display: flex; flex-direction: column; align-items: center;
            gap: 1.8rem; min-height: 100%;
            padding-top: calc(env(safe-area-inset-top, 0px) + 90px);
            padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 2.5rem);
        }
        .mobile-menu a { font-family: var(--ff-title); font-size: 2.5rem; letter-spacing: 4px; color: #fff; text-decoration: none; }
        .mobile-menu a:hover { color: var(--red); }

        .shop-hero {
            padding: 140px 0 60px;
            position: relative;
            z-index: 2;
            border-bottom: 1px solid var(--border);
        }
        .shop-hero-inner {
            max-width: 1400px; margin: 0 auto; padding: 0 2rem;
            display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
        }
        .shop-hero-left .eyebrow {
            font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
            letter-spacing: 4px; color: var(--red); margin-bottom: 0.8rem;
            display: flex; align-items: center; gap: 0.8rem;
        }
        .shop-hero-left .eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--red); }
        .shop-hero-left h1 {
            font-family: var(--ff-title);
            font-size: clamp(3rem, 7vw, 5.5rem);
            line-height: 0.95;
            letter-spacing: 2px;
        }
        .shop-hero-left h1 em { color: var(--red); font-style: normal; }
        .shop-hero-right {
            display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
        }

        .filter-bar {
            background: var(--dark);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 70px;
            z-index: 100;
        }
        .filter-inner {
            max-width: 1400px; margin: 0 auto; padding: 0 2rem;
            display: flex; align-items: center; gap: 0.5rem; overflow-x: auto;
            scrollbar-width: none; padding-top: 1rem; padding-bottom: 1rem;
        }
        .filter-inner::-webkit-scrollbar { display: none; }
        .filter-btn {
            flex-shrink: 0;
            background: transparent;
            border: 1px solid rgba(255,255,255,0.1);
            color: var(--dim);
            padding: 0.45rem 1.2rem;
            border-radius: 40px;
            font-family: var(--ff-body);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .filter-btn:hover, .filter-btn.active {
            border-color: var(--red);
            color: var(--red);
            background: rgba(214,40,40,0.08);
        }
        .filter-btn.active {
            background: var(--red);
            color: #fff;
        }
        .filter-divider { width: 1px; height: 20px; background: var(--border); flex-shrink: 0; margin: 0 0.5rem; }

        .shop-main {
            max-width: 1400px; margin: 0 auto;
            padding: 3rem 2rem 6rem;
            position: relative; z-index: 2;
        }
        .products-meta {
            display: flex; align-items: center; justify-content: space-between;
            margin-bottom: 2rem;
            flex-wrap: wrap; gap: 1rem;
        }
        .products-count {
            font-size: 0.8rem; color: var(--dim); letter-spacing: 1px;
        }
        .products-count span { color: #fff; font-weight: 600; }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .product-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.35s;
            position: relative;
            display: flex;
            flex-direction: column;
        }
        .product-card:hover {
            border-color: rgba(214,40,40,0.5);
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(214,40,40,0.15);
        }

        .product-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--red);
            color: #fff;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 3px 10px;
            border-radius: 40px;
            z-index: 2;
        }
        .product-badge.badge-new { background: #1a7a4a; }
        .product-badge.badge-sale { background: var(--red); }

        .product-img-wrap {
            aspect-ratio: 1 / 1;
            overflow: hidden;
            background: #0d1117;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .product-img-wrap .placeholder-icon {
            font-size: 3.5rem;
            color: rgba(214,40,40,0.2);
            transition: all 0.4s;
        }
        .product-card:hover .placeholder-icon {
            color: rgba(214,40,40,0.4);
            transform: scale(1.1);
        }
        .product-img-wrap img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
            display: block;
        }
        .product-card:hover .product-img-wrap img { transform: scale(1.07); }

        .img-dots {
            position: absolute; bottom: 8px; left: 0; right: 0;
            display: flex; justify-content: center; gap: 5px;
            z-index: 2; pointer-events: none;
        }
        .img-dot {
            width: 6px; height: 6px; border-radius: 50%;
            background: rgba(255,255,255,0.4);
            transition: background 0.2s;
        }
        .img-dot.active { background: #fff; }

        .img-nav {
            position: absolute; top: 50%; transform: translateY(-50%);
            background: rgba(0,0,0,0.55); border: none; color: #fff;
            width: 28px; height: 28px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.7rem; cursor: pointer; z-index: 3;
            opacity: 0; transition: opacity 0.2s;
        }
        .img-nav.prev { left: 7px; }
        .img-nav.next { right: 7px; }
        .product-card:hover .img-nav { opacity: 1; }

        .product-info {
            padding: 1.2rem 1.3rem 1.4rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .product-cat {
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--red);
            margin-bottom: 0.4rem;
        }
        .product-name {
            font-size: 0.9rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.3;
            margin-bottom: 0.5rem;
        }
        .product-desc {
            font-size: 0.75rem;
            color: var(--dim);
            line-height: 1.5;
            font-weight: 300;
            flex: 1;
            margin-bottom: 1rem;
        }
        .product-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.5rem;
        }
        .product-price {
            font-family: var(--ff-title);
            font-size: 1.4rem;
            color: #fff;
            line-height: 1;
        }
        .product-price small {
            font-family: var(--ff-body);
            font-size: 0.65rem;
            color: var(--dim);
            letter-spacing: 1px;
            font-weight: 400;
            display: block;
            margin-top: 2px;
        }
        .product-price .old-price {
            font-family: var(--ff-body);
            font-size: 0.75rem;
            color: var(--dim);
            text-decoration: line-through;
            display: block;
        }
        .product-price .price-ron {
            font-family: var(--ff-body);
            font-size: 0.72rem;
            color: var(--dim);
            font-weight: 500;
            display: block;
            margin-top: 1px;
            letter-spacing: 0;
        }
        .currency-disclaimer {
            text-align: center;
            font-size: 0.72rem;
            color: var(--dim);
            margin-top: 2rem;
            padding: 0 1rem;
            line-height: 1.6;
        }

        .btn-add {
            background: var(--red);
            color: #fff;
            border: none;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s;
            flex-shrink: 0;
            box-shadow: 0 2px 10px rgba(214,40,40,0.35);
        }
        .btn-add:hover {
            background: var(--red-bright);
            transform: scale(1.12);
            box-shadow: 0 4px 20px rgba(214,40,40,0.5);
        }
        .btn-contact-price {
            background: transparent;
            border: 1px solid rgba(214,40,40,0.4);
            color: var(--red);
            padding: 0.4rem 1rem;
            border-radius: 40px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.2s;
            font-family: var(--ff-body);
            text-decoration: none;
            display: inline-block;
        }
        .btn-contact-price:hover {
            background: var(--red);
            color: #fff;
        }

        .shipping-info {
            position: relative; z-index: 2;
            border-top: 1px solid var(--border);
            padding: 3rem 0;
        }
        .shipping-info-inner {
            max-width: 860px; margin: 0 auto; padding: 0 2rem;
            text-align: center;
        }
        .shipping-eyebrow {
            display: flex; align-items: center; justify-content: center;
            gap: 0.8rem; margin-bottom: 0.8rem;
            font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
            letter-spacing: 4px; color: var(--red);
        }
        .shipping-eyebrow span:first-child,
        .shipping-eyebrow span:last-child {
            display: block; width: 30px; height: 1px; background: var(--red);
        }
        .shipping-info h2 {
            font-family: var(--ff-title);
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            margin-bottom: 0.8rem;
        }
        .shipping-info h2 span { color: var(--red); }
        .shipping-info > .shipping-info-inner > p {
            color: var(--dim); font-size: 0.9rem; margin-bottom: 2rem; line-height: 1.7;
        }
        .shipping-table {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 1rem;
        }
        .shipping-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid var(--border);
            align-items: center;
            text-align: left;
        }
        .shipping-row:last-child { border-bottom: none; }
        .shipping-header {
            background: rgba(214,40,40,0.07);
            font-size: 0.7rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 2px; color: var(--red);
        }
        .shipping-row:not(.shipping-header) span { color: var(--silver); font-size: 0.9rem; }
        .shipping-row i { margin-right: 0.5rem; color: var(--red); }
        .shipping-price { color: #fff !important; font-weight: 700; font-size: 1rem !important; }
        .shipping-note {
            color: var(--dim); font-size: 0.75rem; line-height: 1.7;
            background: rgba(255,255,255,0.02); border: 1px solid var(--border);
            border-radius: 10px; padding: 0.8rem 1.2rem; text-align: left;
        }
        .shipping-note i { color: var(--red); margin-right: 0.4rem; }
        @media (max-width: 600px) {
            .shipping-row { grid-template-columns: 1fr 1fr; gap: 0.3rem; }
            .shipping-header span:nth-child(2) { display: none; }
            .shipping-row:not(.shipping-header) span:nth-child(2) { display: none; }
        }

        .custom-cta {
            position: relative; z-index: 2;
            border-top: 1px solid var(--border);
            background: linear-gradient(135deg, var(--dark) 0%, var(--black) 100%);
        }
        .custom-cta-inner {
            max-width: 1400px; margin: 0 auto; padding: 4rem 2rem;
            text-align: center;
        }
        .custom-cta h2 {
            font-family: var(--ff-title);
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 1rem;
        }
        .custom-cta h2 span { color: var(--red); }
        .custom-cta p {
            color: var(--dim); font-size: 1rem; font-weight: 300;
            max-width: 500px; margin: 0 auto 2rem; line-height: 1.7;
        }

        .cart-panel {
            position: fixed;
            right: -400px;
            top: 0;
            height: 100%;
            width: 380px;
            background: #0a0e14;
            border-left: 1px solid var(--border);
            z-index: 2000;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }
        .cart-panel.open { right: 0; box-shadow: -20px 0 60px rgba(0,0,0,0.6); }
        .cart-overlay {
            position: fixed; inset: 0;
            background: rgba(0,0,0,0.7);
            z-index: 1999;
            opacity: 0; pointer-events: none;
            transition: opacity 0.3s;
            backdrop-filter: blur(4px);
        }
        .cart-overlay.open { opacity: 1; pointer-events: all; }
        .cart-header {
            padding: 1.5rem;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .cart-header h3 {
            font-family: var(--ff-title);
            font-size: 1.4rem;
            letter-spacing: 2px;
        }
        .cart-header h3 em {
            font-family: var(--ff-body);
            font-size: 0.7rem;
            color: var(--dim);
            font-style: normal;
            font-weight: 400;
            letter-spacing: 1px;
            margin-left: 0.5rem;
        }
        .cart-close {
            width: 36px; height: 36px;
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--border);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; color: var(--dim);
            transition: all 0.2s;
            font-size: 0.85rem;
        }
        .cart-close:hover { background: var(--red); color: #fff; border-color: var(--red); }
        .cart-items {
            flex: 1; overflow-y: auto; padding: 1.5rem;
        }
        .cart-empty {
            text-align: center; padding: 3rem 1rem;
        }
        .cart-empty i { font-size: 3rem; color: rgba(214,40,40,0.2); margin-bottom: 1rem; display: block; }
        .cart-empty p { color: var(--dim); font-size: 0.85rem; }
        .cart-item {
            display: flex; gap: 1rem; padding: 1rem 0;
            border-bottom: 1px solid var(--border);
        }
        .cart-item-img {
            width: 60px; height: 60px; border-radius: 10px;
            background: #0d1117; display: flex; align-items: center; justify-content: center;
            flex-shrink: 0; overflow: hidden; border: 1px solid var(--border);
        }
        .cart-item-img i { font-size: 1.3rem; color: rgba(214,40,40,0.4); }
        .cart-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .cart-item-info { flex: 1; min-width: 0; }
        .cart-item-name { font-size: 0.82rem; font-weight: 600; margin-bottom: 0.2rem; }
        .cart-item-price { font-size: 0.85rem; color: var(--red); font-weight: 700; margin-bottom: 0.5rem; }
        .cart-item-remove {
            background: none; border: none; color: var(--dim);
            cursor: pointer; font-size: 0.75rem; padding: 0; transition: color 0.2s;
            align-self: flex-start; margin-top: 2px;
        }
        .cart-item-remove:hover { color: var(--red); }
        .qty-stepper {
            display: flex; align-items: center; gap: 0.7rem;
        }
        .qty-btn {
            width: 26px; height: 26px; border-radius: 50%;
            border: 1px solid var(--border); background: rgba(255,255,255,0.05);
            color: #fff; display: flex; align-items: center; justify-content: center;
            cursor: pointer; font-size: 0.65rem; padding: 0; flex-shrink: 0;
            transition: all 0.2s;
        }
        .qty-btn:hover { border-color: var(--red); color: var(--red); background: rgba(214,40,40,0.08); }
        .qty-btn.qty-trash { color: var(--red); border-color: rgba(214,40,40,0.25); }
        .qty-btn.qty-trash:hover { background: var(--red); color: #fff; border-color: var(--red); }
        .qty-value { min-width: 18px; text-align: center; font-size: 0.85rem; font-weight: 700; color: #fff; }
        .cart-footer {
            padding: 1.5rem;
            border-top: 1px solid var(--border);
        }
        .cart-total {
            display: flex; justify-content: space-between; align-items: center;
            margin-bottom: 1rem;
        }
        .cart-total span:first-child { color: var(--dim); font-size: 0.85rem; }
        .cart-total span:last-child { font-family: var(--ff-title); font-size: 1.5rem; color: #fff; }
        .btn-checkout {
            width: 100%;
            background: var(--red);
            color: #fff;
            border: none;
            padding: 1rem;
            border-radius: 40px;
            font-family: var(--ff-body);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 20px rgba(214,40,40,0.3);
        }
        .btn-checkout:hover { background: var(--red-bright); transform: translateY(-1px); box-shadow: 0 8px 30px rgba(214,40,40,0.5); }
        .checkout-note {
            text-align: center; margin-top: 0.8rem;
            font-size: 0.7rem; color: var(--dim);
        }

        .cart-trigger {
            position: relative;
            background: rgba(255,255,255,0.06);
            border: 1px solid var(--border);
            color: #fff;
            width: 42px; height: 42px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; font-size: 1rem; transition: all 0.25s;
        }
        .cart-trigger:hover { border-color: var(--red); color: var(--red); background: rgba(214,40,40,0.08); }
        .cart-count {
            position: absolute; top: -4px; right: -4px;
            background: var(--red); color: #fff;
            width: 18px; height: 18px; border-radius: 50%;
            font-size: 0.6rem; font-weight: 700;
            display: flex; align-items: center; justify-content: center;
            display: none;
        }

        footer { border-top: 1px solid var(--border); padding: 2.5rem 0; position: relative; z-index: 2; }
        .footer-inner { max-width: 1400px; margin: 0 auto; padding: 0 2rem; display: flex; flex-direction: column; gap: 1rem; }
        .footer-logo { font-family: var(--ff-title); font-size: 1.1rem; letter-spacing: 3px; color: var(--dim); text-align: center; }
        .footer-copyright { font-size: 0.72rem; color: var(--dim); letter-spacing: 1.5px; text-align: center; }
        .footer-legal-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-top: 0.5rem; }
        .footer-legal-links a { color: var(--dim); text-decoration: none; font-size: 0.7rem; letter-spacing: 1px; transition: color 0.2s; }
        .footer-legal-links a:hover { color: var(--red); }
        .footer-legal-links span { color: var(--dim); }
        .legal-info-spot { margin-top: 1rem; padding: 1rem 1.5rem; background: rgba(0,0,0,0.3); border: 1px solid var(--border); border-radius: 12px; }
        .firm-grid {
            display: flex; justify-content: center; align-items: center;
            gap: 0; flex-wrap: wrap; font-size: 0.72rem;
        }
        .firm-item {
            display: flex; align-items: center; gap: 0.35rem;
            padding: 0.3rem 1rem;
            border-right: 1px solid rgba(255,255,255,0.08);
        }
        .firm-item:last-child { border-right: none; }
        .firm-item strong { color: var(--red); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
        .firm-item span { color: #9a9fa8; white-space: nowrap; }
        @media (max-width: 700px) {
            .firm-grid { flex-direction: column; gap: 0.4rem; }
            .firm-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 0.4rem 0; width: 100%; justify-content: center; }
            .firm-item:last-child { border-bottom: none; }
        }

        .modal-overlay {
            position: fixed; inset: 0;
            background: rgba(0,0,0,0.85);
            backdrop-filter: blur(8px);
            z-index: 3000;
            opacity: 0; pointer-events: none;
            transition: opacity 0.3s;
            display: flex; align-items: center; justify-content: center;
            padding: 1rem;
        }
        .modal-overlay.open { opacity: 1; pointer-events: all; }
        .modal {
            background: #0a0e14;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 24px;
            width: 100%;
            max-width: 480px;
            max-height: 90vh;
            overflow-y: auto;
            padding: 2rem;
            position: relative;
            transform: translateY(20px);
            transition: transform 0.3s;
        }
        .modal-overlay.open .modal { transform: translateY(0); }
        .modal-close {
            position: absolute; top: 1rem; right: 1rem;
            width: 32px; height: 32px;
            background: rgba(255,255,255,0.06);
            border: 1px solid var(--border);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; color: var(--dim); font-size: 0.8rem;
            transition: all 0.2s;
        }
        .modal-close:hover { background: var(--red); color: #fff; border-color: var(--red); }
        .modal-title {
            font-family: var(--ff-title);
            font-size: 1.6rem;
            letter-spacing: 2px;
            margin-bottom: 0.3rem;
        }
        .modal-title span { color: var(--red); }
        .modal-sub { font-size: 0.78rem; color: var(--dim); margin-bottom: 1.8rem; }
        .modal-order-summary {
            background: #0d1117;
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 1rem 1.2rem;
            margin-bottom: 1.5rem;
        }
        .modal-order-summary h4 {
            font-size: 0.65rem; font-weight: 700; letter-spacing: 2px;
            text-transform: uppercase; color: var(--dim); margin-bottom: 0.8rem;
        }
        .modal-order-item {
            display: flex; justify-content: space-between; align-items: center;
            font-size: 0.78rem; padding: 0.4rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }
        .modal-order-item:last-child { border-bottom: none; }
        .modal-order-item span:first-child { color: var(--silver); }
        .modal-order-item span:last-child { color: var(--red); font-weight: 700; }
        .modal-order-total {
            display: flex; justify-content: space-between; align-items: center;
            margin-top: 0.6rem; padding-top: 0.6rem;
            border-top: 1px solid rgba(255,255,255,0.08);
        }
        .modal-order-total span:first-child { font-size: 0.78rem; color: var(--dim); }
        .modal-order-total span:last-child { font-family: var(--ff-title); font-size: 1.1rem; color: #fff; }
        .modal-shipping-row span:last-child { color: #d62828 !important; font-size: 1rem !important; }
        .modal-grand-total-row {
            border-top: 2px solid rgba(214,40,40,0.4) !important;
            margin-top: 0.8rem; padding-top: 0.8rem;
        }
        .modal-grand-total-row span:first-child { font-size: 0.72rem !important; font-weight: 700; letter-spacing: 1px; color: #fff !important; text-transform: uppercase; }
        .modal-grand-total-row span:last-child { font-size: 1.5rem !important; color: #fff !important; }

        .shipping-selector { margin: 1rem 0 0.2rem; }
        .shipping-label {
            display: block; font-size: 0.68rem; font-weight: 700;
            letter-spacing: 1.5px; text-transform: uppercase;
            color: var(--dim); margin-bottom: 0.6rem;
        }
        .country-select-wrap { position: relative; }
        .country-select-display {
            display: flex; align-items: center; gap: 0.7rem;
            padding: 0.75rem 1rem; border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(0,0,0,0.4);
            cursor: pointer; transition: all 0.2s; user-select: none;
        }
        .country-select-display:hover { border-color: rgba(255,255,255,0.22); }
        .country-select-display.open {
            border-color: var(--red);
            background: rgba(214,40,40,0.06);
            border-radius: 12px 12px 0 0;
        }
        .country-select-flag { flex-shrink: 0; line-height: 1; display:flex; align-items:center; }
        .country-select-name { flex: 1; font-size: 0.85rem; color: #e8e8e8; }
        .country-select-price {
            font-size: 0.85rem; font-weight: 700; color: var(--red);
            background: rgba(214,40,40,0.12); padding: 0.15rem 0.6rem;
            border-radius: 20px; white-space: nowrap;
        }
        .country-select-arrow {
            font-size: 0.65rem; color: var(--dim);
            transition: transform 0.25s ease;
        }
        .country-select-display.open .country-select-arrow { transform: rotate(180deg); }
        .country-dropdown {
            display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 100;
            background: #0d1117; border: 1px solid var(--red);
            border-top: none; border-radius: 0 0 12px 12px;
            max-height: 240px; overflow: hidden;
            box-shadow: 0 12px 40px rgba(0,0,0,0.7);
        }
        .country-dropdown.open { display: flex; flex-direction: column; }
        .country-search-wrap {
            display: flex; align-items: center; gap: 0.5rem;
            padding: 0.6rem 0.9rem;
            border-bottom: 1px solid rgba(255,255,255,0.07);
            flex-shrink: 0;
        }
        .country-search-icon { font-size: 0.65rem; color: var(--dim); }
        .country-search-input {
            background: none; border: none; outline: none;
            color: #fff; font-size: 0.8rem; font-family: var(--ff-body);
            width: 100%;
        }
        .country-search-input::placeholder { color: var(--dim); }
        .country-list { overflow-y: auto; flex: 1; }
        .country-list::-webkit-scrollbar { width: 4px; }
        .country-list::-webkit-scrollbar-track { background: transparent; }
        .country-list::-webkit-scrollbar-thumb { background: rgba(214,40,40,0.4); border-radius: 2px; }
        .country-item {
            display: flex; align-items: center; gap: 0.7rem;
            padding: 0.6rem 0.9rem; cursor: pointer;
            transition: background 0.15s; font-size: 0.82rem; color: #c8c8c8;
        }
        .country-item:hover { background: rgba(255,255,255,0.05); }
        .country-item.selected { background: rgba(214,40,40,0.1); color: #fff; }
        .country-item-flag { flex-shrink: 0; display:flex; align-items:center; }
        .country-item-name { flex: 1; }
        .country-item-price { font-size: 0.75rem; color: var(--red); font-weight: 700; }
        .form-group { margin-bottom: 1rem; }
        .form-group label {
            display: block; font-size: 0.68rem; font-weight: 700;
            letter-spacing: 1.5px; text-transform: uppercase;
            color: var(--dim); margin-bottom: 0.4rem;
        }
        .form-group input {
            width: 100%; padding: 0.75rem 1rem;
            background: rgba(0,0,0,0.4);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px; color: #fff;
            font-family: var(--ff-body); font-size: 0.85rem;
            transition: border-color 0.2s; outline: none;
        }
        .form-group input:focus { border-color: var(--red); }
        .form-group input::placeholder { color: var(--dim); }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
        .stripe-badge {
            display: flex; align-items: center; justify-content: center;
            gap: 0.5rem; margin: 1.2rem 0 1rem;
            font-size: 0.68rem; color: var(--dim);
        }
        .stripe-badge i { color: #635bff; }
        .btn-pay {
            width: 100%;
            background: var(--red);
            color: #fff; border: none;
            padding: 1rem; border-radius: 40px;
            font-family: var(--ff-body);
            font-size: 0.82rem; font-weight: 700;
            letter-spacing: 2px; text-transform: uppercase;
            cursor: pointer; transition: all 0.3s;
            box-shadow: 0 4px 20px rgba(214,40,40,0.3);
            display: flex; align-items: center; justify-content: center; gap: 0.6rem;
        }
        .btn-pay:hover:not(:disabled) { background: var(--red-bright); transform: translateY(-1px); box-shadow: 0 8px 30px rgba(214,40,40,0.5); }
        .btn-pay:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
        .pay-methods {
            display: flex; align-items: center; justify-content: center;
            gap: 0.7rem; margin-top: 0.8rem; flex-wrap: wrap;
        }
        .pay-badge-combined { height: 28px; width: auto; display: block; }
        .footer-payment-badges {
            display: flex; align-items: center; justify-content: center;
            gap: 0.6rem; flex-wrap: wrap; margin-top: 0.9rem;
        }
        .footer-payment-badges .pay-badge-combined { height: 20px; opacity: 0.9; }
        .precontractual-info {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 12px;
            padding: 0.9rem 1rem;
            margin: 1rem 0 0.8rem;
            display: flex;
            flex-direction: column;
            gap: 0.55rem;
        }
        .precontractual-row {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            font-size: 0.72rem;
            color: #7a7f8a;
            line-height: 1.5;
        }
        .precontractual-row i {
            color: var(--red);
            font-size: 0.65rem;
            margin-top: 0.2rem;
            flex-shrink: 0;
            width: 12px;
        }
        .precontractual-row a {
            color: var(--red);
            text-decoration: none;
        }
        .precontractual-row a:hover { text-decoration: underline; }
        .precontractual-row--checkbox { padding-top: 0.3rem; border-top: 1px solid rgba(255,255,255,0.06); margin-top: 0.2rem; }
        .tc-checkbox-label {
            display: flex; align-items: flex-start; gap: 0.6rem;
            cursor: pointer; color: #7a7f8a; font-size: 0.72rem; line-height: 1.5;
        }
        .tc-checkbox-label input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
        .tc-checkbox-box {
            flex-shrink: 0; width: 14px; height: 14px; margin-top: 1px;
            border: 1px solid rgba(255,255,255,0.2); border-radius: 3px;
            background: rgba(0,0,0,0.3); transition: all 0.2s;
            display: flex; align-items: center; justify-content: center;
        }
        .tc-checkbox-label input:checked + .tc-checkbox-box {
            background: var(--red); border-color: var(--red);
        }
        .tc-checkbox-label input:checked + .tc-checkbox-box::after {
            content: ''; display: block; width: 4px; height: 7px;
            border: 1.5px solid #fff; border-top: none; border-left: none;
            transform: rotate(45deg) translateY(-1px);
        }
        .tc-checkbox-label:hover .tc-checkbox-box { border-color: var(--red); }
        .tc-checkbox-label a { color: var(--red); text-decoration: none; }
        .tc-checkbox-label a:hover { text-decoration: underline; }
        .pay-method-icon {
            background: rgba(255,255,255,0.05); border: 1px solid var(--border);
            border-radius: 8px; padding: 0.3rem 0.7rem;
            font-size: 0.65rem; color: var(--dim); letter-spacing: 1px;
        }

        .success-state { text-align: center; padding: 1rem 0; }
        .success-icon {
            width: 64px; height: 64px; border-radius: 50%;
            background: linear-gradient(135deg, #1a7a4a, #0d5c35);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.8rem; margin: 0 auto 1.2rem;
            box-shadow: 0 0 30px rgba(26,122,74,0.4);
        }
        .success-state h3 { font-family: var(--ff-title); font-size: 1.8rem; letter-spacing: 2px; margin-bottom: 0.5rem; }
        .success-state p { color: var(--dim); font-size: 0.85rem; line-height: 1.6; }

        .toast { position: fixed; bottom: 30px; right: 30px; z-index: 9999;
            background: #0a0e14; border: 1px solid rgba(214,40,40,0.3);
            border-radius: 16px; padding: 1rem 1.4rem;
            display: flex; align-items: center; gap: 1rem;
            min-width: 260px; box-shadow: 0 10px 40px rgba(0,0,0,0.4);
            transform: translateX(120%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
        }
        .toast.show { transform: translateX(0); }
        .toast i { color: var(--red); font-size: 1.1rem; }
        .toast span { font-size: 0.82rem; color: var(--silver); font-weight: 500; }

        .lang-switch-btn {
            background: transparent;
            border: 1px solid var(--border);
            color: var(--dim);
            padding: 0.25rem 0.8rem;
            border-radius: 40px;
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
            font-family: var(--ff-body);
        }
        .lang-switch-btn:hover {
            border-color: var(--red);
            color: var(--red);
        }
        .lang-hero {
            position: absolute;
            top: 90px;
            right: 2rem;
            z-index: 900;
        }
        @media (max-width: 900px) {
            .lang-hero { display: none; }
        }

        @media (max-width: 900px) {
            .nav-links { display: none; }
            .hamburger { display: flex; }
            .products-grid { grid-template-columns: repeat(2, 1fr); }
            .nav-inner { flex-wrap: nowrap; }
        }
        @media (max-width: 480px) {
            .nav-inner { padding: 0 1.1rem; }
            .nav-inner .nav-right { gap: 0.5rem; }
            .logo-link { gap: 0.5rem; }
            .logo-img { width: 32px; height: 32px; }
            .logo-text { font-size: 1.15rem; letter-spacing: 2px; }
        }
        @media (max-width: 600px) {
            .products-grid { grid-template-columns: 1fr; }
            .cart-panel { width: 100%; right: -100%; }
            .cart-panel.open { right: 0; }
        }
        .footer-sal-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 0.3rem; }
        .footer-sal-links a { color: var(--dim); text-decoration: none; font-size: 0.65rem; letter-spacing: 1px; transition: color 0.2s; }
        .footer-sal-links a:hover { color: var(--red); }
        .footer-sal-links span { color: var(--dim); font-size: 0.65rem; }

        .flag-icon {
            display: inline-block;
            width: 20px;
            height: 14px;
            background-size: cover;
            background-position: center;
            border-radius: 2px;
            vertical-align: middle;
            flex-shrink: 0;
        }
        .flag-ro {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3E%3Crect width='1' height='2' fill='%23002B7F'/%3E%3Crect x='1' width='1' height='2' fill='%23FCD116'/%3E%3Crect x='2' width='1' height='2' fill='%23CE1126'/%3E%3C/svg%3E");
        }
        .flag-gb {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3CclipPath id='a'%3E%3Cpath d='M0 0v30h60V0z'/%3E%3C/clipPath%3E%3CclipPath id='b'%3E%3Cpath d='M30 15h30v15zv15H0zH0V0zV0h30z'/%3E%3C/clipPath%3E%3Cg clipPath='url(%23a)'%3E%3Cpath d='M0 0v30h60V0z' fill='%23012169'/%3E%3Cpath d='M0 0l60 30m0-30L0 30' stroke='%23fff' stroke-width='6'/%3E%3Cpath d='M0 0l60 30m0-30L0 30' clipPath='url(%23b)' stroke='%23C8102E' stroke-width='4'/%3E%3Cpath d='M30 0v30M0 15h60' stroke='%23fff' stroke-width='10'/%3E%3Cpath d='M30 0v30M0 15h60' stroke='%23C8102E' stroke-width='6'/%3E%3C/g%3E%3C/svg%3E");
        }
#shopLockOverlay {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 500;
    padding-top: 140px;
    background: radial-gradient(ellipse 70% 60% at 50% 20%, rgba(214,40,40,0.18) 0%, transparent 70%), var(--black);
    overflow-y: auto;
}
html[data-shop-locked="true"] #shopLockOverlay { display: flex; }
html[data-shop-locked="true"] body { overflow: hidden; }
#shopLockOverlay footer { flex-shrink: 0; }
.shop-lock-inner {
    margin: auto;
    max-width: 640px;
    padding: 3rem 2rem;
    text-align: center;
}
.shop-lock-logo {
    width: 64px; height: 64px; object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(214,40,40,0.5));
    margin-bottom: 2rem;
}
.shop-lock-eyebrow {
    display: flex; align-items: center; justify-content: center; gap: 0.8rem;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 4px; color: var(--red); margin-bottom: 1.2rem;
}
.shop-lock-eyebrow span { width: 30px; height: 1px; background: var(--red); }
.shop-lock-title {
    font-family: var(--ff-title);
    font-size: clamp(3.5rem, 10vw, 7rem);
    line-height: 0.95;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 1.5rem;
}
.shop-lock-title em { color: var(--red); font-style: normal; }
.shop-lock-text {
    color: var(--dim);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 440px;
    margin: 0 auto 2.2rem;
}
.shop-lock-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--red);
    color: #fff;
    text-decoration: none;
    padding: 0.95rem 2.4rem;
    border-radius: 40px;
    font-family: var(--ff-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(214,40,40,0.35);
    transition: all 0.3s;
}
.shop-lock-btn:hover {
    background: var(--red-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(214,40,40,0.5);
}
.shop-lock-contact {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: var(--dim);
}
.shop-lock-contact a {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
}
.shop-lock-contact a:hover { text-decoration: underline; }
@media (max-width: 480px) {
    .shop-lock-inner { padding: 2rem 1.2rem; }
}