/* Design tokens live in design-system.css, loaded before this file. */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; }

/* Header, footer, cart-drawer chrome and buttons now live in design-system.css. */

/* ——— Sections ——— */
.section-block {
  padding: var(--section-py) 0;
}

.section-muted { background: var(--sand); }

/* .section-head/.section-title/.section-sub/.section-accent now live in design-system.css. */

/* ——— Hero ——— */
.home-hero {
  padding: 3.5rem 0 4rem;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,122,69,.12), transparent 42%),
    linear-gradient(180deg, #fff 0%, var(--sand) 100%);
}

.hero-eyebrow {
  display: inline-block;
  color: var(--coral);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}

.hero-heading {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-visual {
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  max-height: 560px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-visual-fallback {
  height: 100%;
  min-height: 360px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: .75rem;
  background: linear-gradient(160deg, #fff, var(--coral-soft));
  color: var(--coral);
}

.hero-visual-fallback i { font-size: 4rem; }
.hero-visual-fallback span { color: var(--muted); font-weight: 600; }

/* ——— Features ——— */
.feature-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.15rem;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

.feature-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(20,20,20,.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--coral-soft);
  color: var(--coral);
  font-size: 1.25rem;
  margin-bottom: .9rem;
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .35rem;
}

.feature-text {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}

/* ——— Sport cards ——— */
.sport-card {
  display: block;
  text-align: center;
  color: var(--ink);
}

.sport-card-media {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  margin-bottom: .75rem;
  transition: transform .25s ease, box-shadow .25s ease;
}

.sport-card:hover .sport-card-media {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.sport-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sport-card-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  background: var(--panel);
  color: var(--coral);
  font-size: 2rem;
}

.sport-card-name {
  font-size: .95rem;
  font-weight: 700;
  margin: 0;
}

/* ——— Product cards ——— */
.product-card {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card-media {
  position: relative;
  aspect-ratio: 1;
  background: var(--panel);
  overflow: hidden;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.product-card:hover .product-card-media img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  z-index: 1;
  background: var(--coral);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .28rem .55rem;
  border-radius: 6px;
}

.product-card-body { padding: .9rem 1rem 1.1rem; }

.product-card-title {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-price .current {
  color: var(--coral);
  font-weight: 700;
}

.product-card-price .was {
  color: var(--muted);
  text-decoration: line-through;
  margin-left: .4rem;
  font-size: .85rem;
}

/* ——— Series banners ——— */
.series-banner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  min-height: 160px;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  padding: 1.5rem 1.75rem;
  gap: 1rem;
}

.series-kicker {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  opacity: .85;
  margin-bottom: .35rem;
}

.series-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: .04em;
  margin-bottom: .75rem;
  line-height: 1;
}

.series-cta {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-weight: 700;
  font-size: .9rem;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  padding: .45rem 1rem;
}

.series-banner-art {
  display: grid;
  place-items: center;
  font-size: 3rem;
  opacity: .9;
}

.series-banner-art img {
  width: 220px;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0,0,0,.25);
}

.series-orange { background: linear-gradient(120deg, #ff7a45, #ffb347); }
.series-blue { background: linear-gradient(120deg, #1f6feb, #58a6ff); }
.series-green { background: linear-gradient(120deg, #1f9d68, #6fd3a5); }
.series-gold { background: linear-gradient(120deg, #d4a017, #f0c75e); color: #1a1200; }
.series-gold .series-cta { background: rgba(0,0,0,.12); border-color: rgba(0,0,0,.2); }
.series-cyan { background: linear-gradient(120deg, #0891b2, #67e8f9); color: #062830; }
.series-cyan .series-cta { background: rgba(0,0,0,.1); border-color: rgba(0,0,0,.18); }
.series-pink { background: linear-gradient(120deg, #e11d8f, #fb7185); }
.series-purple { background: linear-gradient(120deg, #5b21b6, #a78bfa); }
.series-navy { background: linear-gradient(120deg, #0f172a, #334155); }

/* ——— Split + checklist ——— */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: .7rem;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--coral-soft);
  color: var(--coral);
  font-size: .75rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.manufacturing-visual {
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: .75rem;
  background: linear-gradient(160deg, var(--panel), var(--coral-soft));
  color: var(--coral-dark);
  box-shadow: var(--shadow);
}

.manufacturing-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manufacturing-visual i { font-size: 3.5rem; }
.manufacturing-visual span { color: var(--muted); font-weight: 600; font-size: .9rem; }

/* ——— Style CTA ——— */
.style-cta {
  padding: 4.5rem 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,122,69,.18), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255,176,102,.2), transparent 40%),
    linear-gradient(180deg, #fff7f2, #ffe8db);
}

.style-cta-lead {
  color: var(--ink);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  max-width: 40rem;
  margin-inline: auto;
}

.style-cta-title {
  font-family: var(--font-display);
  color: var(--coral);
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  letter-spacing: .03em;
  margin: 0;
}

/* ——— News ——— */
.news-card { display: block; color: var(--ink); }

.news-card-media {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  margin-bottom: .9rem;
  border: 1px solid var(--line);
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 1.75rem;
}

.news-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .35rem;
}

.news-card-excerpt {
  color: var(--muted);
  font-size: .9rem;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ——— Value bar ——— */
.value-bar {
  background: var(--panel);
  border-top: 1px solid var(--line);
  padding: 1.75rem 0;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  justify-content: center;
}

.value-item i {
  color: var(--coral);
  font-size: 1.4rem;
  margin-top: .1rem;
}

.value-item strong {
  display: block;
  font-size: .92rem;
}

.value-item span {
  display: block;
  color: var(--muted);
  font-size: .8rem;
}

/* ——— Trust strip ——— */
.trust-strip {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.trust-strip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .95rem;
  border-radius: var(--radius-pill);
  background: var(--panel);
  color: var(--muted);
  font-weight: 600;
  font-size: .84rem;
  white-space: nowrap;
}

.trust-chip i { color: var(--coral-dark); }

/* ——— Process steps ——— */
.process-step-num {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  line-height: 1;
  color: var(--coral-soft);
  -webkit-text-stroke: 1px var(--coral);
  margin-bottom: .75rem;
  display: block;
}

.process-step-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: .4rem;
}

.process-step-text {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
  margin: 0;
}

/* ——— Testimonials ——— */
.testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: .85rem;
  margin-bottom: .75rem;
}

.testimonial-quote {
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--panel);
  flex-shrink: 0;
}

.testimonial-avatar-fallback {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--coral-soft);
  color: var(--coral-dark);
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-name { font-weight: 700; font-size: .92rem; margin: 0; }
.testimonial-role { color: var(--muted); font-size: .8rem; margin: 0; }

/* ——— Commitments band ——— */
.commitments-band {
  background: linear-gradient(135deg, var(--color-secondary-600), var(--color-secondary-700));
  color: #fff;
  padding: 3rem 0;
}

.commitments-band .section-eyebrow { color: var(--color-primary-300); }
.commitments-band .section-title { color: #fff; }

.commit-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}

.commit-item i {
  color: var(--color-primary-300);
  font-size: 1.5rem;
  margin-top: .1rem;
}

.commit-item strong {
  display: block;
  font-size: .95rem;
  margin-bottom: .15rem;
}

.commit-item span {
  display: block;
  color: rgba(255,255,255,.68);
  font-size: .84rem;
  line-height: 1.4;
}

/* ——— FAQ preview ——— */
.faq-preview .accordion-button {
  font-weight: 600;
  font-size: .96rem;
}

.faq-preview .accordion-button:not(.collapsed) {
  color: var(--coral-dark);
  background: var(--coral-soft);
}

.faq-preview .accordion-button:focus {
  box-shadow: 0 0 0 3px var(--coral-soft);
}

/* ——— Newsletter ——— */
.newsletter-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(255,122,69,.10), transparent 45%),
    var(--sand);
  text-align: center;
}

.newsletter-microcopy {
  color: var(--muted);
  font-size: .82rem;
  margin-top: .75rem;
}

/* ——— Empty ——— */
.empty-panel {
  text-align: center;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 2.75rem 1.25rem;
  color: var(--muted);
}

.empty-panel i {
  font-size: 1.75rem;
  color: var(--coral);
  display: block;
  margin-bottom: .75rem;
}

/* Footer and cart-drawer chrome now live in design-system.css. */

/* ——— Shared utils ——— */
.text-coral { color: var(--coral-dark) !important; }
.bg-sand { background: var(--sand); }
.cms-page__inner {
  max-width: 920px;
}

.cms-content {
  line-height: 1.7;
  color: var(--ink, #1a1a1a);
}

.cms-content > *:first-child {
  margin-top: 0;
}

.cms-content h2,
.cms-content h3,
.cms-content h4 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.cms-content p,
.cms-content ul,
.cms-content ol {
  margin-bottom: 1rem;
}

.cms-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius, 8px);
}

.cms-content a {
  color: var(--coral, #e85d4c);
}

.cms-content table {
  width: 100%;
  margin-bottom: 1.25rem;
  border-collapse: collapse;
}

.cms-content table th,
.cms-content table td {
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.cms-content .row,
.cms-content .container,
.cms-content section {
  margin-bottom: 1.5rem;
}

.account-nav .nav-link.active {
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
}

.product-gallery-main {
  aspect-ratio: 1;
  background: var(--sand);
  overflow: hidden;
  border-radius: var(--radius);
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-block {
  min-height: 40vh;
  display: grid;
  place-items: center;
  background: var(--sand);
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius);
}

/* ——— Shop page ——— */
.shop-banner {
  position: relative;
  padding: 3.25rem 0 2.75rem;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,122,69,.16), transparent 42%),
    linear-gradient(135deg, #fff7f2 0%, #ffe8db 55%, #fff 100%);
  overflow: hidden;
}

.shop-banner::before,
.shop-banner::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,122,69,.18);
  border-radius: 50%;
  pointer-events: none;
}

.shop-banner::before {
  width: 420px;
  height: 420px;
  right: -80px;
  top: -140px;
}

.shop-banner::after {
  width: 260px;
  height: 260px;
  right: 40px;
  top: -40px;
}

.shop-banner-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.03em;
  margin-bottom: .5rem;
  position: relative;
  z-index: 1;
}

.shop-breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  align-items: center;
  color: var(--muted);
  font-size: .9rem;
}

.shop-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.shop-breadcrumb a:hover { color: var(--coral); }

.shop-layout { padding-top: 2.5rem; }

.shop-sidebar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.shop-filter-block {
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.shop-filter-title {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}

.shop-search {
  position: relative;
}

.shop-search i {
  position: absolute;
  left: .85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: .9rem;
}

.shop-search input,
.shop-input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .65rem .9rem .65rem 2.2rem;
  font-size: .92rem;
  outline: none;
  background: var(--sand);
}

.shop-input { padding-left: .9rem; border-radius: 10px; }

.shop-search input:focus,
.shop-input:focus {
  border-color: var(--coral);
  background: #fff;
}

.shop-cat-list,
.shop-cat-children {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shop-cat-list > li { margin-bottom: .15rem; }

.shop-cat-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  padding: .55rem .7rem;
  border-radius: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: .92rem;
  transition: background .15s ease, color .15s ease;
}

.shop-cat-list a:hover,
.shop-cat-list a.active {
  background: var(--coral-soft);
  color: var(--coral);
}

.shop-cat-count {
  background: var(--sand);
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  border-radius: 999px;
  padding: .05rem .5rem;
}

.shop-cat-list a.active .shop-cat-count {
  background: var(--coral);
  color: #fff;
}

.shop-cat-children {
  padding-left: .75rem;
  margin-bottom: .35rem;
}

.shop-cat-children a {
  font-size: .86rem;
  font-weight: 500;
  color: var(--muted);
}

.shop-check-list {
  display: grid;
  gap: .45rem;
}

.shop-check {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .92rem;
  cursor: pointer;
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .75rem 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.shop-results {
  color: var(--muted);
  font-size: .92rem;
}

.shop-sort {
  min-width: 190px;
  border-radius: 999px;
  border-color: var(--line);
  font-size: .9rem;
}

.shop-product-card .product-card-body { text-align: center; }

.product-card-cat {
  color: var(--coral);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.shop-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-top: 2.25rem;
}

.page-pill {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  text-decoration: none;
  font-weight: 600;
  background: var(--coral-soft);
  color: var(--coral);
}

.page-pill.active,
.page-pill:hover {
  background: var(--ink);
  color: #fff;
}

.page-ellipsis {
  width: 24px;
  display: inline-grid;
  place-items: center;
  color: var(--muted);
}

.shop-sport-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: center;
}

.shop-sport-chip {
  display: inline-flex;
  align-items: center;
  padding: .55rem 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
}

.shop-sport-chip:hover {
  border-color: var(--coral);
  color: var(--coral);
  background: var(--coral-soft);
}

.shop-cta-band {
  background: linear-gradient(120deg, #1a1a1a, #2c211c);
  color: #fff;
  padding: 2.75rem 0;
}

.shop-cta-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 750;
  letter-spacing: -0.02em;
}

.shop-cta-text { color: rgba(255,255,255,.72); }

.shop-cta-band .btn-outline-soft {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}

.shop-cta-band .btn-outline-soft:hover {
  background: #fff;
  color: var(--ink);
}

/* ——— Shop promo banners ——— */
.shop-promo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 168px;
  display: flex;
  align-items: center;
  padding: 1.5rem 1.75rem;
  color: #fff;
  box-shadow: var(--shadow);
}

.shop-promo::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  pointer-events: none;
}

.shop-promo-a { background: linear-gradient(120deg, #ff7a45, #ff9a5c); }
.shop-promo-b { background: linear-gradient(120deg, #1a1a1a, #3a2b23); }

.shop-promo-body { position: relative; z-index: 1; }

.shop-promo-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
  font-weight: 700;
  opacity: .9;
  margin-bottom: .4rem;
}

.shop-promo-title {
  font-weight: 800;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  letter-spacing: -0.02em;
  margin-bottom: .35rem;
}

.shop-promo-text {
  font-size: .9rem;
  opacity: .9;
  margin-bottom: .9rem;
}

/* ——— Sidebar promo ——— */
.shop-side-promo {
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(255,255,255,.14), transparent 45%),
    linear-gradient(150deg, #1a1a1a, #3a2b23);
}

.shop-side-promo-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .68rem;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: .35rem;
}

.shop-side-promo-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

/* ——— Active filter chips ——— */
.shop-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
}

.shop-chips-label {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 600;
}

.shop-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: var(--coral-soft);
  color: var(--coral);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
}

.shop-chip:hover { background: var(--coral); color: #fff; }

.shop-chip-clear {
  font-size: .82rem;
  color: var(--muted);
  text-decoration: underline;
}

.shop-chip-clear:hover { color: var(--coral); }

/* ——— Price range slider ——— */
.shop-range { accent-color: var(--coral); }

.shop-price-values {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: .1rem;
}

@media (max-width: 991.98px) {
  .shop-sidebar {
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  .shop-filters-panel .offcanvas-body {
    padding: 1rem !important;
  }
}

/* ——— Mobile ——— */
@media (max-width: 991.98px) {
  .home-hero { padding: 2rem 0 2.5rem; }
  .section-block { padding: 3rem 0; }
  .series-banner {
    grid-template-columns: 1fr;
    min-height: 0;
    text-align: center;
  }
  .series-banner-art { order: -1; }
  .series-banner-art img { width: 100%; max-width: 320px; height: 150px; }
  .value-item { justify-content: flex-start; }
  .feature-tile { padding: 1.1rem .9rem; }
  .feature-title { font-size: .92rem; }
  .process-step-num { font-size: var(--text-5xl); }
  .commit-item { justify-content: flex-start; }
}

@media (max-width: 575.98px) {
  .hero-heading { font-size: 2.15rem; }
  .style-cta { padding: 3.25rem 0; }
  .product-card-body { padding: .75rem .8rem .9rem; }
  .section-title { font-size: 1.45rem; }
  .shop-banner { padding: 2.25rem 0; }
  .shop-toolbar { align-items: stretch; }
  .shop-sort { width: 100%; }
  .trust-strip-row { gap: .4rem; }
  .trust-chip { font-size: .78rem; padding: .4rem .75rem; }
}

/* ==========================================================================
   Bulk Ordering Program page
   ========================================================================== */
.bulk-hero {
  padding: 3.5rem 0 3rem;
  background:
    radial-gradient(circle at 88% 15%, rgba(255,122,69,.12), transparent 45%),
    linear-gradient(180deg, #fff 0%, var(--sand) 100%);
}
.bulk-kicker {
  display: inline-block;
  color: var(--coral);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.bulk-hero-title {
  font-weight: 800;
  font-size: clamp(2.1rem, 5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--coral-dark);
  margin-bottom: 1rem;
}
.bulk-hero-sub { font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-bottom: .65rem; }
.bulk-hero-highlight { color: var(--coral-dark); font-weight: 700; margin-bottom: .75rem; }
.bulk-hero-desc { color: var(--muted); max-width: 34rem; margin-bottom: 1.25rem; }
.bulk-contact-chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.bulk-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1rem; border-radius: var(--radius-pill);
  background: var(--coral-soft); color: var(--coral-dark);
  font-weight: 700; text-decoration: none; font-size: .92rem;
}
.bulk-chip.bulk-chip-muted { background: var(--panel); color: var(--ink); font-weight: 600; }
.bulk-hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5 / 4;
}
.bulk-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Category cards */
.bulk-cat-card {
  display: block; text-decoration: none; color: var(--ink);
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  height: 100%;
}
.bulk-cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: var(--coral-dark); }
.bulk-cat-media { aspect-ratio: 1 / 1; overflow: hidden; }
.bulk-cat-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--transition-slow); }
.bulk-cat-card:hover .bulk-cat-media img { transform: scale(1.06); }
.bulk-cat-title { padding: .85rem 1rem; font-weight: 700; text-align: center; }
.bulk-cat-title i { color: var(--coral); }

/* Why choose us */
.bulk-why-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.75rem 1.35rem; height: 100%; text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.bulk-why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.bulk-why-icon {
  display: inline-grid; place-items: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--coral-soft); color: var(--coral-dark);
  font-size: 1.55rem; margin-bottom: 1rem;
}
.bulk-why-title { font-size: 1.08rem; font-weight: 700; margin-bottom: .4rem; }
.bulk-why-text { color: var(--muted); font-size: .92rem; margin: 0; }

/* FAQ tabs */
.bulk-faq-tabs { flex-wrap: wrap; gap: .5rem; border: 0; }
.bulk-faq-tab {
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  padding: .6rem 1.25rem; border-radius: var(--radius-pill);
  font-weight: 700; font-size: .9rem; cursor: pointer;
  transition: all var(--transition-base);
}
.bulk-faq-tab:hover { border-color: var(--coral); color: var(--coral-dark); }
.bulk-faq-tab.active { background: var(--coral); border-color: var(--coral); color: #fff; }
.bulk-accordion .accordion-item { border: 1px solid var(--line); border-radius: var(--radius-sm) !important; margin-bottom: .65rem; overflow: hidden; }
.bulk-accordion .accordion-button { font-weight: 700; color: var(--ink); }
.bulk-accordion .accordion-button:not(.collapsed) { background: var(--coral-soft); color: var(--coral-dark); box-shadow: none; }
.bulk-accordion .accordion-button:focus { box-shadow: none; border-color: var(--coral); }
.bulk-accordion .accordion-body { color: var(--muted); }

/* Steps */
.bulk-step-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2.25rem 1.5rem 1.5rem; height: 100%;
}
.bulk-step-num {
  position: absolute; top: -18px; left: 1.5rem;
  font-family: var(--font-display); font-size: 2.6rem; line-height: 1;
  color: var(--coral); opacity: .9;
}
.bulk-step-icon {
  display: inline-grid; place-items: center;
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: var(--ink); color: #fff; font-size: 1.35rem; margin-bottom: .9rem;
}
.bulk-step-title { font-size: 1.1rem; font-weight: 700; margin-bottom: .45rem; }
.bulk-step-text { color: var(--muted); font-size: .93rem; margin: 0; }

/* Quote form */
.bulk-form-aside { height: 100%; }
.bulk-form-points { list-style: none; padding: 0; margin: 1.25rem 0; display: grid; gap: .6rem; }
.bulk-form-points li { display: flex; align-items: center; gap: .6rem; font-weight: 600; }
.bulk-form-points i { color: var(--color-success); }
.bulk-form-contact { display: grid; gap: .5rem; margin-top: 1rem; }
.bulk-form-contact a { display: inline-flex; align-items: center; gap: .5rem; color: var(--coral-dark); font-weight: 700; text-decoration: none; }
.bulk-form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.bulk-form-card .form-control:focus { border-color: var(--coral); box-shadow: 0 0 0 .2rem rgba(255,122,69,.18); }

/* Gallery */
.bulk-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: .85rem; }
.bulk-gallery-item { aspect-ratio: 1 / 1; border-radius: var(--radius-sm); overflow: hidden; }
.bulk-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--transition-slow); }
.bulk-gallery-item:hover img { transform: scale(1.07); }

