
:root {
  --seo-bg: #f6f3ee;
  --seo-card: #ffffff;
  --seo-accent: #ee1e30;
  --seo-accent-2: #1f7ae0;
  --seo-text: #2b2a28;
  --seo-muted: #6f665a;
  --seo-border: #e6e2dc;
  --seo-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --seo-shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.06);
  --seo-radius: 16px;
  --seo-radius-sm: 12px;
}

/* Base */
.seo-category,
.seo-make,
.seo-cats,
.seo-picks,
.seo-fit,
.seo-brands,
.seo-compare,
.seo-items,
.seo-kit,
.seo-ship,
.seo-b2b,
.seo-anti,
.seo-qa,
.seo-faq,
.seo-reviews {
  margin: 16px 0 38px;
  color: var(--seo-text);
  animation: seoFadeUp 0.7s ease both;
}

.model_make {
    display: block;
    width: 100%;
    background: #ee1e2f;
    padding: 10px;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    border-radius: 14px;
}

.model_make p{
    padding: 0;
    margin: 0;
}

/* HERO */
.seo-hero {
  position: relative;
  background: linear-gradient(135deg, #f3efe9, #e9f2ef);
  border-radius: var(--seo-radius);
  padding: 22px;
  box-shadow: var(--seo-shadow);
  overflow: hidden;
}
.seo-hero::after {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 30% 30%, rgba(238, 30, 48, 0.18), transparent 60%);
  transform: rotate(12deg);
}
.seo-hero h2 {
  margin: 0 0 8px;
  font-size: 2rem !important;
}
.seo-hero p {
  color: var(--seo-muted);
  line-height: 1.6;
}

/* Section headers */
.seo-category h2,
.seo-make h2,
.seo-cats h2,
.seo-picks h2,
.seo-fit h2,
.seo-brands h2,
.seo-compare h2,
.seo-items h2,
.seo-kit h2,
.seo-ship h2,
.seo-b2b h2,
.seo-anti h2,
.seo-qa h2,
.seo-faq h2,
.seo-reviews h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

/* Grid */
.seo-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Cards (default) */
.seo-card {
  background: var(--seo-card);
  border: 1px solid var(--seo-border);
  border-radius: 14px;
  padding: 12px !important;
  box-shadow: var(--seo-shadow-soft);
  margin: 5px 0 !important;
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.seo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.10);
  border-color: #ded6cc;
}
.seo-card-body {
  display: block;
}
.seo-card__img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f2f2f2;
  margin-bottom: 10px;
}
.seo-card__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.4s ease;
}
.seo-card:hover .seo-card__img img {
  transform: scale(1.04);
}
.seo-card__title {
  font-weight: 700;
  font-size: 0.98rem;
  margin: 6px 0 6px;
}
.seo-card__desc {
  color: var(--seo-muted);
  font-size: 0.92rem;
  line-height: 1.45;
  margin: 0 0 10px;
}

/* CTA */
.seo-cta {
  background: var(--seo-card);
  border: 1px dashed #d9d2c8;
  border-radius: var(--seo-radius-sm);
  padding: 14px 16px;
  box-shadow: var(--seo-shadow-soft);
}

/* Bullets */
.seo-bullets {
  margin: 8px 0 0;
  padding-left: 18px;
}
.seo-bullets li {
  margin: 6px 0;
}

/* Buttons */
.seo-cats a,
.seo-items a,
.seo-faq a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--seo-accent);
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 16px rgba(238, 30, 48, 0.25);
}
.seo-cats a:hover,
.seo-items a:hover,
.seo-faq a:hover {
  background: var(--seo-accent-2);
  transform: translateY(-2px);
}

.compare-table tr {
    border-bottom: 1px solid;
}

.compare-table td {
    border-left: 1px solid;
    border-right: 1px solid;
    padding: 5px;
}

.compare-table td a {
    text-decoration: none;
    font-size: 14px;
    color: #000;
    opacity: 0.7;
}

.compare-table td a:hover {
    opacity: 1;
}

/* Compare cards */
.seo-compare-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.compare-card {
  background: var(--seo-card);
  border: 1px solid var(--seo-border);
  border-radius: 12px;
  padding: 12px;
  box-shadow: var(--seo-shadow-soft);
}
.compare-title {
  font-weight: 700;
  margin: 0 0 8px;
}
.compare-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.95em;
}
.compare-row span:first-child {
  color: var(--seo-muted);
}

