/* ── Shared section scaffold ─────────────────────────────────── */
.home-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 52px 20px 0;
  position: relative;
  z-index: 1;
  background: var(--bg);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.section-tag {
  display: block;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 4px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.section-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 1px;
  white-space: nowrap;
  transition: opacity var(--t);
}
.section-link:hover { opacity: .7; }


/* ══════════════════════════════════════════════════════════════
   HERO — Split Layout
   ══════════════════════════════════════════════════════════════ */
.hero-split {
  position: relative;
  z-index: 0;
  isolation: isolate;
}

.hero-split-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  height: 480px;
  overflow: hidden;
}

.hero-main-panel {
  position: relative;
  overflow: hidden;
  height: 100%;
  background:
    radial-gradient(ellipse 70% 80% at 80% 110%, rgba(246,156,16,.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 10% -10%, rgba(248,176,64,.12) 0%, transparent 55%),
    linear-gradient(135deg, #c47a08 0%, #f69c10 45%, #f8b040 100%);
}

.hero-main-panel::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 60px solid rgba(255,255,255,.04);
  top: -80px;
  right: -80px;
  pointer-events: none;
}

.hero-main-panel::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 40px solid rgba(248,176,64,.07);
  bottom: -60px;
  left: 60px;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 52px;
  color: #fff;
  background: linear-gradient(90deg, rgba(100,60,0,.25) 0%, transparent 100%);
  overflow: visible;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 99px;
  padding: 5px 14px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  width: fit-content;
}

.hero-dot {
  width: 7px;
  height: 7px;
  background: #fde8b8;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.65); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 50px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}

.hero-headline em {
  font-style: italic;
  color: #fde8b8;
}

.hero-sub {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  max-width: 380px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-btn-primary {
  background: #fff;
  color: var(--primary-dark);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  transition: all var(--t);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero-btn-primary:hover { background: #fff8ec; transform: translateY(-1px); }

.hero-btn-ghost {
  border: 2px solid rgba(255,255,255,.38);
  color: #fff;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--t);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero-btn-ghost:hover { background: rgba(255,255,255,.10); border-color: #fff; }

.hero-stats {
  display: flex;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
}

.hero-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.hero-stat span {
  font-size: 11px;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Right side panels */
.hero-side-panels {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.hero-side-panel {
  position: relative;
  flex: 1;
  overflow: hidden;
  display: block;
  min-height: 0;
  background: var(--primary-dark);
}

.hero-side-panel:first-child {
  border-bottom: 3px solid #fff;
}

.hero-side-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.hero-side-panel:hover img { transform: scale(1.04); }

.hero-side-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px;
  background: linear-gradient(transparent, rgba(100,60,0,.85));
  color: #fff;
}

.side-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 2px 9px;
  border-radius: 99px;
  margin-bottom: 5px;
}

.hero-side-label strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 2px;
}

.hero-side-label p {
  font-size: 12px;
  color: rgba(255,255,255,.75);
}


/* ══════════════════════════════════════════════════════════════
   TRUST STRIP
   ══════════════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.trust-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px 10px;
  border-right: 1px solid var(--border);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-lt);
  text-align: center;
  min-width: 0;
}
.trust-item:last-child { border-right: none; }
.trust-item svg { color: var(--primary); flex-shrink: 0; }


/* ══════════════════════════════════════════════════════════════
   CATEGORY CIRCLES — horizontal scroll row
   ══════════════════════════════════════════════════════════════ */
.cat-circles {
  display: flex;
  flex-direction: row;
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}
.cat-circles::-webkit-scrollbar { display: none; }

.cat-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  transition: transform var(--t);
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 100px;
  text-decoration: none;
}
.cat-circle-item:hover { transform: translateY(-4px); }

.cat-circle-img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--primary-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid transparent;
  transition: border-color var(--t), box-shadow var(--t);
  flex-shrink: 0;
}
.cat-circle-item:hover .cat-circle-img {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-bg);
}
.cat-circle-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-circle-img svg { color: var(--primary); opacity: .5; }

.cat-circle-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  line-height: 1.3;
  word-break: break-word;
}


/* ══════════════════════════════════════════════════════════════
   DEALS SECTION
   ══════════════════════════════════════════════════════════════ */
.deals-section { padding-top: 52px; }

.deals-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
}

.deals-left { min-width: 0; }

.deals-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}

.countdown-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--primary-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 10px 18px;
  margin-bottom: 20px;
}

.countdown-label {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
}

.countdown-blocks {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cblock {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.12);
  border-radius: 6px;
  padding: 4px 10px;
  min-width: 44px;
}

.cblock span {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .04em;
}

.cblock label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
  cursor: default;
}

.cblock-sep {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  margin-top: -6px;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.deal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
  display: flex;
  flex-direction: column;
}
.deal-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.deal-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-2);
  display: block;
}
.deal-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.deal-card:hover .deal-card-img img { transform: scale(1.06); }