/* CTA */
.bulk-cta {
  border-radius: var(--radius-xl); overflow: hidden;
  background: linear-gradient(135deg, var(--color-secondary-600), var(--color-secondary-500));
  color: #fff; box-shadow: var(--shadow-lg);
}
.bulk-cta-body { padding: 3rem 2.75rem; }
.bulk-cta-title { font-weight: 800; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .85rem; }
.bulk-cta-text { color: rgba(255,255,255,.82); margin-bottom: 1.5rem; }
.bulk-cta-media { position: relative; min-height: 100%; }
.bulk-cta-media img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; display: block; }
.bulk-cta-badge {
  position: absolute; right: 1.5rem; bottom: 1.5rem;
  background: var(--coral); color: #fff; border-radius: 50%;
  width: 108px; height: 108px; display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow-primary);
}
.bulk-cta-badge-num { font-family: var(--font-display); font-size: 2.2rem; line-height: 1; }
.bulk-cta-badge-text { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: 0 .5rem; }

@media (max-width: 991.98px) {
  .bulk-hero { padding: 2rem 0 2.25rem; }
  .bulk-cta-body { padding: 2.25rem 1.75rem; }
  .bulk-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 575.98px) {
  .bulk-gallery { grid-template-columns: repeat(2, 1fr); }
  .bulk-cta-badge { width: 88px; height: 88px; right: 1rem; bottom: 1rem; }
  .bulk-cta-badge-num { font-size: 1.7rem; }
}

