*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --red: #E02020;
    --red-dark: #b81a1a;
    --red-light: #ff3333;
    --black: #0e0e0e;
    --dark: #1a1a1a;
    --gray-1: #f5f5f5;
    --gray-2: #ebebeb;
    --gray-3: #d0d0d0;
    --gray-text: #666;
    --white: #ffffff;
    --font: 'Barlow', sans-serif;
    --font-cond: 'Barlow Condensed', sans-serif;
  }

  body { font-family: var(--font); background: var(--white); color: var(--black); }
  a { text-decoration: none; color: inherit; }
  ul { list-style: none; }
  button, select { cursor: pointer; font-family: var(--font); }
  img { display: block; max-width: 100%; }

  /* ── TOP BAR ── */
  .topbar {
    background: var(--black);
    color: #ccc;
    font-size: 12px;
    padding: 6px 0;
  }
  .topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .topbar-left { display: flex; gap: 18px; align-items: center; }
  .topbar-left span { display: flex; align-items: center; gap: 5px; }
  .topbar-right { display: flex; gap: 18px; align-items: center; }
  .topbar-right a:hover { color: var(--red); }
  .topbar select {
    background: transparent;
    border: none;
    color: #ccc;
    font-size: 12px;
    outline: none;
    padding: 0 4px;
  }
  .topbar select option { background: #1a1a1a; }

  /* ── HEADER ── */
  .header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-2);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  }
  .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 220px 1fr 200px 150px;
    align-items: center;
    gap: 20px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-cond);
    font-size: 28px;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.5px;
  }
  .logo-icon {
    width: 36px;
    height: 36px;
  }
  .logo span { color: var(--red); }

  .search-bar {
    display: flex;
    border: 2px solid var(--gray-3);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color .2s;
  }
  .search-bar:focus-within { border-color: var(--red); }
  .search-cat {
    padding: 0 12px;
    border: none;
    border-right: 1px solid var(--gray-3);
    background: var(--gray-1);
    font-size: 13px;
    color: var(--dark);
    outline: none;
    min-width: 110px;
  }
  .search-input {
    flex: 1;
    border: none;
    padding: 0 14px;
    font-size: 14px;
    outline: none;
    color: var(--dark);
  }
  .search-btn {
    background: var(--red);
    border: none;
    color: white;
    padding: 0 18px;
    font-size: 18px;
    transition: background .15s;
  }
  .search-btn:hover { background: var(--red-dark); }

  .hotline {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hotline-icon {
    width: 36px;
    height: 36px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 17px;
    flex-shrink: 0;
  }
  .hotline-text { font-size: 11px; color: var(--gray-text); line-height: 1.4; }
  .hotline-text strong { display: block; font-size: 14px; color: var(--black); font-weight: 700; letter-spacing: 0.5px; }

  .cart-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: 2px solid var(--gray-2);
    border-radius: 4px;
    padding: 8px 14px;
    transition: border-color .2s;
  }
  .cart-btn:hover { border-color: var(--red); }
  .cart-icon { font-size: 22px; position: relative; }
  .cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--red);
    color: white;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
  }
  .cart-info { font-size: 11px; color: var(--gray-text); line-height: 1.4; }
  .cart-info strong { display: block; font-size: 14px; color: var(--black); font-weight: 700; }

  /* ── NAV ── */
  .navbar {
    background: var(--red);
  }
  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
  }
  .nav-inner a {
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 14px 18px;
    display: block;
    transition: background .15s;
    white-space: nowrap;
  }
  .nav-inner a:hover { background: rgba(0,0,0,0.2); }
  .nav-more {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  /* ── HERO ── */
  .hero {
    position: relative;
    background: #1a1a1a;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1487754180451-c456f719a1fc?w=1600&q=80') center/cover no-repeat;
    opacity: 0.35;
  }
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    width: 100%;
    text-align: center;
  }
  .hero h1 {
    font-family: var(--font-cond);
    font-size: 54px;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
    margin-bottom: 10px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  }
  .hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
  }
  .vehicle-search {
    background: white;
    border-radius: 6px;
    padding: 20px 24px;
    display: inline-flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  }
  .vehicle-search select {
    border: 1.5px solid var(--gray-3);
    border-radius: 4px;
    padding: 11px 36px 11px 14px;
    font-size: 14px;
    color: var(--gray-text);
    outline: none;
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat right 12px center;
    appearance: none;
    min-width: 130px;
    transition: border-color .2s;
  }
  .vehicle-search select:focus { border-color: var(--red); }
  .search-submit {
    background: var(--red);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .15s, transform .1s;
  }
  .search-submit:hover { background: var(--red-dark); transform: translateY(-1px); }

  /* ── FEATURES BAND ── */
  .features {
    border-bottom: 1px solid var(--gray-2);
    padding: 28px 0;
  }
  .features-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    color: var(--red);
  }
  .feature-text h4 { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
  .feature-text p { font-size: 12px; color: var(--gray-text); }

  /* ── SECTION TITLE ── */
  .section-title {
    text-align: center;
    font-family: var(--font-cond);
    font-size: 32px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    letter-spacing: -0.5px;
  }
  .section-title::before,
  .section-title::after {
    content: '';
    display: block;
    width: 28px;
    height: 4px;
    background: var(--red);
    transform: skewX(-20deg);
  }

  /* ── PRODUCTS ── */
  .products-section { padding: 50px 0 40px; }
  .products-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .product-card {
    background: white;
    border: 1.5px solid var(--gray-2);
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s, border-color .2s;
    position: relative;
  }
  .product-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-3px);
    border-color: var(--gray-3);
  }
  .product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--red);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    z-index: 1;
  }
  .product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity .2s, transform .2s;
  }
  .product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
  .action-btn {
    width: 32px;
    height: 32px;
    background: white;
    border: 1px solid var(--gray-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--gray-text);
    transition: background .15s, color .15s;
    cursor: pointer;
  }
  .action-btn:hover { background: var(--red); color: white; border-color: var(--red); }
  .product-img-wrap {
    padding: 24px;
    background: var(--gray-1);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    overflow: hidden;
  }
  .product-img-wrap img {
    height: 140px;
    width: auto;
    object-fit: contain;
    transition: transform .3s;
  }
  .product-card:hover .product-img-wrap img { transform: scale(1.05); }
  .product-info { padding: 14px 16px 16px; }
  .product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.35;
    height: 38px;
    overflow: hidden;
  }
  .product-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 8px; }
  .stars { color: #ffa500; font-size: 12px; letter-spacing: 1px; }
  .review-count { font-size: 11px; color: var(--gray-text); }
  .product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .price-main { font-size: 18px; font-weight: 800; color: var(--red); font-family: var(--font-cond); }
  .price-old { font-size: 13px; color: var(--gray-text); text-decoration: line-through; margin-left: 6px; }
  .add-cart {
    width: 34px;
    height: 34px;
    background: var(--red);
    color: white;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: background .15s, transform .1s;
  }
  .add-cart:hover { background: var(--red-dark); transform: scale(1.05); }

  /* ── PROMO BANNERS ── */
  .promo-section { padding: 20px 0 50px; }
  .promo-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .promo-card {
    border-radius: 6px;
    overflow: hidden;
    padding: 28px 24px;
    position: relative;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .promo-1 { background: #f0f0f0; }
  .promo-2 { background: #1a1a1a; }
  .promo-3 { background: #f5f0e8; }
  .promo-card h3 { font-size: 13px; color: var(--gray-text); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
  .promo-1 .promo-highlight { font-family: var(--font-cond); font-size: 30px; font-weight: 800; color: var(--red); line-height: 1.1; }
  .promo-2 .promo-highlight { font-family: var(--font-cond); font-size: 26px; font-weight: 800; color: white; line-height: 1.1; }
  .promo-2 h3 { color: rgba(255,255,255,0.6); }
  .promo-3 .promo-highlight { font-family: var(--font-cond); font-size: 28px; font-weight: 800; color: var(--black); line-height: 1.1; }
  .promo-tag {
    display: inline-block;
    background: var(--red);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 10px;
    width: fit-content;
  }
  .promo-discount { font-family: var(--font-cond); font-size: 42px; font-weight: 800; color: var(--red); line-height: 1; }
  .shop-now {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--red);
    margin-top: 12px;
    padding-bottom: 2px;
    border-bottom: 2px solid var(--red);
  }
  .promo-2 .shop-now { color: white; border-color: white; }
  .promo-3 .shop-now { color: var(--black); border-color: var(--black); }
  .promo-img-abs {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 120px;
    opacity: 0.9;
  }

  /* ── CATEGORIES ── */
  .categories-section { padding: 10px 0 60px; background: var(--gray-1); }
  .categories-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 0;
  }
  .cat-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    justify-content: center;
  }
  .cat-tab {
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid var(--gray-3);
    background: white;
    color: var(--dark);
    cursor: pointer;
    transition: all .15s;
  }
  .cat-tab.active, .cat-tab:hover {
    background: var(--red);
    border-color: var(--red);
    color: white;
  }
  .cat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
  }
  .cat-item {
    background: white;
    border: 1.5px solid var(--gray-2);
    border-radius: 6px;
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
  }
  .cat-item:hover {
    border-color: var(--red);
    box-shadow: 0 4px 16px rgba(224,32,32,0.1);
  }
  .cat-item img {
    height: 70px;
    width: auto;
    margin: 0 auto 10px;
    object-fit: contain;
  }
  .cat-item span { font-size: 12px; font-weight: 600; color: var(--dark); display: block; line-height: 1.3; }

  /* ── FOOTER ── */
  .footer {
    background: var(--black);
    color: rgba(255,255,255,0.6);
    padding: 50px 0 0;
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-brand .logo { color: white; margin-bottom: 14px; }
  .footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 18px; }
  .footer-socials { display: flex; gap: 10px; }
  .social-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: background .15s, border-color .15s;
    cursor: pointer;
  }
  .social-btn:hover { background: var(--red); border-color: var(--red); }
  .footer-col h4 { color: white; font-size: 15px; font-weight: 700; margin-bottom: 18px; letter-spacing: 0.3px; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { font-size: 13px; transition: color .15s; }
  .footer-col ul li a:hover { color: var(--red); }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
  }
  .payment-icons { display: flex; gap: 8px; align-items: center; }
  .pay-icon {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  /* SVG icons inline */
  svg.icon { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }