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

  :root {
    --black: #1a1a1a;
    --dark: #f0f2f0;
    --card: #ffffff;
    --border: #e0e5e0;
    --green: #4fa335;
    --green-dark: #3d8028;
    --green-glow: rgba(108,192,74,0.12);
    --white: #1a1a1a;
    --muted: #666;
    --accent: #2d6e1a;
  }

  html { scroll-behavior: smooth; }

  body {
    background: #f5f7f5;
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    min-height: 100vh;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 64px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 28px;
    letter-spacing: -1px;
    color: #1a1a1a;
    text-decoration: none;
  }
  .logo span { color: var(--green); }
  .logo { background: var(--green); color: #fff; padding: 8px 14px; border-radius: 8px; }
  .nav-logos {
    display: flex;
    align-items: center;
    gap: 0;
  }
  .logo .site-logo-img { display: block; height: 40px; width: auto; }
  .nav-eurotyre-logo {
    display: block;
    height: 40px;
    width: auto;
    margin-left: 20px;
    object-fit: contain;
  }
  .nav-fleetpartner-logo {
    display: block;
    height: 36px;
    width: auto;
    margin-left: 20px;
    object-fit: contain;
  }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }
  .nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: #1a1a1a; }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .nav-actions a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
  }
  .nav-actions a:hover { color: #1a1a1a; }

  .btn-cart {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--green);
    color: var(--black) !important;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-cart:hover { background: var(--green-dark); transform: translateY(-1px); }
  .btn-cart .cart-count {
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    background: var(--black);
    color: white;
    font-size: 11px;
    font-weight: 800;
    border-radius: 10px;
    margin-left: 2px;
  }
  .btn-cart .cart-total-wrap {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    min-width: 4.2em;
    margin-left: 4px;
    padding-left: 6px;
    border-left: 1px solid rgba(0,0,0,0.15);
  }
  .btn-cart .cart-total-amount,
  .btn-cart .cart-total {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    opacity: 0.95;
  }
  .btn-cart .cart-ttc-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    opacity: 0.85;
    line-height: 1.2;
  }

  /* ── HERO ── */
  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 20px 16px;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 50% 40%, rgba(108,192,74,0.10) 0%, transparent 70%),
      repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(0,0,0,0.03) 60px, rgba(0,0,0,0.03) 61px),
      repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(0,0,0,0.03) 60px, rgba(0,0,0,0.03) 61px);
  }

  /* Big decorative tire ring */
  .tire-ring {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 60px solid rgba(79,163,53,0.08);
    box-shadow: inset 0 0 0 30px rgba(79,163,53,0.04);
    animation: slowSpin 30s linear infinite;
  }
  .tire-ring::after {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 2px dashed rgba(79,163,53,0.18);
  }
  @keyframes slowSpin { to { transform: translateY(-50%) rotate(360deg); } }

  .hero-content {
    position: relative;
    text-align: center;
    max-width: 560px;
    margin-bottom: 8px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108,192,74,0.1);
    border: 1px solid rgba(108,192,74,0.3);
    color: var(--green);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    animation: fadeUp 0.6s ease both;
  }

  .hero-content h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(38px, 5.5vw, 60px);
    line-height: 0.95;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: #1a1a1a;
    animation: fadeUp 0.6s 0.1s ease both;
  }
  h1 em {
    font-style: normal;
    color: var(--green);
    -webkit-text-stroke: 0;
  }

  .hero-sub {
    margin-top: 8px;
    font-size: 14px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.45;
    animation: fadeUp 0.6s 0.2s ease both;
  }

  .hero-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 8px;
    animation: fadeUp 0.6s 0.3s ease both;
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #1a1a1a;
  }
  .stat-num span { color: var(--green); }
  .stat-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 0; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── SEARCH BOX ── */
  .search-box {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 36px 28px;
    width: 100%;
    max-width: 900px;
    animation: fadeUp 0.7s 0.35s ease both;
    box-shadow: 0 0 0 1px rgba(79,163,53,0), 0 20px 60px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s;
  }
  .search-box:focus-within {
    box-shadow: 0 0 0 1px rgba(79,163,53,0.4), 0 20px 60px rgba(0,0,0,0.1);
  }

  /* Tab navigation */
  .search-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 28px;
    background: #f0f2f0;
    border-radius: 10px;
    padding: 4px;
  }
  .tab-btn {
    flex: 1;
    background: none;
    border: none;
    color: var(--muted);
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .tab-btn.active {
    background: var(--card);
    color: #1a1a1a;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  }
  .tab-btn svg { width: 16px; height: 16px; }

  /* Search panels */
  .search-panel { display: none; }
  .search-panel.active { display: block; }

  /* Dimension search */
  .tires-loader {
    display: none !important;
    font-size: 15px;
    color: var(--muted);
    margin: 8px 0 0 0;
  }
  .tires-loaded {
    font-size: 15px;
    color: var(--green, #0a6b2c);
    margin: 8px 0 0 0;
  }
  .dim-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr auto;
    gap: 10px;
    align-items: end;
  }

  .field-group { display: flex; flex-direction: column; gap: 6px; }
  .field-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
  }

  select, input[type=text] {
    background: #f5f7f5;
    border: 1px solid var(--border);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-size: 17px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    outline: none;
    width: 100%;
    appearance: none;
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
  }
  select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
  }
  select:focus, input[type=text]:focus {
    border-color: var(--green);
    background: #ffffff;
  }

  /* Season options */
  .season-options {
    display: flex;
    gap: 8px;
    margin-top: 16px;
  }
  .season-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
    user-select: none;
  }
  .season-pill input { display: none; }
  .season-pill.checked {
    border-color: var(--green);
    background: rgba(108,192,74,0.1);
    color: var(--green);
  }
  .season-icon { font-size: 18px; }

  /* 季节图标 (参考 Allopneus SVG) */
  .icon-saison-img {
    width: auto;
    height: 1em;
    max-height: 18px;
    vertical-align: middle;
  }
  .tag.saison-ete .icon-saison-img,
  .tag.saison-hiver .icon-saison-img { max-height: 14px; }

  /* 4 saisons 图标 (参考 Allopneus SVG：半蓝太阳 + 半橙雪花) */
  .icon-4s-img {
    width: auto;
    height: 1em;
    max-height: 18px;
    vertical-align: middle;
  }
  .tag.saison-4s .icon-4s-img { max-height: 14px; }

  /* Immat search */
  .immat-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
  }
  .immat-input-wrap {
    position: relative;
  }
  .immat-flag {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    pointer-events: none;
  }
  .immat-input-wrap input {
    padding-left: 48px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
  }
  .immat-input-wrap input::placeholder {
    font-weight: 400;
    letter-spacing: 1px;
    color: #444;
    text-transform: none;
  }
  .immat-vehicle-result {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
  }
  .immat-vehicle-result--ok {
    background: rgba(79, 163, 53, 0.12);
    border: 1px solid var(--green);
    color: var(--black);
  }
  .immat-vehicle-result--error {
    background: rgba(180, 60, 60, 0.08);
    border: 1px solid #b43c3c;
    color: #8b2a2a;
  }
  .immat-vehicle-result code {
    font-size: 12px;
    background: rgba(0,0,0,0.06);
    padding: 2px 6px;
    border-radius: 4px;
  }
  .immat-vehicle-banner {
    margin-bottom: 14px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
  }
  .immat-vehicle-banner code {
    font-size: 12px;
    background: rgba(0,0,0,0.06);
    padding: 2px 6px;
    border-radius: 4px;
  }
  .immat-dims-label {
    font-weight: 600;
    margin-left: 6px;
  }
  .immat-dim-pill {
    display: inline-block;
    margin: 2px 4px 2px 0;
    padding: 6px 12px;
    font-size: 13px;
    font-family: inherit;
    color: var(--green-dark);
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--green);
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
  }
  .immat-dim-pill:hover {
    background: var(--green);
    color: #fff;
  }
  .immat-dims-hint {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-muted, #666);
  }

  /* Model search */
  .model-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 10px;
    align-items: end;
  }

  /* CTA Button */
  .btn-search {
    background: var(--green);
    color: var(--black);
    border: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 19px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-search:hover { background: var(--green-dark); transform: translateY(-2px); }
  .btn-search:active { transform: translateY(0); }
  .btn-search svg { width: 18px; height: 18px; }

  /* Separator */
  .search-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
  .quick-sizes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .quick-size {
    font-size: 14px;
    color: var(--muted);
    padding: 4px 12px;
    border: 1px solid var(--border);
    border-radius: 100px;
    cursor: pointer;
    cursor: pointer;
    transition: all 0.2s;
  }
  .quick-size:hover {
    border-color: var(--green);
    color: var(--green);
  }
  .quick-label { font-size: 14px; color: #555; }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: #ffffff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    overflow: hidden;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
  }
  .trust-icon {
    width: 38px;
    height: 38px;
    background: var(--green-glow);
    border: 1px solid rgba(108,192,74,0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .trust-icon svg { color: var(--green); width: 18px; height: 18px; }
  .trust-text strong { display: block; font-size: 14px; font-weight: 600; color: #1a1a1a; }
  .trust-text span { font-size: 14px; color: var(--muted); }

  /* ── PROMO STRIP ── */
  .promo-strip {
    background: var(--green);
    color: var(--black);
    text-align: center;
    padding: 14px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
  }
  .promo-strip a { color: var(--black); text-decoration: underline; margin-left: 12px; }

  /* ── BRANDS ── */
  .brands-section {
    padding: 32px 40px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .section-label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
  }
  .brands-grid {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .brand-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 16px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 1px;
    text-decoration: none;
  }
  .brand-card img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
  }
  .brand-card-fallback {
    display: none;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
  }
  .brand-card:hover {
    border-color: var(--green);
    color: var(--green);
    background: rgba(108,192,74,0.07);
  }

  /* ── FEATURES ── */
  .features {
    padding: 0 40px 80px;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 28px;
    transition: border-color 0.2s, transform 0.2s;
  }
  .feature-card:hover {
    border-color: var(--green);
    transform: translateY(-4px);
  }
  .feature-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 50px;
    color: var(--green);
    line-height: 1;
    margin-bottom: 12px;
  }
  .feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
  }
  .feature-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }


  /* ── RESULTS (référence Allopneus liste) ── */
  #results-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px 60px;
    display: none;
  }
  #results-section.visible { display: block; }

  .results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
    flex-wrap: wrap;
    gap: 12px;
  }
  .results-title-wrap { flex: 1; min-width: 0; }
  .results-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 28px;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    letter-spacing: 0.3px;
  }
  .results-dim { color: var(--green); }
  .results-subtitle {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
  }
  .results-count {
    font-size: 14px;
    color: var(--muted);
    background: #f0f0f0;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
  }
  .results-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
  }
  .results-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
  }
  .filter-label { font-size: 15px; color: var(--muted); margin-right: 4px; }
  .filter-btn {
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: white;
    font-size: 15px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
  }
  .filter-btn:hover { border-color: var(--green); color: var(--green); }
  .filter-btn.active { border-color: var(--green); background: var(--green); color: white; }
  .results-sort {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .sort-label { font-size: 15px; color: var(--muted); }
  .sort-btn {
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: white;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
  }
  .sort-btn:hover { border-color: var(--green); color: var(--green); }
  .sort-btn.active { border-color: var(--green); background: rgba(79,163,53,0.12); color: var(--green); }
  .tire-list-wrap {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
  }
  .third-party-wrap {
    margin-top: 28px;
    padding: 28px 24px 24px;
    border-top: 1px solid var(--border);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to bottom, rgba(79,163,53,0.04) 0%, transparent 100%);
    border-radius: 12px;
    border: 1px solid var(--border);
    border-top: 2px solid var(--green);
  }
  .btn-load-third-party {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    color: var(--green);
    background: white;
    border: 2px solid var(--green);
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    box-shadow: 0 2px 8px rgba(79,163,53,0.15);
  }
  .btn-load-third-party:hover {
    background: rgba(79,163,53,0.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79,163,53,0.2);
  }
  .third-party-section {
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
  }
  .third-party-section--hidden {
    display: none;
  }
  .third-party-title {
    font-size: 18px;
    margin: 0 0 12px 0;
    color: #1a1a1a;
  }
  /* 第三方与自有仓库同一视觉：共用 .tire-grid / .tire-card 布局，不覆盖 grid-template-columns */
  .third-party-section .tire-list-wrap {
    margin-top: 8px;
  }
  /* 品牌、花纹、尺寸行与自有仓库一致：向左靠齐（覆盖 .third-party-wrap 的 text-align: center） */
  .third-party-section .tire-info-col {
    text-align: left;
    align-items: flex-start;
  }
  .third-party-section .tire-info-line,
  .third-party-section .tire-name,
  .third-party-section .tire-dim {
    text-align: left;
  }
  .third-party-empty {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
  }
  .tire-grid { display: flex; flex-direction: column; gap: 0; }

  /* 5 列：花纹图(130px) | 能效标签 | 品牌型号信息 | logo | 价格 */
  .tire-card {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 10px 48px 10px 0;
    display: grid;
    grid-template-columns: 142px minmax(60px, auto) 1fr 140px auto;
    gap: 20px;
    align-items: center;
    transition: background 0.15s;
  }
  .tire-card:first-child { border-top: 1px solid var(--border); }
  .tire-card:hover { background: #f9fdf9; }

  /* Left: tire image placeholder */
  .tire-img-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .tire-img-hover-wrap {
    position: relative;
    display: inline-block;
  }
  .tire-img-hover-wrap .tire-profil-zoom {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 40px;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s, visibility 0.15s;
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
    border-radius: 8px;
    background: #fff;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tire-img-hover-wrap:hover .tire-profil-zoom {
    opacity: 1;
    visibility: visible;
  }
  .tire-profil-zoom-img {
    display: block;
    width: 130px;
    height: 130px;
    object-fit: contain;
    transform: scale(2);
    transform-origin: center center;
  }
  .tire-img {
    width: 130px; height: 130px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 34px;
    position: relative;
    overflow: hidden;
  }
  .tire-img:not(:has(img)) {
    border: 1px solid #e5e5e5;
  }
  .tire-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    position: absolute;
    inset: 0;
  }
  .tire-img-placeholder {
    font-size: 11px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
  }
  .tire-marque-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
    text-align: center;
    overflow: hidden;
    max-height: 32px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
  .tire-marque-logo img {
    max-height: 28px;
    height: auto;
    max-width: 80px;
    width: auto;
    object-fit: contain;
    object-position: center bottom;
    display: block;
    margin: 0 auto;
  }
  .tire-marque-logo .logo-fallback {
    display: none;
  }

  /* Brand logo col (between info and EU label)，显示放大 1 倍 */
  .tire-logo-col {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
    text-align: center;
  }
  .tire-logo-col img {
    max-height: 45px;
    height: auto;
    max-width: 128px;
    width: auto;
    object-fit: contain;
    display: block;
  }
  .tire-logo-col .logo-fallback {
    display: none;
    font-size: 18px;
    line-height: 1.2;
    max-width: 128px;
    word-break: break-word;
  }
  .tire-logo-col img.tire-logo-img[style*="display: none"] + .logo-fallback {
    display: block;
  }

  /* Middle: info */
  .tire-info-col { display: flex; flex-direction: column; gap: 6px; }

  .tire-stars { display: flex; align-items: center; gap: 6px; margin-bottom: 2px; }
  .stars { color: #f59e0b; font-size: 14px; letter-spacing: -1px; }
  .rating-text { font-size: 15px; font-weight: 700; color: #1a1a1a; }
  .reviews-text { font-size: 14px; color: var(--muted); }

  .tire-info-line--mobile-only { display: none; }
  .tire-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    color: #1a1a1a;
    letter-spacing: 0.3px;
    text-transform: uppercase;
  }
  .tire-name-marque { font-weight: 700; }
  .tire-name-profil { font-weight: 400; font-style: normal; }
  .tire-dim {
    font-size: 15px;
    color: var(--muted);
    font-weight: 500;
  }
  .tire-dim strong { color: var(--green); font-weight: 700; cursor: pointer; text-decoration: underline dotted; }

  .tire-tags { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-top: 4px; }
  .tire-supplement { margin-top: 6px; font-size: 11px; color: var(--muted); }
  .tire-eu-label, .tire-homologation, .tire-specificites { margin-top: 2px; }
  /* Étiquette EU visuelle (style référence: icône noir, flèche couleur, contraste lecture) */
  .tire-eu-label-svg { margin-top: 6px; display: inline-flex; flex-direction: column; gap: 3px; }
  .tire-eu-label-svg .eu-label-row { display: flex; align-items: center; gap: 4px; }
  .tire-eu-label-svg .eu-label-icon { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; flex-shrink: 0; }
  .tire-eu-label-svg .eu-label-icon img.eu-label-svg { display: block; width: 20px; height: 20px; object-fit: contain; }
  .tire-eu-label-svg .eu-label-arrow { display: inline-flex; align-items: center; justify-content: center; min-width: 26px; height: 18px; padding: 0 5px 0 7px; font-size: 11px; font-weight: 700; border-radius: 1px 0 0 1px; clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 50%, calc(100% - 5px) 100%, 0 100%); }
  .tire-eu-label-svg .eu-label-arrow-noise { background: #2B2B2B; color: #fff; clip-path: polygon(12% 0, 100% 0, 100% 100%, 12% 100%, 0 50%); }
  .tire-eu-label-svg .eu-label-db { font-size: 11px; color: #1a1a1a; margin-left: 4px; font-weight: 600; }
  .tire-eu-label-svg .eu-label-db-unit { font-size: 11px; font-weight: 500; opacity: .9; }
  .tire-qr-link { display: inline-block; margin-top: 4px; color: var(--green); }
  .tag {
    display: flex; align-items: center; gap: 5px;
    font-size: 14px; font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid var(--border);
    color: #444;
    background: white;
  }
  .tag.saison-ete { color: #e65100; border-color: #ffccbc; background: #fff3e0; }
  .tag.saison-hiver { color: #1565c0; border-color: #bbdefb; background: #e3f2fd; }
  .tag.saison-4s { color: #6a1b9a; border-color: #e1bee7; background: #f3e5f5; }
  .tag.tag-renforce { color: #2e7d32; border-color: #c8e6c9; background: #e8f5e9; }
  .tag.tag-runflat { color: #1565c0; border-color: #bbdefb; background: #e3f2fd; }
  .tag.tag-camionnette { color: #5d4037; border-color: #d7ccc8; background: #efebe9; }
  .tag.tag-homologation { color: #333; border-color: #e0e0e0; background: #f5f5f5; }
  .tag-homologation-icon .homolog-icon { width: auto; height: 1em; max-height: 14px; vertical-align: middle; }
  /* Prix du marché：内联显示在 Ajouter au panier 左侧 */
  .tire-action-row {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap; width: 100%; justify-content: flex-end;
  }
  .prix-marche-inline {
    font-size: 12px; color: var(--muted); min-width: 120px; min-height: 32px; text-align: right; line-height: 1.4; display: block;
  }
  .prix-marche-inline .prix-marche-label { display: block; font-weight: 600; color: #5d4037; margin-bottom: 2px; }
  .prix-marche-inline .prix-marche-item { display: block; }
  .prix-marche-inline .prix-marche-item strong { color: var(--green); }
  .prix-marche-inline .prix-marche-link { font-size: 11px; color: var(--green); margin-left: 4px; }
  .prix-marche-inline .prix-marche-loading { color: var(--muted); font-style: italic; }
  .prix-marche-inline .prix-marche-na { color: var(--muted); }

  /* Right: price + action. .tire-price-right = mobile only (3 lines right-aligned) */
  .tire-price-right { display: none; }
  .tire-price-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    min-width: 160px;
  }
  .price-with-label {
    display: flex;
    align-items: baseline;
    gap: 8px;
  }
  .price-montage-label {
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
    white-space: nowrap;
  }
  .price-unit {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 28px;
    color: #1a1a1a;
    line-height: 1.2;
    white-space: nowrap;
  }
  .price-unit-label { font-size: 14px; font-weight: 600; color: var(--muted); }
  .price-unit--breakdown .price-unit--smaller { font-size: 20px; }
  .price-unit--breakdown .price-unit-muted { font-size: 14px; font-weight: 600; color: var(--muted); }
  .price-for4 { font-size: 15px; color: var(--muted); }
  .price-for4 strong { color: var(--green); }
  .price-ht { font-size: 11px; color: var(--muted); }
  .delivery-info { font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 4px; }
  .delivery-info strong { color: var(--green); }

  .price-unit--base { color: var(--green); text-decoration: underline dashed; text-underline-offset: 2px; }
  .stock-badge { font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 5px; }
  .stock-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
  .stock-ok .stock-dot { background: var(--green); } .stock-ok { color: var(--green); }
  .stock-low .stock-dot { background: #ff9800; } .stock-low { color: #e65100; }
  .stock-out .stock-dot { background: #f44336; } .stock-out { color: #c62828; }

  .btn-add {
    background: var(--green); color: white; border: none;
    font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
    font-size: 17px; padding: 11px 22px; border-radius: 8px;
    cursor: pointer; transition: all 0.2s; letter-spacing: 0.5px;
    text-transform: uppercase; white-space: nowrap;
  }
  .btn-add:hover { background: var(--green-dark); }
  .btn-add:disabled { background: #ccc; cursor: not-allowed; }

  .no-results { text-align: center; padding: 48px 24px; color: var(--muted); }
  .no-results .no-results-icon { font-size: 50px; margin-bottom: 16px; display: block; }
  .no-results h3 { font-size: 20px; color: #333; margin-bottom: 8px; }
  .no-results p { font-size: 14px; max-width: 320px; margin: 0 auto; line-height: 1.5; }
  .third-party-section .no-results {
    padding: 40px 32px;
    max-width: 420px;
    margin: 0 auto;
  }
  .third-party-section .no-results p {
    max-width: 380px;
  }

  /* Rating stars helper */
  .spec-tag { font-size: 11px; padding: 3px 8px; background: #f0f2f0; border-radius: 4px; color: #555; font-weight: 600; }
  /* scrollbar */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: #f0f2f0; }
  ::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }

  /* ── Panier (drawer) ── */
  .panier-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
  }
  .panier-overlay.open {
    opacity: 1;
    visibility: visible;
  }
  .panier-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: white;
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .panier-drawer.open {
    transform: translateX(0);
  }
  .panier-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
  }
  .panier-header h2 {
    margin: 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #1a1a1a;
  }
  .panier-close {
    width: 40px;
    height: 40px;
    border: none;
    background: #f0f2f0;
    border-radius: 8px;
    font-size: 26px;
    line-height: 1;
    color: #555;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .panier-close:hover {
    background: #e0e0e0;
    color: #1a1a1a;
  }
  .panier-view {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
  }
  .panier-view--hidden {
    display: none !important;
  }
  .panier-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
  }
  .panier-empty {
    display: none;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    padding: 32px 16px;
  }
  .panier-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .panier-line {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    background: #f9faf9;
    border-radius: 8px;
    border: 1px solid var(--border);
  }
  .panier-line-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }
  .panier-line-name {
    font-weight: 700;
    font-size: 14px;
    color: #1a1a1a;
  }
  .panier-line-breakdown { font-size: 13px; color: var(--muted); margin-top: 2px; }
  .panier-line-breakdown strong { color: inherit; font-weight: 600; }
  .panier-line-dim {
    font-size: 14px;
    color: var(--muted);
  }
  .panier-line-qty {
    font-size: 14px;
    color: var(--muted);
    margin-top: 4px;
  }
  .panier-qty-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin-top: 8px;
    flex-shrink: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
  }
  .panier-qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 0;
    background: #f0f0f0;
    font-size: 18px;
    line-height: 1;
    color: var(--green);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .panier-qty-btn:hover {
    background: var(--green);
    color: #fff;
  }
  .panier-qty-btn:first-child { border-right: 1px solid var(--border); }
  .panier-qty-btn:last-child { border-left: 1px solid var(--border); }
  .panier-qty-num {
    min-width: 36px;
    padding: 0 8px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
  }
  .panier-line-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }
  .panier-line-price {
    font-weight: 700;
    font-size: 18px;
    color: var(--green);
  }
  .panier-remove {
    width: 32px;
    height: 32px;
    border: none;
    background: #eee;
    border-radius: 6px;
    font-size: 20px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .panier-remove:hover {
    background: #ffcdd2;
    color: #c62828;
  }
  .panier-footer {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    background: #fafafa;
    flex-shrink: 0;
  }
  .panier-total-breakdown { display: flex; flex-direction: column; gap: 4px; font-size: 14px; color: var(--muted); }
  .panier-avg-per-pneu { font-size: 12px; font-weight: 400; opacity: 0.85; }
  .panier-total-breakdown .panier-total-row { font-size: 14px; }
  .panier-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
  }
  .panier-total-row--main { font-size: 18px; margin-top: 4px; padding-top: 8px; border-top: 1px solid var(--border); }
  .panier-total-row strong {
    font-size: 24px;
    color: #1a1a1a;
  }
  .btn-panier-commande {
    width: 100%;
    padding: 14px 20px;
    background: var(--green);
    color: var(--black);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
  }
  .btn-panier-commande:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
  }
  .btn-panier-continue {
    width: 100%;
    padding: 10px 20px;
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .btn-panier-continue:hover {
    background: #f0f2f0;
    color: #1a1a1a;
  }

  /* Panier : formulaire de commande */
  .panier-checkout-intro {
    margin: 0 0 16px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.4;
  }
  .panier-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .panier-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .panier-field span {
    font-size: 15px;
    font-weight: 600;
    color: #333;
  }
  .panier-field em { color: #c62828; }
  .panier-field input,
  .panier-field textarea {
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
  }
  .panier-field input:focus,
  .panier-field textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(79,163,53,0.2);
  }
  .panier-field textarea { resize: vertical; min-height: 60px; }
  .panier-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .panier-address-choice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: #f9f9f9;
  }
  .panier-address-choice input[type="radio"] {
    margin: 0;
  }
  .panier-address-option {
    font-weight: 600;
    color: #333;
    cursor: pointer;
  }
  .panier-checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
  }

  /* Panier : page merci */
  .panier-merci {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    text-align: center;
  }
  .panier-merci-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--green);
    color: var(--black);
    font-size: 34px;
    font-weight: 900;
    line-height: 64px;
    margin-bottom: 20px;
  }
  .panier-merci h3 {
    margin: 0 0 12px;
    font-size: 22px;
    color: #1a1a1a;
  }
  .panier-merci p {
    margin: 0 0 24px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
    max-width: 280px;
  }

  /* ── Page indépendante : Finaliser la commande ── */
  .page-checkout {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 10000;
    display: none;
    flex-direction: column;
    overflow: hidden;
  }
  .page-checkout.page-checkout--open {
    display: flex;
  }
  .page-checkout-header {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    background: #fafafa;
  }
  .page-checkout-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: #1a1a1a;
    text-decoration: none;
  }
  .page-checkout-logo span { color: var(--green); }
  .page-checkout-logo { background: var(--green); color: #fff; padding: 6px 12px; border-radius: 6px; }
  .page-checkout-logo .site-logo-img { display: block; height: 32px; width: auto; }
  .page-checkout-title {
    margin: 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #333;
  }
  .page-checkout-back {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .page-checkout-back:hover {
    background: #f0f2f0;
    color: #1a1a1a;
  }
  .page-checkout-body {
    flex: 1;
    overflow-y: auto;
    padding: 32px 24px;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
  .page-checkout-view {
    display: block;
  }
  .page-checkout-view--hidden {
    display: none !important;
  }

  .tire-label-col {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    min-width: 0;
    margin-left: -12px;
  }

  /* 能效标签整体约 70% 缩放，更紧凑 */
  .tire-label-col .elc-simple {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 5px 4px;
    min-height: 44px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: #fff;
    border-radius: 3px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
  }

  .elc-simple .elc-block {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .elc-block .elc-svg,
  .elc-block .elc-img {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
  }

  /* 条块：矩形 + 右侧三角，约 70% 尺寸 */
  .elc-bar {
    --bar-color: #1a1a1a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 18px;
    padding: 3px 7px 3px 5px;
    border-radius: 1px 0 0 1px;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    box-sizing: content-box;
  }
  .elc-bar::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    width: 0;
    height: 0;
    margin-top: -7px;
    border-style: solid;
    border-width: 7px 0 7px 7px;
    border-color: transparent transparent transparent var(--bar-color);
  }
  .elc-fuel.elc-grade-a { background: #00A651; --bar-color: #00A651; }
  .elc-fuel.elc-grade-b { background: #90C23C; --bar-color: #90C23C; }
  .elc-fuel.elc-grade-c { background: #F7DC0E; --bar-color: #F7DC0E; }
  .elc-fuel.elc-grade-d { background: #E67E23; --bar-color: #E67E23; }
  .elc-fuel.elc-grade-e { background: #E84E0F; --bar-color: #E84E0F; }
  .elc-fuel.elc-grade-none { background: #bdbdbd; --bar-color: #bdbdbd; color: #555; }

  .elc-wet.elc-grade-a { background: #00A651; --bar-color: #00A651; }
  .elc-wet.elc-grade-b,
  .elc-wet.elc-grade-c { background: #2196F3; --bar-color: #2196F3; }
  .elc-wet.elc-grade-d { background: #E67E23; --bar-color: #E67E23; }
  .elc-wet.elc-grade-e { background: #E84E0F; --bar-color: #E84E0F; }
  .elc-wet.elc-grade-none { background: #bdbdbd; --bar-color: #bdbdbd; color: #555; }

  .elc-bar.elc-noise {
    background: #1a1a1a;
    --bar-color: #1a1a1a;
    min-width: 0;
    width: 14px;
    max-width: 14px;
    padding: 3px 3px;
    flex-shrink: 0;
  }

  .elc-db-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: 4px;
    line-height: 1.2;
    white-space: nowrap;
  }
  .elc-db-num {
    font-size: 11px;
    font-weight: 700;
    color: #1a1a1a;
  }
  .elc-db-unit {
    font-size: 7px;
    font-weight: 500;
    color: #1a1a1a;
  }

  /* ─── 竖屏 / 手机平板兼容（仅 max-width: 768px，电脑端不改动） ─── */
  @media (max-width: 768px) {
    html { font-size: 17px; }
    body { font-size: 1rem; }
    nav {
      padding: 0 12px;
      height: 56px;
    }
    .nav-logos .logo .site-logo-img { height: 32px; }
    .nav-eurotyre-logo, .nav-fleetpartner-logo {
      height: 28px;
      margin-left: 10px;
    }
    .nav-links {
      display: none;
    }
    .nav-actions a:first-child { display: none; }
    .btn-cart {
      padding: 6px 10px;
      font-size: 14px;
    }
    .btn-cart .cart-total-wrap { display: none !important; }
    .promo-strip {
      margin-top: 56px;
      padding: 10px 12px;
      font-size: 13px;
      text-align: center;
    }
    .promo-strip a { margin-left: 6px; }
    .hero { padding: 24px 16px 32px; }
    .hero-content { max-width: 100%; }
    .hero-content h1 { font-size: clamp(27px, 8vw, 38px); }
    .hero-sub { font-size: 14px; }
    .hero-stats { flex-wrap: wrap; gap: 12px; justify-content: center; }
    .stat-num { font-size: 21px; }
    .search-wrap { padding: 20px 16px; }
    .search-box {
      padding: 20px 16px 20px;
      border-radius: 12px;
    }
    .search-tabs { margin-bottom: 20px; padding: 3px; }
    .tab-btn { font-size: 13px; padding: 8px 10px; }
    .dim-row {
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }
    .dim-row .field-group:nth-child(5),
    .dim-row .field-group:nth-child(6) {
      grid-column: 1 / -1;
    }
    .dim-row .btn-search { width: 100%; }
    .immat-wrapper { grid-template-columns: 1fr; }
    .season-options { flex-wrap: wrap; }
    .brands-section { padding: 20px 16px; }
    .brands-grid { gap: 6px; }
    .brand-card {
      padding: 8px 12px;
      font-size: 17px;
    }
    .brand-card img { height: 32px; max-width: 80px; }
    .features {
      padding: 0 16px 40px;
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .feature-card { padding: 20px 18px; }
    .feature-num { font-size: 38px; }
    .feature-title { font-size: 18px; }
    #results-section { padding: 0 16px 40px; }
    .results-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .results-title { font-size: 23px; }
    .results-toolbar { width: 100%; }
    .sort-btns { flex-wrap: wrap; }
    .sort-btn { font-size: 12px; padding: 8px 12px; }
    .tire-grid { gap: 0; }
    .tire-card {
      display: grid;
      grid-template-columns: 80px 1fr auto;
      grid-template-rows: auto auto auto auto;
      padding: 16px;
      gap: 10px 12px;
      border-bottom: 1px solid var(--border);
    }
    .tire-card:first-child { border-top: 1px solid var(--border); }
    .tire-card > *:nth-child(1) { grid-column: 1; grid-row: 1; align-self: start; }
    .tire-card > *:nth-child(2) { grid-column: 2; grid-row: 1; align-self: start; }
    .tire-card > *:nth-child(3) { grid-column: 1 / -1; grid-row: 2; }
    .tire-card > *:nth-child(4) { display: none; }
    .tire-price-col {
      display: contents;
    }
    .tire-card .price-with-label {
      grid-column: 1 / -1;
      grid-row: 3;
      justify-content: center;
      text-align: center;
    }
    .tire-card .price-with-label .price-unit { display: none !important; }
    .tire-card .price-with-label .price-montage-label { font-size: 13px; color: var(--muted); }
    .tire-card .tire-price-right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 4px;
      grid-column: 3;
      grid-row: 1;
      justify-self: end;
      align-self: start;
      text-align: right;
    }
    .tire-card .tire-price-right .price-unit { font-size: 19px; }
    .tire-card .tire-price-right .price-unit--breakdown .price-unit--smaller { font-size: 14px; }
    .tire-card .tire-price-right .delivery-info,
    .tire-card .tire-price-right .stock-badge { font-size: 13px; }
    .tire-card .delivery-info,
    .tire-card .stock-badge { display: none !important; }
    .tire-card .tire-price-right .delivery-info,
    .tire-card .tire-price-right .stock-badge { display: flex !important; }
    .tire-card .tire-action-row {
      grid-column: 1 / -1;
      grid-row: 4;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
    .tire-card .prix-marche-inline {
      min-width: 0;
      font-size: 11px;
    }
    .tire-card .btn-add {
      flex-shrink: 0;
      padding: 10px 16px;
      font-size: 15px;
    }
    .tire-img-col {
      flex-direction: row;
      justify-content: flex-start;
      gap: 0;
    }
    .tire-img-hover-wrap .tire-profil-zoom { display: none !important; }
    .tire-img, .tire-img img { width: 80px; height: 80px; min-width: 80px; min-height: 80px; }
    .tire-card .tire-label-col { justify-content: flex-start; margin-left: 0; }
    .tire-name--desktop,
    .tire-dim--desktop { display: none !important; }
    .tire-info-line--mobile-only {
      display: block !important;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 17px;
      font-weight: 500;
      color: #1a1a1a;
      line-height: 1.35;
    }
    .tire-info-line--mobile-only .tire-info-dim {
      font-size: 17px;
      color: var(--green);
      font-weight: 700;
      text-decoration: underline dotted;
      cursor: pointer;
    }
    .tire-info-line--mobile-only .tire-info-marque {
      text-transform: uppercase;
      font-weight: 700;
    }
    .tire-info-line--mobile-only .tire-info-profil {
      font-weight: 400;
    }
    .tire-tags { flex-wrap: wrap; }
    .no-results { padding: 32px 16px; }
    .panier-drawer { max-width: 100%; }
    .panier-header { padding: 14px 16px; }
    .panier-header h2 { font-size: 21px; }
    .panier-body { padding: 12px 16px; }
    .panier-line {
      flex-direction: column;
      align-items: stretch;
      gap: 8px;
    }
    .panier-line-info { flex-wrap: wrap; }
    .panier-line-name { font-size: 14px; }
    .panier-qty-wrap { margin-top: 4px; }
    .panier-footer { padding: 16px; }
    .btn-panier-commande, .btn-panier-continue { width: 100%; }
    .page-checkout-header {
      flex-wrap: wrap;
      padding: 12px 16px;
      gap: 8px;
    }
    .page-checkout-title { font-size: 17px; }
    .page-checkout-back { font-size: 14px; padding: 6px 12px; }
    .page-checkout-body { padding: 20px 16px; }
    .panier-form { gap: 12px; }
    .panier-field input, .panier-field textarea { font-size: 16px; }
    .panier-checkout-actions .btn-panier-commande,
    .panier-checkout-actions .btn-panier-continue { width: 100%; }
    .filter-btn { font-size: 13px; padding: 8px 12px; min-height: 44px; }
    .btn-load-third-party { width: 100%; justify-content: center; min-height: 44px; }
    .btn-add { min-height: 44px; }
    .panier-qty-btn { min-width: 44px; min-height: 44px; }
    .panier-close { min-width: 44px; min-height: 44px; }
    .tab-btn { min-height: 44px; }
    select, input[type="text"] { min-height: 44px; font-size: 17px; }
  }