/* ==========================================================================
   Shared page hero (Contact / Request a Quote)
   ========================================================================== */
.page-hero {
  padding: 3rem 0 2.5rem;
  background: linear-gradient(180deg, var(--sand) 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero-title { font-weight: 800; font-size: clamp(1.9rem, 4vw, 2.6rem); letter-spacing: -0.02em; margin: 0; }
.page-crumb { margin-top: .5rem; color: var(--muted); font-size: .9rem; }
.page-crumb a { color: var(--muted); text-decoration: none; }
.page-crumb a:hover { color: var(--coral-dark); }
.page-crumb span { margin: 0 .35rem; }

/* ==========================================================================
   Size Chart
   ========================================================================== */
.sc-hero { padding: 2.75rem 0 1.5rem; }
.sc-tabs { flex-wrap: wrap; gap: .45rem; border: 0; }
.sc-tab {
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  padding: .5rem 1.05rem; border-radius: var(--radius-pill);
  font-weight: 700; font-size: .85rem; cursor: pointer; transition: all var(--transition-base);
}
.sc-tab:hover { border-color: var(--coral); color: var(--coral-dark); }
.sc-tab.active { background: var(--coral); border-color: var(--coral); color: #fff; }
.sc-unit-toggle { display: inline-flex; border: 1px solid var(--line); border-radius: var(--radius-pill); overflow: hidden; }
.sc-unit {
  background: #fff; border: 0; color: var(--muted);
  padding: .35rem 1.1rem; font-weight: 800; font-size: .8rem; cursor: pointer; letter-spacing: .04em;
}
.sc-unit.active { background: var(--ink); color: #fff; }
.sc-table-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.sc-table { margin: 0; }
.sc-table thead th {
  background: var(--ink); color: #fff; font-weight: 700; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .03em; border: 0; padding: .8rem 1rem; white-space: nowrap;
}
.sc-table tbody td { padding: .7rem 1rem; border-color: var(--line); vertical-align: middle; }
.sc-table tbody tr:nth-child(odd) { background: var(--sand); }
.sc-table tbody td:first-child { font-weight: 700; }
.sc-guide-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.sc-guide-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sc-note { color: var(--muted); font-size: .9rem; background: var(--panel); border-radius: var(--radius-sm); padding: 1rem 1.25rem; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-heading { font-weight: 800; font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.02em; }
.contact-col-label { font-weight: 700; font-size: 1.05rem; margin-bottom: .6rem; }
.contact-col-line { color: var(--muted); margin: 0 0 .35rem; }
.contact-form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); }
.contact-form-card .form-control:focus { border-color: var(--coral); box-shadow: 0 0 0 .2rem rgba(255,122,69,.18); }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.contact-map iframe { width: 100%; height: 420px; border: 0; display: block; filter: grayscale(.2); }

/* ==========================================================================
   Request a Quote
   ========================================================================== */
.quote-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); }
.quote-form .form-control:focus, .quote-form .form-select:focus { border-color: var(--coral); box-shadow: 0 0 0 .2rem rgba(255,122,69,.18); }
.quote-group-title {
  font-weight: 800; font-size: 1.1rem; margin-bottom: 1rem; padding-bottom: .5rem;
  border-bottom: 2px solid var(--coral-soft); display: inline-block;
}
.quote-feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.35rem 1.15rem; height: 100%; transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.quote-feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.quote-feature-icon {
  display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--coral-soft); color: var(--coral-dark); font-size: 1.35rem; margin-bottom: .75rem;
}
.quote-feature-title { font-weight: 700; font-size: 1rem; margin-bottom: .35rem; }
.quote-feature-text { color: var(--muted); font-size: .87rem; margin: 0; }
.quote-cta { border-radius: var(--radius-xl); overflow: hidden; background: linear-gradient(135deg, var(--color-secondary-600), var(--color-secondary-500)); color: #fff; box-shadow: var(--shadow-lg); }
.quote-cta-body { padding: 3rem 2.75rem; }
.quote-cta-title { font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: .75rem; }
.quote-cta-text { color: rgba(255,255,255,.82); margin-bottom: 1.5rem; }
.quote-cta-media { min-height: 100%; }
.quote-cta-media img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; display: block; }

