*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --red: #cc0000;
    --red-bright: #ff1a1a;
    --red-dark: #880000;
    --red-glow: rgba(204,0,0,0.25);
    --black: #050505;
    --black-2: #0f0f0f;
    --black-3: #181818;
    --black-4: #222222;
    --white: #f0ece8;
    --white-muted: #a0998f;
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
  }

  /* ─── NAVBAR ─── */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(5,5,5,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(204,0,0,0.3);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .nav-logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .nav-logo-text {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    line-height: 1.2;
  }

  .nav-logo-text span { color: var(--red); }

  .nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
  }

  .nav-links a {
    color: var(--white-muted);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--red); }

  .nav-cta {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .nav-cta:hover { background: var(--red-bright); }

  /* ─── HERO ─── */
  .hero {
    min-height: 100svh;
    padding-top: 65px;
    background: var(--black);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .hero-bg-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    opacity: 0.07;
    pointer-events: none;
  }

  .hero-badge {
    background: rgba(204,0,0,0.15);
    border: 1px solid rgba(204,0,0,0.5);
    color: var(--red-bright);
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 6px 14px;
    display: inline-block;
    margin: 0 auto;
    text-transform: uppercase;
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    padding: 40px 20px 20px;
    text-align: center;
    flex: 1;
  }

  .hero-season {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--white-muted);
    margin-bottom: 12px;
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 8vw, 48px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
  }

  .hero-title .accent { color: var(--red); }

  .hero-subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--white-muted);
    max-width: 340px;
    margin: 0 auto 28px;
    line-height: 1.5;
  }

  .hero-divider {
    width: 60px;
    height: 2px;
    background: var(--red);
    margin: 0 auto 28px;
  }

  .hero-offers {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 420px;
    margin: 0 auto;
    padding-bottom: 40px;
  }

  .hero-offer-card {
    background: var(--black-3);
    border: 1px solid rgba(204,0,0,0.2);
    border-left: 3px solid var(--red);
    padding: 16px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
    animation: slideIn 0.6s ease both;
  }

  .hero-offer-card:nth-child(1) { animation-delay: 0.1s; }
  .hero-offer-card:nth-child(2) { animation-delay: 0.25s; }
  .hero-offer-card:nth-child(3) { animation-delay: 0.4s; }

  .hero-offer-card:hover {
    background: var(--black-4);
    border-color: var(--red);
  }

  @keyframes slideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .offer-icon {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
  }

  .offer-content { flex: 1; min-width: 0; }

  .offer-tag {
    font-family: var(--font-display);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 2px;
  }

  .offer-name {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
  }

  .offer-desc {
    font-size: 12px;
    color: var(--white-muted);
  }

  .offer-price-block { text-align: right; flex-shrink: 0; }

  .offer-old {
    font-size: 11px;
    color: var(--white-muted);
    text-decoration: line-through;
    display: block;
  }

  .offer-new {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--red-bright);
    display: block;
  }

  .offer-pct {
    background: var(--red);
    color: #fff;
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    display: inline-block;
    margin-top: 2px;
  }

  .hero-scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white-muted);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 20px 0;
  }

  .hero-scroll-line {
    width: 30px;
    height: 1px;
    background: var(--white-muted);
  }

  /* ─── SECTION COMMON ─── */
  .section {
    padding: 60px 20px;
    position: relative;
  }

  .section-header {
    text-align: center;
    margin-bottom: 36px;
  }

  .section-eyebrow {
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(20px, 5vw, 30px);
    font-weight: 900;
    letter-spacing: -0.01em;
    color: var(--white);
    line-height: 1.1;
  }

  .section-title .accent { color: var(--red); }

  .section-line {
    width: 40px;
    height: 2px;
    background: var(--red);
    margin: 14px auto 0;
  }

  /* ─── FEATURED PRODUCTS ─── */
  .featured { background: var(--black-2); }

  .featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
  }

  .featured-card {
    background: var(--black-3);
    border: 1px solid rgba(204,0,0,0.15);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s;
    position: relative;
  }

  .featured-card:first-child {
    grid-column: 1 / -1;
  }

  .featured-card:hover {
    border-color: var(--red);
    transform: translateY(-2px);
  }

  .featured-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--black-4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    overflow: hidden;
    position: relative;
  }

  .featured-card:first-child .featured-card-img {
    aspect-ratio: 21/9;
    font-size: 64px;
  }

  .featured-card-img-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(204,0,0,0.12) 0%, transparent 70%);
  }

  .featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--red);
    color: #fff;
    font-family: var(--font-display);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 3px 8px;
    text-transform: uppercase;
  }

  .featured-card-body {
    padding: 14px;
  }

  .featured-cat {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
  }

  .featured-name {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .featured-card:first-child .featured-name {
    font-size: 17px;
  }

  .featured-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .featured-price {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
  }

  .featured-price-old {
    font-size: 11px;
    color: var(--white-muted);
    text-decoration: line-through;
  }

  .featured-btn {
    background: transparent;
    border: 1px solid var(--red);
    color: var(--red);
    font-family: var(--font-display);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 5px 10px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
  }

  .featured-btn:hover {
    background: var(--red);
    color: #fff;
  }

  /* ─── MORE PRODUCTS ─── */
  .more-products { background: var(--black); }

  .filter-bar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    margin-bottom: 24px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .filter-bar::-webkit-scrollbar { display: none; }

  .filter-btn {
    background: transparent;
    border: 1px solid rgba(204,0,0,0.25);
    color: var(--white-muted);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    cursor: pointer;
    white-space: nowrap;
    text-transform: uppercase;
    transition: all 0.2s;
    flex-shrink: 0;
  }

  .filter-btn.active, .filter-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 480px;
    margin: 0 auto;
  }

  .product-card {
    background: var(--black-3);
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s;
    position: relative;
  }

  .product-card:hover { border-color: rgba(204,0,0,0.4); }

  .product-card-img {
    width: 100%;
    aspect-ratio: 1;
    background: var(--black-4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    position: relative;
    overflow: hidden;
  }

  .product-card-img-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(204,0,0,0.08) 0%, transparent 70%);
  }

  .product-tag {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--red-dark);
    color: #fff;
    font-family: var(--font-display);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 2px 6px;
  }

  .product-fav {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(5,5,5,0.7);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white-muted);
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
  }

  .product-fav:hover { color: var(--red); border-color: var(--red); }

  .product-card-body {
    padding: 10px;
  }

  .product-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
  }

  .product-stars { color: var(--red); font-size: 10px; }

  .product-review-count {
    font-size: 10px;
    color: var(--white-muted);
  }

  .product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .product-price {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
  }

  .product-add {
    background: var(--red);
    border: none;
    color: #fff;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
  }

  .product-add:hover { background: var(--red-bright); }

  .load-more-row {
    text-align: center;
    margin-top: 32px;
  }

  .load-more {
    background: transparent;
    border: 1px solid var(--red);
    color: var(--red);
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 12px 32px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }

  .load-more:hover { background: var(--red); color: #fff; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--black-2);
    border-top: 1px solid rgba(204,0,0,0.2);
    padding: 40px 20px 24px;
    text-align: center;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
  }

  .footer-logo-text {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .footer-logo-text span { color: var(--red); }

  .footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
    list-style: none;
  }

  .footer-links a {
    color: var(--white-muted);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--red); }

  .footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
  }

  .social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(204,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-muted);
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }

  .social-btn:hover { border-color: var(--red); color: var(--red); }

  .footer-copy {
    font-size: 11px;
    color: rgba(160,153,143,0.5);
    letter-spacing: 0.05em;
  }

  /* ─── BANNER STRIP ─── */
  .banner-strip {
    background: var(--red);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
  }

  .banner-strip-inner {
    display: inline-flex;
    animation: ticker 20s linear infinite;
    gap: 0;
  }

  .banner-strip-item {
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #fff;
    padding: 0 28px;
    text-transform: uppercase;
  }

  .banner-strip-item::after {
    content: '◆';
    margin-left: 28px;
    opacity: 0.5;
  }

  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ─── NEWSLETTER ─── */
  .newsletter {
    background: var(--black-3);
    border-top: 1px solid rgba(204,0,0,0.15);
    border-bottom: 1px solid rgba(204,0,0,0.15);
    padding: 48px 20px;
    text-align: center;
  }

  .newsletter-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 8px;
  }

  .newsletter-title span { color: var(--red); }

  .newsletter-sub {
    font-size: 14px;
    color: var(--white-muted);
    margin-bottom: 20px;
  }

  .newsletter-form {
    display: flex;
    gap: 0;
    max-width: 360px;
    margin: 0 auto;
  }

  .newsletter-input {
    flex: 1;
    background: var(--black-4);
    border: 1px solid rgba(204,0,0,0.3);
    border-right: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    padding: 12px 14px;
    outline: none;
  }

  .newsletter-input::placeholder { color: var(--white-muted); }

  .newsletter-input:focus { border-color: var(--red); }

  .newsletter-submit {
    background: var(--red);
    border: 1px solid var(--red);
    color: #fff;
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 12px 16px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.2s;
    white-space: nowrap;
  }

  .newsletter-submit:hover { background: var(--red-bright); }

  /* ─── DESKTOP ADJUSTMENTS ─── */
  @media (min-width: 640px) {
    .hero-offers { gap: 14px; }
    .featured-grid { max-width: 600px; }
    .products-grid { max-width: 600px; }
    nav { padding: 12px 32px; }
    .nav-logo-text { font-size: 13px; }
  }

  @media (min-width: 900px) {
    .hero-inner { padding: 60px 40px 30px; }
    .featured-grid { max-width: 900px; grid-template-columns: repeat(4, 1fr); }
    .featured-card:first-child { grid-column: 1 / 3; }
    .products-grid { max-width: 900px; grid-template-columns: repeat(4, 1fr); }
    .section { padding: 80px 40px; }
    .hero-offers { flex-direction: row; max-width: 900px; }
    .hero-offer-card { flex-direction: column; text-align: center; align-items: center; }
    .offer-price-block { text-align: center; }
  }