.placeholder-img {
  background: linear-gradient(110deg, #e8e8e8 8%, #f5f5f5 18%, #e8e8e8 33%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  aspect-ratio: 4/3;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.placeholder-line {
  background: linear-gradient(110deg, #e8e8e8 8%, #f5f5f5 18%, #e8e8e8 33%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
  display: block;
}

.deal-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--danger);
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 2px 8px;
  border-radius: 99px;
}

.deal-card-body {
  padding: 11px 14px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.deal-card-cat {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 3px;
}

.deal-card-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 7px;
  flex: 1;
}

.deal-prices {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.deal-price-now { font-size: 14px; font-weight: 700; color: var(--danger); }
.deal-price-was { font-size: 12px; color: var(--muted); text-decoration: line-through; }

.deal-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 8px;
}

.deal-btn {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  transition: opacity var(--t);
}
.deal-btn:hover { opacity: .7; }

/* Promo banner */
.deals-right {
  position: sticky;
  top: calc(var(--nav-main-h) + var(--nav-dept-h) + 20px);
}

.promo-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  background: var(--primary-dark);
}

.promo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
  transition: transform .5s ease;
}
.promo-banner:hover .promo-img { transform: scale(1.04); }

.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg,
    rgba(100,60,0,.1) 0%,
    rgba(100,60,0,.82) 60%,
    rgba(100,60,0,.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  color: #fff;
}

.promo-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 10px;
  width: fit-content;
}

.promo-overlay h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 10px;
}

.promo-overlay p {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  margin-bottom: 18px;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa);
  color: #fff;
  padding: 11px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  transition: all var(--t);
  width: fit-content;
}
.promo-btn:hover { background: var(--wa-dark); transform: translateY(-1px); }


/* ══════════════════════════════════════════════════════════════
   NEW ARRIVALS — horizontal scroll row
   ══════════════════════════════════════════════════════════════ */
.arrivals-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}
.arrivals-scroll::-webkit-scrollbar { display: none; }

.arrival-card {
  flex: 0 0 180px;
  display: block;
  scroll-snap-align: start;
  text-decoration: none;
}

.arrival-img {
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  margin-bottom: 10px;
  border: 1px solid var(--border);
  position: relative;
}
.arrival-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.arrival-card:hover .arrival-img img { transform: scale(1.06); }

.arrival-new-badge {
  position: absolute;
  top: 7px;
  left: 7px;
  background: var(--primary);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 2px 8px;
  border-radius: 99px;
}

.arrival-cat {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 3px;
}

.arrival-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.arrival-price { font-size: 14px; font-weight: 700; color: var(--primary); }


/* ══════════════════════════════════════════════════════════════
   PRODUCTS BY CATEGORY SECTIONS
   ══════════════════════════════════════════════════════════════ */
.cat-products-section { padding-top: 52px; }

.cat-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 14px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 16px;
}

.cat-section-title-group { min-width: 0; }

.cat-section-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.subcat-toggles {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.subcat-pill {
  padding: 6px 16px;
  border: 1.5px solid var(--border);
  border-radius: 99px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-lt);
  background: var(--surface);
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
}
.subcat-pill:hover { border-color: var(--primary); color: var(--primary); }
.subcat-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  font-weight: 600;
}

.cat-products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.cat-products-grid .card-image { aspect-ratio: 1/1; }

.cat-products-grid .card-body { padding: 10px 12px 8px; }

.cat-products-grid .card-name {
  font-size: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  margin-bottom: 3px;
}

.cat-products-grid .card-price { font-size: 12.5px; }

.cat-products-grid .card-actions { padding: 7px 12px; }

.cat-products-grid .card-atc-btn { padding: 5px 8px; font-size: 11px; }


/* ══════════════════════════════════════════════════════════════
   WHATSAPP CTA
   ══════════════════════════════════════════════════════════════ */
.wa-cta-wrap {
  padding: 56px 20px 0;
  max-width: var(--max-w);
  margin: 0 auto;
}

.wa-cta {
  background: linear-gradient(135deg, #075e54, #25d366);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.wa-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 320px;
}

.wa-cta-text { padding: 48px 52px; color: #fff; }

.wa-cta-text h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.wa-cta-text p {
  font-size: 14.5px;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  max-width: 330px;
  margin-bottom: 24px;
}

.wa-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #075e54;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  transition: all var(--t);
}
.wa-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

.wa-cta-deco {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.wa-bubble {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 12px 18px;
  border-radius: 16px;
  font-size: 13.5px;
  max-width: 260px;
  line-height: 1.5;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
}
.wa-bubble--1 { border-radius: 4px 16px 16px 16px; }
.wa-bubble--2 {
  border-radius: 16px 4px 16px 16px;
  align-self: flex-end;
  background: rgba(255,255,255,.28);
  max-width: 220px;
}
.wa-bubble--3 { border-radius: 4px 16px 16px 16px; }


/* ══════════════════════════════════════════════════════════════
   PARTNERS SECTION
   ══════════════════════════════════════════════════════════════ */
.partners-section { padding-top: 52px; }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
}

.partners-slider-wrap {
  display: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.partners-slider-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: partnersScroll 18s linear infinite;
}

.partners-slider-wrap:hover .partners-slider-track {
  animation-play-state: paused;
}

@keyframes partnersScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partners-slider-track .partner-card { flex: 0 0 160px; width: 160px; }

.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: all var(--t);
  min-height: 90px;
}
.partner-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.partner-card img {
  max-height: 52px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all var(--t);
}
.partner-card:hover img { filter: grayscale(0%); opacity: 1; }