/* FAQ */
.seo-faq-item {
  background: var(--seo-card);
  border: 1px solid var(--seo-border);
  border-radius: 12px;
  padding: 12px 14px;
  margin: 8px 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.seo-faq-item p {
    padding: 0;
    margin: 0;
}

.seo-faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--seo-shadow-soft);
}
.seo-faq-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

/* Section flavor differences */
.seo-picks {
  background: linear-gradient(180deg, #fff7f7, transparent 60%);
  border-radius: var(--seo-radius);
  padding: 6px 10px;
}
.seo-brands {
  background: linear-gradient(180deg, #f7fbff, transparent 60%);
  border-radius: var(--seo-radius);
  padding: 6px 10px;
}
.seo-anti {
  background: linear-gradient(180deg, #fffaf3, transparent 60%);
  border-radius: var(--seo-radius);
  padding: 6px 10px;
}
.seo-reviews {
  background: linear-gradient(180deg, #f6fff8, transparent 60%);
  border-radius: var(--seo-radius);
  padding: 6px 10px;
}

/* === Recommended Products: compact + premium === */
/* === Recommended Products: 2 clean tiles === */
.seo-items .seo-grid {
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 640px) {
  .seo-items .seo-grid { grid-template-columns: 1fr; }
}

.seo-items .seo-card {
  padding: 12px 12px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #ece6de;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height: 100%;
}
.seo-items .seo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.12);
  border-color: #e2d7ca;
}

.seo-items .seo-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: #f4f1ec;
  margin-bottom: 10px;
}
.seo-items .seo-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  background: #f7f5f1;
}

.seo-items .seo-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 4px 0 6px;
  line-height: 1.25;
}

.seo-items .seo-card__desc {
  font-size: 0.92rem;
  color: #6f665a;
  line-height: 1.45;
  margin: 0 0 12px;
  max-height: 4.35em;
  overflow: hidden;
}

.seo-items .btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 9px;
  background: #ee1e30;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(238, 30, 48, 0.22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.seo-items .btn-buy:hover {
  background: #1f7ae0;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(31, 122, 224, 0.22);
}

/* Animations */
@keyframes seoFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes seoPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(238, 30, 48, 0.0); }
  50% { box-shadow: 0 0 0 6px rgba(238, 30, 48, 0.08); }
}
.seo-cta {
  animation: seoPulse 3s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 640px) {
  .seo-hero { padding: 16px; }
  .seo-card__title { font-size: 0.95rem; }
  .seo-category,
  .seo-make,
  .seo-cats,
  .seo-picks,
  .seo-fit,
  .seo-brands,
  .seo-compare,
  .seo-items,
  .seo-kit,
  .seo-ship,
  .seo-b2b,
  .seo-anti,
  .seo-qa,
  .seo-faq,
  .seo-reviews {
    margin: 12px 0 20px;
  }
}




/* ========== Payment & Shipping blocks ========== */
.pay-ship{
  --radius: 22px;
  --shadow: 0 18px 45px rgba(0,0,0,.10);
  --shadow2: 0 10px 25px rgba(0,0,0,.08);
  --border: rgba(255,255,255,.12);

  padding: 28px 16px;
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(900px 320px at 12% 0%, rgba(255,255,255,.12), transparent 60%),
    radial-gradient(900px 340px at 92% 10%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(135deg, #0b1020, #0a1227 60%, #070d1a);
  color: #eaf0ff;
  overflow: hidden;
  position: relative;
}

.pay-ship::after{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(420px 220px at 30% 12%, rgba(120,180,255,.14), transparent 65%),
    radial-gradient(520px 260px at 75% 30%, rgba(168,120,255,.12), transparent 70%);
  pointer-events:none;
}

.pay-ship__header{
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto 18px auto;
  text-align: center;
}

.pay-ship__title{
  margin: 0 0 8px 0;
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: .2px;
  color:#fff;
}

.pay-ship__subtitle{
  margin: 0;
  opacity: .82;
  line-height: 1.5;
  font-size: 14.5px;
}

.pay-ship__grid{
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 900px){
  .pay-ship__grid{ grid-template-columns: 1fr; }
}

/* Card */
.info-card{
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  border: 1px solid var(--border);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.info-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(520px 220px at 25% 0%, rgba(87,160,255,.20), transparent 62%),
    radial-gradient(520px 240px at 85% 10%, rgba(168,120,255,.18), transparent 70%);
  opacity: .45;
  pointer-events:none;
}

.info-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(255,255,255,.18);
}

.info-card__top{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.info-card__icon{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 25px rgba(0,0,0,.10);
}

.info-card__icon svg{
  width: 26px;
  height: 26px;
  opacity: .95;
}

.info-card__head{
  flex: 1;
  min-width: 0;
}

.info-card__badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .2px;
  background: rgba(120,180,255,.14);
  border: 1px solid rgba(120,180,255,.24);
  color: #d7e8ff;
  margin-bottom: 10px;
}

.info-card__badge--alt{
  background: rgba(168,120,255,.14);
  border-color: rgba(168,120,255,.22);
  color: #efe2ff;
}

.info-card__title{
  margin: 0 0 10px 0;
  font-size: 18px;
  letter-spacing: .2px;
  color: #fff;
}

.pill-row{
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 12px 0;
}

.pill{
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  opacity: .95;
}

/* Feature list */
.feature-list{
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  display: grid;
  gap: 10px;
}

.feature-list__item{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.45;
  font-size: 14px;
  opacity: .92;
}

.feature-list__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 5px;
  background: rgba(120,180,255,.85);
  box-shadow: 0 0 0 4px rgba(120,180,255,.18);
  flex: 0 0 auto;
}