@media (max-width: 991.98px) {
  .quote-cta-body { padding: 2.25rem 1.75rem; }
  .contact-map iframe { height: 320px; }
}

/* ==========================================================================
   Commerce pages (Cart / Checkout / Account / Wishlist)
   ========================================================================== */
.commerce-page { background: #fff; }
.commerce-hero {
  padding: 2.75rem 0 2rem;
  background: linear-gradient(180deg, #f7f8fb 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
}
.commerce-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  letter-spacing: .02em;
  margin: 0 0 .35rem;
  color: var(--ink);
}
.commerce-breadcrumb {
  font-size: .85rem;
  color: var(--muted);
  display: flex;
  gap: .45rem;
  justify-content: center;
  align-items: center;
}
.commerce-breadcrumb a { color: var(--muted); text-decoration: none; }
.commerce-breadcrumb a:hover { color: var(--coral); }
.commerce-section-title {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.commerce-table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.commerce-table { margin: 0; }
.commerce-table thead th {
  background: #f5f6f8;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  font-weight: 700;
  border-bottom: 1px solid var(--line);
  padding: .9rem 1rem;
}
.commerce-table tbody td { padding: 1.1rem 1rem; border-color: var(--line); vertical-align: middle; }
.commerce-thumb {
  width: 72px; height: 72px; flex-shrink: 0;
  border-radius: var(--radius-sm); overflow: hidden; background: #f1f4f8; border: 1px solid var(--line);
}
.commerce-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.commerce-product-name { font-weight: 700; color: var(--ink); text-decoration: none; }
.commerce-product-name:hover { color: var(--coral); }
.commerce-meta { font-size: .78rem; color: var(--muted); margin-top: .25rem; }
.commerce-remove {
  width: 1.5rem; height: 1.5rem; border: 0; background: transparent;
  color: var(--muted); font-size: 1.35rem; line-height: 1; padding: 0; cursor: pointer;
}
.commerce-remove:hover { color: var(--coral); }
.commerce-qty {
  display: inline-flex; align-items: center; border: 1px solid var(--line);
  border-radius: var(--radius-sm); overflow: hidden;
}
.commerce-qty button {
  width: 2rem; height: 2rem; border: 0; background: #f5f6f8; font-size: 1rem; line-height: 1;
}
.commerce-qty input {
  width: 2.75rem; height: 2rem; border: 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line);
  text-align: center; font-weight: 600;
}
.commerce-totals, .commerce-order-box, .commerce-auth-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: #fff;
}
.commerce-grand { font-size: 1.1rem; }
.commerce-coupon-banner {
  background: color-mix(in srgb, var(--coral) 12%, #fff);
  border: 1px solid color-mix(in srgb, var(--coral) 28%, #fff);
  border-radius: var(--radius-sm);
  padding: .85rem 1.1rem;
  color: var(--ink);
}
.commerce-coupon-banner a { color: var(--coral-dark); }
.commerce-order-table thead th {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); border-bottom-color: var(--line);
}
.commerce-pay-note {
  background: #f5f6f8; border-radius: var(--radius-sm); padding: .65rem .8rem; margin-left: 1.5rem;
}
.commerce-password { position: relative; }
.commerce-password .form-control { padding-right: 2.75rem; }
.commerce-password-toggle {
  position: absolute; right: .55rem; top: 50%; transform: translateY(-50%);
  border: 0; background: transparent; color: var(--muted); padding: .2rem;
}
.commerce-share { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; }
.commerce-share-btn {
  width: 2rem; height: 2rem; display: inline-grid; place-items: center;
  border-radius: 4px; color: #fff; text-decoration: none; font-size: .9rem;
}
.commerce-share-btn.facebook { background: #3b5998; }
.commerce-share-btn.twitter { background: #1da1f2; }
.commerce-share-btn.email { background: #f39c12; }
.commerce-share-btn.whatsapp { background: #25d366; }
.commerce-empty { color: var(--muted); }

@media (max-width: 767.98px) {
  .commerce-table thead { display: none; }
  .commerce-table tbody tr {
    display: block; border-bottom: 1px solid var(--line); padding: 1rem 0;
  }
  .commerce-table tbody td {
    display: block; border: 0; padding: .35rem 1rem; text-align: left !important;
  }
}