.partner-name-fallback {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
}

.partner-card--placeholder .partner-placeholder-inner {
  width: 100%;
  height: 36px;
  border-radius: 4px;
  background: linear-gradient(110deg, #e8e8e8 8%, #f5f5f5 18%, #e8e8e8 33%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}


/* ══════════════════════════════════════════════════════════════
   PROJECTS SECTION
   ══════════════════════════════════════════════════════════════ */
.projects-section { padding-top: 52px; }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.project-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.project-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--primary-bg);
}
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.project-card:hover .project-img img { transform: scale(1.05); }

.project-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-bg) 0%, #fde8b8 100%);
}

.project-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 3px 10px;
  border-radius: 99px;
}

.project-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 7px;
}
.project-location svg { flex-shrink: 0; color: var(--accent); }

.project-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 10px;
}

.project-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 14px;
}

.project-stat {
  display: inline-flex;
  flex-direction: column;
  background: var(--primary-bg);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  width: fit-content;
  margin-top: auto;
}
.project-stat strong { font-size: 16px; font-weight: 700; color: var(--primary); line-height: 1.2; }
.project-stat span { font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
  .cat-products-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 1024px) {
  .hero-split-inner { grid-template-columns: 1fr 1fr; }
  .trust-strip-inner { grid-template-columns: repeat(3, 1fr); }
  .trust-item:nth-child(3) { border-right: none; }
  .deals-layout { grid-template-columns: 1fr; }
  .deals-right { position: static; }
  .promo-banner { min-height: 260px; }
  .promo-img { min-height: 260px; }
  .cat-products-grid { grid-template-columns: repeat(4, 1fr); }
  .partners-grid { grid-template-columns: repeat(4, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .deals-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hero-split { padding-top: 16px; }

  .hero-split-inner {
    grid-template-columns: 1fr;
    height: auto;
    overflow: visible;
  }

  .hero-main-panel { height: 380px; overflow: hidden; }
  .hero-overlay { padding: 28px 24px; }
  .hero-headline { font-size: 28px; }
  .hero-sub { font-size: 13.5px; }
  .hero-stats { gap: 20px; }

  .hero-side-panels {
    flex-direction: row;
    height: 180px;
    overflow: hidden;
  }
  .hero-side-panel { flex: 1; height: 100%; }
  .hero-side-panel:first-child { border-bottom: none; border-right: 3px solid #fff; }

  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-right: 1px solid var(--border); }
  .trust-item:nth-child(4) { border-right: none; }

  .arrival-card { flex: 0 0 150px; }

  .cat-section-header { flex-direction: column; align-items: flex-start; }
  .cat-section-right { width: 100%; justify-content: space-between; }
  .cat-products-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  .wa-cta-inner { grid-template-columns: 1fr; }
  .wa-cta-text { padding: 36px 24px 20px; }
  .wa-cta-text h2 { font-size: 26px; }
  .wa-cta-text p { max-width: 100%; }
  .wa-cta-deco { padding: 0 24px 36px; gap: 10px; }
  .wa-bubble { font-size: 12.5px; padding: 10px 14px; }

  .partners-grid { display: none; }
  .partners-slider-wrap { display: block; }
  .partner-card { padding: 14px 16px; min-height: 72px; }

  .projects-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-split { padding-top: 12px; }
  .home-section { padding: 36px 14px 0; }

  .hero-main-panel { height: 320px; }
  .hero-side-panels { height: 150px; }
  .hero-side-label strong { font-size: 14px; }
  .hero-side-label p { display: none; }

  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); padding: 12px 16px; }
  .trust-item:last-child { border-bottom: none; }

  .section-title { font-size: 21px; }

  .cat-circle-img { width: 62px; height: 62px; }
  .cat-circle-name { font-size: 11px; }

  .deals-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .countdown-bar { flex-direction: column; align-items: flex-start; gap: 8px; }

  .cat-products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .arrival-card { flex: 0 0 135px; }
  .subcat-pill { font-size: 11.5px; padding: 5px 12px; }

  .wa-cta-wrap { padding: 36px 14px 0; }
  .wa-cta-deco { padding: 0 16px 28px; }
  .wa-bubble { font-size: 12px; max-width: 200px; }
  .wa-bubble--2 { max-width: 180px; }

  .partners-slider-track .partner-card { flex: 0 0 130px; width: 130px; }
}