.feature-list__dot--alt{
  background: rgba(168,120,255,.9);
  box-shadow: 0 0 0 4px rgba(168,120,255,.18);
}

/* Footer */
.info-card__footer{
  position: relative;
  z-index: 1;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.hint{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(120,180,255,.10);
  border: 1px solid rgba(120,180,255,.16);
  font-size: 13px;
  opacity: .98;
}

.hint--alt{
  background: rgba(168,120,255,.10);
  border-color: rgba(168,120,255,.16);
}

.hint__spark{
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
}

.hint__text b{ font-weight: 700; }

.info-card__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 650;
  font-size: 14px;
  text-decoration: none;
  color: #0b1020;
  background: rgba(120,180,255,.95);
  border: 1px solid rgba(120,180,255,1);
  box-shadow: 0 12px 26px rgba(87,160,255,.24);
  transition: transform .2s ease, filter .2s ease;
  white-space: nowrap;
}

.info-card__cta--alt{
  background: rgba(168,120,255,.95);
  border-color: rgba(168,120,255,1);
  box-shadow: 0 12px 26px rgba(168,120,255,.22);
}

.info-card__cta:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.info-card__cta-arrow{
  font-size: 18px;
  line-height: 1;
}

/* Optional: compact mode if you place it inside small column */
@media (max-width: 420px){
  .info-card{ padding: 16px; }
  .info-card__icon{ width: 48px; height: 48px; border-radius: 14px; }
}




.b2b-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.b2b-modal.is-open { display: block; }

.b2b-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 16, 0.6);
  backdrop-filter: blur(4px);
}

.b2b-modal__dialog {
  position: relative;
  z-index: 1;
  max-width: 520px;
  width: calc(100% - 24px);
  margin: 6vh auto 0;
  border-radius: 18px;
  padding: 20px;
  color: #eaf0ff;
  background:
    radial-gradient(420px 220px at 20% 0%, rgba(87,160,255,.16), transparent 62%),
    radial-gradient(420px 240px at 85% 10%, rgba(168,120,255,.14), transparent 70%),
    linear-gradient(135deg, #0b1020, #0a1227 60%, #070d1a);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.b2b-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: #eaf0ff;
  cursor: pointer;
}

.b2b-modal__title {
  margin: 0 0 6px;
  font-size: 20px;
  letter-spacing: .2px;
}

.b2b-modal__subtitle {
  margin: 0 0 14px;
  opacity: .8;
  font-size: 14px;
}

.b2b-form {
  display: grid;
  gap: 10px;
}

.b2b-field span {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  opacity: .85;
}

.b2b-field input,
.b2b-field textarea {
  width: 100%;
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: #eaf0ff;
  outline: none;
}

.b2b-submit {
  margin-top: 6px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(120,180,255,1);
  background: rgba(120,180,255,.95);
  color: #0b1020;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(87,160,255,.24);
}

.b2b-btn {
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgb(238 30 48);
  background: rgb(238 30 48);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

