/* ============================================================
   Dekole Brand System
   New unified marketplace theme.
   Loaded AFTER style.css so its rules win cascade order.
   Component classes are prefixed with .dekole- to avoid
   stomping on legacy vertical-specific styles.
   ============================================================ */

:root {
  --dekole-navy: #07111F;
  --dekole-black: #05070B;
  --dekole-panel: #0F172A;
  --dekole-card: #111827;
  --dekole-primary: #2563EB;
  --dekole-primary-hover: #1D4ED8;
  --dekole-electric: #38BDF8;
  --dekole-electric-hover: #0EA5E9;
  --dekole-white: #F8FAFC;
  --dekole-soft: #CBD5E1;
  --dekole-muted: #94A3B8;
  --dekole-light-bg: #F8FAFC;
  --dekole-light-bg-2: #EEF2F7;
  --dekole-dark-text: #0F172A;
  --dekole-light-border: #E2E8F0;
  --dekole-dark-border: #1E293B;

  --dekole-status-ok: #16A34A;
  --dekole-status-pending: #F59E0B;
  --dekole-status-err: #EF4444;
  --dekole-status-active: #2563EB;
  --dekole-status-draft: #64748B;

  --dekole-radius-sm: 8px;
  --dekole-radius-md: 12px;
  --dekole-radius-lg: 18px;
  --dekole-radius-pill: 999px;

  --dekole-shadow-sm: 0 1px 2px rgba(7, 17, 31, 0.06);
  --dekole-shadow-md: 0 6px 18px rgba(7, 17, 31, 0.08);
  --dekole-shadow-lg: 0 18px 40px rgba(7, 17, 31, 0.12);
}

/* ---------- Reset-ish helpers ---------- */
.dekole-scope, .dekole-scope * { box-sizing: border-box; }
.dekole-scope a { text-decoration: none; }

/* ============================================================
   Header (dark navy)
   ============================================================ */
.dekole-header {
  background: var(--dekole-navy);
  color: var(--dekole-white);
  border-bottom: 1px solid var(--dekole-dark-border);
}
.dekole-header .dekole-header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}
.dekole-header .dekole-logo img {
  height: 38px;
  width: auto;
  display: block;
}
.dekole-header .dekole-search {
  flex: 1;
  min-width: 0;
}
.dekole-header .dekole-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.dekole-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--dekole-radius-pill);
  color: var(--dekole-white);
  background: transparent;
  border: 1px solid transparent;
  position: relative;
  transition: background .15s ease, border-color .15s ease;
}
.dekole-icon-btn:hover,
.dekole-icon-btn:focus {
  background: rgba(56, 189, 248, .12);
  border-color: rgba(56, 189, 248, .25);
  color: var(--dekole-white);
}
.dekole-icon-btn .dekole-badge-counter {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--dekole-primary);
  border-radius: var(--dekole-radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.dekole-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--dekole-dark-border);
  background: var(--dekole-panel);
}

/* ---------- Search bar (large, prominent) ---------- */
.dekole-search-shell {
  display: flex;
  align-items: stretch;
  background: var(--dekole-white);
  border-radius: var(--dekole-radius-pill);
  box-shadow: var(--dekole-shadow-sm);
  overflow: hidden;
  border: 1px solid var(--dekole-light-border);
}
.dekole-search-shell select.dekole-search-scope {
  border: 0;
  background: var(--dekole-light-bg-2);
  color: var(--dekole-dark-text);
  font-weight: 600;
  font-size: 14px;
  padding: 0 18px;
  min-width: 110px;
  outline: none;
  cursor: pointer;
}
.dekole-search-shell input.dekole-search-input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 14px 18px;
  color: var(--dekole-dark-text);
  font-size: 15px;
  outline: none;
  min-width: 0;
}
.dekole-search-shell input.dekole-search-input::placeholder {
  color: var(--dekole-muted);
}
.dekole-search-shell button.dekole-search-submit {
  border: 0;
  background: var(--dekole-primary);
  color: #fff;
  font-weight: 600;
  padding: 0 26px;
  cursor: pointer;
  transition: background .15s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dekole-search-shell button.dekole-search-submit:hover {
  background: var(--dekole-primary-hover);
}

/* ============================================================
   Main public navigation row (under header)
   ============================================================ */
.dekole-mainnav {
  background: var(--dekole-panel);
  border-bottom: 1px solid var(--dekole-dark-border);
}
.dekole-mainnav-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.dekole-mainnav-inner::-webkit-scrollbar { display: none; }
.dekole-nav-link {
  color: var(--dekole-soft);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--dekole-radius-pill);
  white-space: nowrap;
  transition: color .15s ease, background .15s ease;
}
.dekole-nav-link:hover,
.dekole-nav-link:focus {
  color: var(--dekole-white);
  background: rgba(56, 189, 248, .12);
}
.dekole-nav-link.active {
  color: var(--dekole-white);
  background: var(--dekole-primary);
}
.dekole-nav-link.is-cta {
  margin-left: auto;
  color: #fff;
  background: var(--dekole-electric);
}
.dekole-nav-link.is-cta:hover {
  background: var(--dekole-electric-hover);
  color: #fff;
}
.dekole-nav-divider {
  flex: 1;
}

/* ============================================================
   Buttons
   ============================================================ */
.dekole-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--dekole-radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .05s ease;
  line-height: 1;
  text-decoration: none;
}
.dekole-btn:active { transform: translateY(1px); }
.dekole-btn-primary {
  background: var(--dekole-primary);
  color: #fff;
}
.dekole-btn-primary:hover {
  background: var(--dekole-primary-hover);
  color: #fff;
}
.dekole-btn-electric {
  background: var(--dekole-electric);
  color: var(--dekole-navy);
}
.dekole-btn-electric:hover {
  background: var(--dekole-electric-hover);
  color: #fff;
}
.dekole-btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(248, 250, 252, .35);
}
.dekole-btn-outline-light:hover {
  background: rgba(248, 250, 252, .08);
  border-color: rgba(248, 250, 252, .6);
  color: #fff;
}
.dekole-btn-outline-dark {
  background: transparent;
  color: var(--dekole-dark-text);
  border-color: var(--dekole-light-border);
}
.dekole-btn-outline-dark:hover {
  background: var(--dekole-light-bg-2);
  color: var(--dekole-dark-text);
}
.dekole-btn-ghost-dark {
  background: transparent;
  color: var(--dekole-primary);
}
.dekole-btn-ghost-dark:hover {
  background: rgba(37, 99, 235, .08);
}
.dekole-btn-sm { padding: 8px 14px; font-size: 13px; }
.dekole-btn-lg { padding: 16px 28px; font-size: 16px; }

/* ============================================================
   Hero
   ============================================================ */
.dekole-hero {
  background:
    radial-gradient(1100px 500px at 12% 20%, rgba(56, 189, 248, .18), transparent 60%),
    radial-gradient(900px 460px at 95% 90%, rgba(37, 99, 235, .22), transparent 60%),
    linear-gradient(135deg, var(--dekole-navy) 0%, var(--dekole-black) 100%);
  color: var(--dekole-white);
  padding: 56px 0 80px;
}
.dekole-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, .14);
  border: 1px solid rgba(56, 189, 248, .35);
  color: var(--dekole-electric);
  border-radius: var(--dekole-radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.dekole-hero h1 {
  font-family: 'Inter', 'Poppins', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4.6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--dekole-white);
}
.dekole-hero h1 .dekole-hero-accent {
  background: linear-gradient(90deg, var(--dekole-electric), #67e8f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dekole-hero p.dekole-hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--dekole-soft);
  max-width: 720px;
  margin: 0 0 28px;
  line-height: 1.55;
}
.dekole-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

/* ---------- Quick search chips ---------- */
.dekole-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.dekole-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dekole-white);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--dekole-radius-pill);
  transition: background .15s ease, border-color .15s ease;
}
.dekole-chip:hover,
.dekole-chip:focus {
  background: rgba(56, 189, 248, .16);
  border-color: rgba(56, 189, 248, .45);
  color: #fff;
}

/* ============================================================
   Sections (light, premium marketplace style)
   ============================================================ */
.dekole-section {
  padding: 56px 0;
  background: var(--dekole-light-bg);
  color: var(--dekole-dark-text);
}
.dekole-section.is-tint { background: #fff; }
.dekole-section.is-dark {
  background: var(--dekole-panel);
  color: var(--dekole-white);
}
.dekole-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.dekole-section-title {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  margin: 0;
  color: inherit;
  letter-spacing: -0.01em;
}
.dekole-section-sub {
  font-size: 14px;
  color: var(--dekole-muted);
  margin: 4px 0 0;
}
.dekole-section.is-dark .dekole-section-sub { color: var(--dekole-soft); }
.dekole-section-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--dekole-primary);
}
.dekole-section.is-dark .dekole-section-link { color: var(--dekole-electric); }
.dekole-section-link:hover { text-decoration: underline; }

/* ============================================================
   Category tiles
   ============================================================ */
.dekole-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}
.dekole-cat-tile {
  background: #fff;
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-md);
  padding: 18px 12px;
  text-align: center;
  color: var(--dekole-dark-text);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.dekole-cat-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--dekole-shadow-md);
  border-color: rgba(37, 99, 235, .35);
  color: var(--dekole-dark-text);
}
.dekole-cat-tile-icon {
  width: 48px; height: 48px;
  margin: 0 auto 10px;
  border-radius: var(--dekole-radius-md);
  background: var(--dekole-light-bg-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--dekole-primary);
  font-size: 22px;
}
.dekole-cat-tile-label {
  font-size: 13px;
  font-weight: 600;
}

/* ============================================================
   Product/event card (clean white)
   ============================================================ */
.dekole-card {
  background: #fff;
  border-radius: var(--dekole-radius-md);
  border: 1px solid var(--dekole-light-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.dekole-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--dekole-shadow-md);
  border-color: rgba(37, 99, 235, .35);
}
.dekole-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--dekole-light-bg-2);
  position: relative;
}
.dekole-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.dekole-card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dekole-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--dekole-dark-text);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dekole-card-meta {
  font-size: 12px;
  color: var(--dekole-muted);
}
.dekole-card-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--dekole-dark-text);
}
.dekole-card-price .dekole-card-strike {
  margin-left: 8px;
  font-size: 13px;
  color: var(--dekole-muted);
  text-decoration: line-through;
  font-weight: 500;
}

/* ---------- Badges ---------- */
.dekole-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-radius: var(--dekole-radius-pill);
  background: var(--dekole-light-bg-2);
  color: var(--dekole-dark-text);
}
.dekole-tag-deal { background: rgba(239, 68, 68, .12); color: #B91C1C; }
.dekole-tag-new  { background: rgba(37, 99, 235, .12); color: var(--dekole-primary); }
.dekole-tag-hot  { background: rgba(245, 158, 11, .15); color: #B45309; }
.dekole-tag-offer{ background: rgba(56, 189, 248, .18); color: #0369A1; }
.dekole-tag-ok   { background: rgba(22, 163, 74, .12); color: var(--dekole-status-ok); }
.dekole-card-media .dekole-tag {
  position: absolute;
  top: 10px;
  left: 10px;
}

/* ============================================================
   Generic horizontal scroller (mobile)
   ============================================================ */
.dekole-row-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
/* Wider variant — for content-dense cards like provider profiles.
   Uses a fixed column width so cards don't stretch to fill the row. */
.dekole-row-grid--wide {
  grid-template-columns: repeat(auto-fill, 350px);
  gap: 20px;
  justify-content: start;
}
@media (max-width: 768px) {
  .dekole-row-grid--wide {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}
@media (max-width: 640px) {
  .dekole-row-grid {
    grid-auto-flow: column;
    grid-auto-columns: 70%;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }
  .dekole-row-grid > * { scroll-snap-align: start; }
}

/* ============================================================
   Product Card (Dekole canonical)
   Used everywhere the product-variation-card partial is included.
   Combines Amazon clarity + eBay offer flexibility + Etsy seller voice.
   ============================================================ */
.dekole-pcard {
  background: #fff;
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-md);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.dekole-pcard:hover {
  transform: translateY(-3px);
  box-shadow: var(--dekole-shadow-md);
  border-color: rgba(37, 99, 235, .35);
}

/* Media */
.dekole-pcard-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--dekole-light-bg-2);
}
.dekole-pcard-media > a {
  display: block;
  width: 100%;
  height: 100%;
}
.dekole-pcard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.dekole-pcard:hover .dekole-pcard-media img {
  transform: scale(1.04);
}

/* Primary overlay badge (top-left) */
.dekole-pcard-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--dekole-radius-pill);
  z-index: 2;
}
.dekole-pcard-badge i { font-size: 11px; }
.dekole-pcard-badge-deal      { background: var(--dekole-status-err); color: #fff; }
.dekole-pcard-badge-sponsored { background: var(--dekole-dark-text);  color: #fff; }
.dekole-pcard-badge-new       { background: var(--dekole-primary);    color: #fff; }
.dekole-pcard-badge-hot       { background: var(--dekole-status-pending); color: #fff; }

/* Save heart (top-right) */
.dekole-pcard-save {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--dekole-light-border);
  color: var(--dekole-muted);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(7, 17, 31, .08);
  transition: color .15s ease, background .15s ease, transform .15s ease, border-color .15s ease;
  z-index: 2;
}
.dekole-pcard-save:hover,
.dekole-pcard-save.is-saved {
  color: var(--dekole-status-err);
  background: rgba(239, 68, 68, .08);
  border-color: rgba(239, 68, 68, .3);
  transform: scale(1.06);
}
.dekole-pcard-save.is-saved i {
  font-weight: 900;
}

/* Body */
.dekole-pcard-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

/* Secondary pills */
.dekole-pcard-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.dekole-pcard-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--dekole-radius-pill);
  background: var(--dekole-light-bg-2);
  color: var(--dekole-dark-text);
  border: 1px solid var(--dekole-light-border);
}
.dekole-pcard-pill i { font-size: 10px; }
.dekole-pcard-pill-offer     { background: rgba(56, 189, 248, .12); color: #0369A1; border-color: rgba(56, 189, 248, .3); }
.dekole-pcard-pill-featured  { background: rgba(245, 158, 11, .12); color: #B45309; border-color: rgba(245, 158, 11, .3); }
.dekole-pcard-pill-dekole    { background: rgba(37, 99, 235, .1);   color: var(--dekole-primary); border-color: rgba(37, 99, 235, .3); }

/* Title — 2-line clamp */
.dekole-pcard-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--dekole-dark-text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 38px;
  margin: 0;
}
.dekole-pcard-title:hover { color: var(--dekole-primary); }

/* Seller + rating line */
.dekole-pcard-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  min-height: 16px;
}
.dekole-pcard-seller {
  color: var(--dekole-muted);
  display: inline-flex;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
}
.dekole-pcard-seller i { color: var(--dekole-muted); }
.dekole-pcard-rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--dekole-dark-text);
  flex-shrink: 0;
}
.dekole-pcard-rating i.fa-star { color: var(--dekole-status-pending); font-size: 11px; }
.dekole-pcard-rating strong { font-weight: 700; }
.dekole-pcard-rating small { color: var(--dekole-muted); font-size: 11px; }

/* Price block */
.dekole-pcard-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 8px;
  line-height: 1.1;
}
.dekole-pcard-price-sale {
  font-size: 18px;
  font-weight: 800;
  color: var(--dekole-dark-text);
  letter-spacing: -0.01em;
}
.dekole-pcard-price-orig {
  font-size: 13px;
  font-weight: 500;
  color: var(--dekole-muted);
  text-decoration: line-through;
}
.dekole-pcard-price-save {
  flex: 1 0 100%;
  font-size: 11px;
  font-weight: 700;
  color: var(--dekole-status-ok);
  margin-top: 2px;
}

/* Shipping / pickup / coupon chips */
.dekole-pcard-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.dekole-pcard-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--dekole-radius-sm);
  background: var(--dekole-light-bg);
  color: var(--dekole-dark-text);
  border: 1px solid var(--dekole-light-border);
}
.dekole-pcard-chip i { color: var(--dekole-primary); font-size: 11px; }

/* Action buttons — always stacked vertically so labels never truncate
   at narrow card widths (~220px). Visual hierarchy comes from button
   variant (primary / outline / ghost), not from layout. */
.dekole-pcard-actions {
  margin-top: auto;
  padding-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dekole-pcard-actions .dekole-btn {
  width: 100%;
  justify-content: center;
  font-size: 12px;
  padding: 8px 10px;
  white-space: nowrap;
}
.dekole-pcard-action-label {
  display: inline;
}

/* Mobile — slightly tighter */
@media (max-width: 640px) {
  .dekole-pcard-title { font-size: 13px; min-height: 36px; }
  .dekole-pcard-price-sale { font-size: 16px; }
  .dekole-pcard-actions .dekole-btn { font-size: 11px; padding: 7px 8px; }
}

/* ============================================================
   Legacy product/promo card adapter
   Lets the existing partials (dekoshopping/promo "box_inner" cards)
   render correctly inside the new .dekole-row-grid.
   Only takes effect when wrapped by .dekole-row-grid so other
   pages that still use these cards are untouched.
   ============================================================ */
.dekole-row-grid > div {
  min-width: 0;
}
.dekole-row-grid .box_inner.promo-index-card {
  background: #fff;
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.dekole-row-grid .box_inner.promo-index-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--dekole-shadow-md);
  border-color: rgba(37, 99, 235, .35);
}

/* Stack: image on top, content below */
.dekole-row-grid .box_inner.promo-index-card .left_inner {
  width: 100%;
  background: var(--dekole-light-bg-2);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: block;
}
.dekole-row-grid .box_inner.promo-index-card .left_inner a {
  display: block;
  width: 100%;
  height: 100%;
}
.dekole-row-grid .box_inner.promo-index-card .left_inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding: 0;
  border-bottom: 0;
}
.dekole-row-grid .box_inner.promo-index-card .right_inner {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.dekole-row-grid .box_inner.promo-index-card .right_inner .box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
}
.dekole-row-grid .box_inner.promo-index-card .right_inner .box h6.product_title {
  color: var(--dekole-dark-text);
  font-size: 15px;
  font-weight: 600;
  height: auto;
  max-height: 44px;
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
}
.dekole-row-grid .box_inner.promo-index-card .right_inner .box h6.product_title del {
  color: var(--dekole-muted);
  font-weight: 500;
  margin-left: 6px;
  font-size: 13px;
}
.dekole-row-grid .box_inner.promo-index-card .right_inner .box h6.product_title span.price {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #B91C1C;
  background: rgba(239, 68, 68, .12);
  border-radius: var(--dekole-radius-pill);
  vertical-align: middle;
}

/* Rating widget colors aligned with brand (green stars only,
   functional positive signal — allowed per brand rules) */
.dekole-row-grid .box_inner.promo-index-card .jq-ry-container { width: 90px !important; }
.dekole-row-grid .box_inner.promo-index-card .jq-ry-rated-group svg polygon { fill: var(--dekole-status-ok); }
.dekole-row-grid .box_inner.promo-index-card .rateYo + span {
  font-size: 12px;
  color: var(--dekole-muted);
  margin-left: 6px;
}

/* Floating action icons — slide in from inside the card on hover */
.dekole-row-grid .box_inner.promo-index-card .cards-icon-sec {
  position: absolute;
  top: 10px;
  right: 10px;
  left: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 2;
}
.dekole-row-grid .box_inner.promo-index-card:hover .cards-icon-sec {
  opacity: 1;
  transform: translateX(0);
  right: 10px;
}
.dekole-row-grid .box_inner.promo-index-card .cards-icons svg {
  width: 32px;
  height: 32px;
  padding: 8px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(7, 17, 31, .15);
  margin: 0;
  border-radius: 50%;
}
.dekole-row-grid .box_inner.promo-index-card .cards-icons svg:hover {
  background: var(--dekole-primary);
}
.dekole-row-grid .box_inner.promo-index-card .cards-icons svg:hover path {
  fill: #fff;
}

/* Push the action row to the bottom of the card for uniform height */
.dekole-row-grid .box_inner.promo-index-card .btn_slider {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.dekole-row-grid .box_inner.promo-index-card .btn_slider a.buy,
.dekole-row-grid .box_inner.promo-index-card .btn_slider a.cart {
  flex: 1;
  text-align: center;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--dekole-radius-pill);
  border: 1px solid transparent;
  line-height: 1.2;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.dekole-row-grid .box_inner.promo-index-card .btn_slider a.buy {
  background: var(--dekole-primary);
  border-color: var(--dekole-primary);
  color: #fff;
}
.dekole-row-grid .box_inner.promo-index-card .btn_slider a.buy:hover {
  background: var(--dekole-primary-hover);
  border-color: var(--dekole-primary-hover);
  color: #fff;
}
.dekole-row-grid .box_inner.promo-index-card .btn_slider a.cart {
  background: transparent;
  border-color: var(--dekole-light-border);
  color: var(--dekole-dark-text);
}
.dekole-row-grid .box_inner.promo-index-card .btn_slider a.cart:hover {
  background: var(--dekole-dark-text);
  border-color: var(--dekole-dark-text);
  color: #fff;
}

/* On dark sections, lighten the card border so it doesn't look heavy */
.dekole-section.is-dark .dekole-row-grid .box_inner.promo-index-card {
  border-color: var(--dekole-dark-border);
}

/* Mobile horizontal scroller: keep cards a bit narrower */
@media (max-width: 640px) {
  .dekole-row-grid .box_inner.promo-index-card .right_inner { padding: 12px 12px 14px; }
  .dekole-row-grid .box_inner.promo-index-card .btn_slider a.buy,
  .dekole-row-grid .box_inner.promo-index-card .btn_slider a.cart {
    padding: 8px 10px;
    font-size: 12px;
  }
}

/* ============================================================
   CTA panel (sell on dekole, etc.)
   ============================================================ */
.dekole-cta-panel {
  border-radius: var(--dekole-radius-lg);
  padding: 36px;
  background:
    radial-gradient(700px 300px at 90% 110%, rgba(56, 189, 248, .25), transparent 60%),
    linear-gradient(135deg, var(--dekole-navy), var(--dekole-panel));
  color: var(--dekole-white);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: center;
}
.dekole-cta-panel h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  margin: 0 0 8px;
  color: #fff;
}
.dekole-cta-panel p {
  margin: 0 0 18px;
  color: var(--dekole-soft);
  line-height: 1.55;
}
.dekole-cta-panel .dekole-cta-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}
@media (max-width: 768px) {
  .dekole-cta-panel { grid-template-columns: 1fr; padding: 24px; }
}

/* ============================================================
   Top banner tiles (uniform aspect, image-cropped)
   ============================================================ */
.dekole-top-banner {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--dekole-radius-md);
  overflow: hidden;
  box-shadow: var(--dekole-shadow-sm);
  background: var(--dekole-light-bg-2);
  transition: transform .15s ease, box-shadow .15s ease;
}
.dekole-top-banner:hover {
  transform: translateY(-2px);
  box-shadow: var(--dekole-shadow-md);
}
.dekole-top-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   Product Detail Page (PDP)
   ============================================================ */
.dekole-pdp { background: var(--dekole-light-bg); }

/* Breadcrumb strip */
.dekole-pdp-hero {
  background: #fff;
  border-bottom: 1px solid var(--dekole-light-border);
  padding: 14px 0;
}
.dekole-pdp-hero .breadcrumb-item + .breadcrumb-item::before { color: var(--dekole-muted); }

/* 3-column grid */
.dekole-pdp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) 360px;
  gap: 28px;
  align-items: start;
}
@media (max-width: 1200px) {
  .dekole-pdp-grid { grid-template-columns: minmax(0, 1fr) 340px; }
  .dekole-pdp-gallery { grid-column: 1 / 2; }
  .dekole-pdp-info    { grid-column: 1 / 2; }
  .dekole-pdp-sidebar { grid-column: 2 / 3; grid-row: 1 / span 2; }
}
@media (max-width: 880px) {
  .dekole-pdp-grid { grid-template-columns: 1fr; }
  .dekole-pdp-sidebar { grid-row: auto; }
}

/* Gallery — main image area */
.dekole-pdp-gallery-main {
  background: #fff;
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-lg);
  aspect-ratio: 1 / 1;
  position: relative;
  padding: 24px;
  overflow: hidden;
}
.dekole-pdp-gallery-main .img-showcase {
  position: relative;
  width: 100%;
  height: 100%;
}
.dekole-pdp-gallery-main .img-showcase img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}
.dekole-pdp-gallery-main .img-showcase img.is-active {
  opacity: 1;
  pointer-events: auto;
}
/* When the JS hasn't tagged any image as active yet, show the first one */
.dekole-pdp-gallery-main .img-showcase:not(.has-active) img:first-child {
  opacity: 1;
  pointer-events: auto;
}

/* Thumbnails strip */
.dekole-pdp-gallery-thumbs {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dekole-pdp-gallery-thumbs .img-item {
  width: 64px;
  height: 64px;
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-sm);
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.dekole-pdp-gallery-thumbs .img-item:hover {
  border-color: var(--dekole-primary);
}
.dekole-pdp-gallery-thumbs .img-item.is-active {
  border-color: var(--dekole-primary);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, .25);
}
.dekole-pdp-gallery-thumbs .img-item a {
  display: block;
  width: 100%;
  height: 100%;
}
.dekole-pdp-gallery-thumbs .img-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

/* Info column */
.dekole-pdp-info {
  background: #fff;
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-lg);
  padding: 24px;
}
.dekole-pdp-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--dekole-primary);
  background: rgba(37, 99, 235, .08);
  padding: 4px 10px;
  border-radius: var(--dekole-radius-pill);
  margin-bottom: 12px;
}
.dekole-pdp-title {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--dekole-dark-text);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.dekole-pdp-rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--dekole-light-border);
  font-size: 13px;
}
.dekole-pdp-by { color: var(--dekole-muted); }
.dekole-pdp-by a { color: var(--dekole-primary); font-weight: 600; }
.dekole-pdp-by a:hover { text-decoration: underline; }

/* Tabs */
.dekole-pdp-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  border-bottom: 1px solid var(--dekole-light-border);
  margin-bottom: 18px;
}
.dekole-pdp-tabs-nav button {
  border: 0;
  background: transparent;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dekole-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease;
}
.dekole-pdp-tabs-nav button:hover { color: var(--dekole-dark-text); }
.dekole-pdp-tabs-nav button.is-active {
  color: var(--dekole-primary);
  border-bottom-color: var(--dekole-primary);
}
.dekole-pdp-tabs-panel { display: none; }
.dekole-pdp-tabs-panel.is-active { display: block; }
.dekole-pdp-tabs-panel h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dekole-dark-text);
  margin: 0 0 12px;
}
.dekole-pdp-prose {
  font-size: 14px;
  line-height: 1.65;
  color: var(--dekole-dark-text);
}
.dekole-pdp-prose ul { padding-left: 20px; }
.dekole-pdp-prose li { padding: 3px 0; }

.dekole-pdp-spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dekole-pdp-spec-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px dashed var(--dekole-light-border);
}
.dekole-pdp-spec-list li:last-child { border-bottom: 0; }
.dekole-pdp-spec-list li span { color: var(--dekole-muted); }
.dekole-pdp-spec-list li strong { color: var(--dekole-dark-text); font-weight: 600; text-align: right; }

/* ============================================================
   Buying box (right rail)
   ============================================================ */
.dekole-pdp-sidebar {
  position: sticky;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dekole-pdp-box {
  background: #fff;
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-lg);
  padding: 22px;
}
.dekole-pdp-box-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--dekole-light-border);
}
.dekole-pdp-price-sale {
  font-size: 28px;
  font-weight: 800;
  color: var(--dekole-dark-text);
  letter-spacing: -0.01em;
  line-height: 1;
}
.dekole-pdp-price-orig {
  font-size: 14px;
  color: var(--dekole-muted);
  text-decoration: line-through;
}
.dekole-pdp-price-save {
  flex: 1 0 100%;
  font-size: 12px;
  font-weight: 700;
  color: var(--dekole-status-ok);
  margin-top: 4px;
}

.dekole-pdp-variant {
  padding: 12px 0;
  border-top: 1px solid var(--dekole-light-border);
}
.dekole-pdp-variant:first-of-type { border-top: 0; padding-top: 0; }
.dekole-pdp-variant-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dekole-dark-text);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.dekole-pdp-variant-label strong { font-weight: 700; }
.dekole-pdp-sizeguide-btn {
  border: 0;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  color: var(--dekole-primary);
  cursor: pointer;
  padding: 0;
}
.dekole-pdp-sizeguide-btn:hover { text-decoration: underline; }

.dekole-pdp-swatches,
.dekole-pdp-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
/* Legacy swatch markup (.checkbox_colr-grey > .custom_check > input + span [+ label])
   rendered cleanly inside the brand buying box. */
.dekole-pdp-swatches .checkbox_colr-grey,
.dekole-pdp-sizes .checkbox_colr-grey {
  margin: 0;
}
.dekole-pdp-swatches .custom_check,
.dekole-pdp-sizes .custom_check {
  position: relative;
  margin: 0;
}
.dekole-pdp-swatches .custom_check input[type="radio"],
.dekole-pdp-sizes .custom_check input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

/* Color swatches — circular dots */
.dekole-pdp-swatches .custom_check span {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid var(--dekole-light-border) !important;
  transition: box-shadow .15s ease, transform .15s ease;
  vertical-align: middle;
}
.dekole-pdp-swatches .custom_check:hover span { transform: scale(1.06); }
.dekole-pdp-swatches .custom_check input[type="radio"]:checked + span {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--dekole-primary);
}

/* Size + style pills — text labels */
.dekole-pdp-sizes .custom_check span {
  display: none;
}
.dekole-pdp-sizes .custom_check label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dekole-dark-text);
  background: #fff;
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-sm);
  cursor: pointer;
  margin: 0;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.dekole-pdp-sizes .custom_check:hover label {
  border-color: var(--dekole-primary);
  color: var(--dekole-primary);
}
.dekole-pdp-sizes .custom_check input[type="radio"]:checked ~ label,
.dekole-pdp-sizes .custom_check input[type="radio"]:checked + span + label {
  background: var(--dekole-primary);
  border-color: var(--dekole-primary);
  color: #fff;
}

/* When style picker has only the empty <span></span> (no label),
   render it as a numbered swatch instead of overlapping nothing */
.dekole-pdp-variant .checkbox_list:not(.dekole-pdp-sizes):not(.dekole-pdp-swatches) .custom_check span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-sm);
  background: #fff;
  cursor: pointer;
  font-size: 12px;
}

.dekole-pdp-qty {
  display: inline-flex !important;
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-sm);
  overflow: hidden;
  width: auto;
}
.dekole-pdp-qty .btn-number {
  background: var(--dekole-light-bg);
  border: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dekole-dark-text);
  cursor: pointer;
  border-radius: 0;
}
.dekole-pdp-qty .btn-number:hover { background: var(--dekole-light-bg-2); }
.dekole-pdp-qty .btn-number:disabled { color: var(--dekole-muted); cursor: not-allowed; }
.dekole-pdp-qty input.input-number {
  border: 0;
  width: 50px;
  height: 36px;
  text-align: center;
  font-weight: 700;
  background: #fff;
  color: var(--dekole-dark-text);
  outline: none;
}

/* Delivery options */
.dekole-pdp-delivery {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dekole-pdp-delivery-opt {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: var(--dekole-light-bg);
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-sm);
  cursor: pointer;
  margin: 0;
  transition: border-color .15s ease, background .15s ease;
}
.dekole-pdp-delivery-opt:hover { border-color: var(--dekole-primary); }
.dekole-pdp-delivery-opt input[type="radio"] {
  margin-top: 3px;
  accent-color: var(--dekole-primary);
}
.dekole-pdp-delivery-opt > span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
}
.dekole-pdp-delivery-opt > span > i {
  display: inline-block;
  margin-right: 4px;
  color: var(--dekole-primary);
}
.dekole-pdp-delivery-opt strong {
  color: var(--dekole-dark-text);
  font-weight: 600;
}
.dekole-pdp-delivery-opt small {
  color: var(--dekole-muted);
  font-size: 11px;
}
select.dekole-pdp-store-select,
.dekole-pdp-store-select.form-control {
  width: 100% !important;
  height: auto !important;
  padding: 9px 32px 9px 12px !important;
  border-radius: var(--dekole-radius-sm) !important;
  border: 1px solid var(--dekole-light-border) !important;
  background: #fff !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%2394A3B8' d='M5 6L0 0h10z'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  font-size: 13px !important;
  color: var(--dekole-dark-text) !important;
  margin-top: 6px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  box-shadow: none !important;
  outline: none !important;
  line-height: 1.4 !important;
}
select.dekole-pdp-store-select:focus {
  border-color: var(--dekole-primary) !important;
}

/* Action buttons */
.dekole-pdp-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--dekole-light-border);
}
.dekole-pdp-actions .dekole-btn {
  width: 100%;
  justify-content: center;
  padding: 11px 14px;
  font-size: 14px;
}
.dekole-pdp-secondary-row {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 13px;
}
.dekole-pdp-secondary-row a {
  color: var(--dekole-muted);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dekole-pdp-secondary-row a:hover { color: var(--dekole-primary); }
.dekole-pdp-collapse-toggle {
  font-size: 13px;
  color: var(--dekole-primary);
  font-weight: 600;
  cursor: pointer;
}

/* Trust signals */
.dekole-pdp-trust {
  list-style: none;
  padding: 14px 0 0;
  margin: 14px 0 0;
  border-top: 1px solid var(--dekole-light-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dekole-pdp-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--dekole-muted);
}
.dekole-pdp-trust li i {
  color: var(--dekole-status-ok);
  width: 16px;
  text-align: center;
}

/* Seller box */
.dekole-pdp-seller-box {
  background: #fff;
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-lg);
  padding: 18px;
}
.dekole-pdp-seller-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.dekole-pdp-seller-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dekole-primary), var(--dekole-electric));
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dekole-pdp-seller-avatar-dekole {
  background: linear-gradient(135deg, var(--dekole-status-ok), #22c55e);
}
.dekole-pdp-seller-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dekole-dark-text);
  margin-bottom: 2px;
}
.dekole-pdp-seller-sub { display: flex; flex-wrap: wrap; gap: 6px; }
.dekole-pdp-seller-line {
  font-size: 12px;
  color: var(--dekole-muted);
  margin: 0 0 6px;
  line-height: 1.5;
}
.dekole-pdp-seller-line i { color: var(--dekole-muted); margin-right: 4px; }
.dekole-pdp-seller-actions {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}
.dekole-pdp-seller-actions .dekole-btn { flex: 1 1 0; justify-content: center; }
.dekole-pdp-share-btn {
  width: 100%;
  margin-top: 10px;
  padding: 8px 12px;
  background: transparent;
  border: 1px dashed var(--dekole-light-border);
  border-radius: var(--dekole-radius-sm);
  color: var(--dekole-dark-text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease;
}
.dekole-pdp-share-btn:hover {
  border-color: var(--dekole-primary);
  border-style: solid;
  color: var(--dekole-primary);
}

/* Below-the-fold blocks (details, recs, Q&A, reviews) */
.dekole-pdp-block {
  background: #fff;
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-lg);
  padding: 24px;
  margin-top: 24px;
}
.dekole-pdp-block:first-of-type { margin-top: 0; }
.dekole-pdp-block-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dekole-dark-text);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

/* Reviews */
.dekole-pdp-reviews-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
@media (max-width: 880px) {
  .dekole-pdp-reviews-grid { grid-template-columns: 1fr; }
}
.dekole-pdp-reviews-aggregate {
  padding-right: 24px;
  border-right: 1px solid var(--dekole-light-border);
}
@media (max-width: 880px) {
  .dekole-pdp-reviews-aggregate {
    border-right: 0;
    padding-right: 0;
    border-bottom: 1px solid var(--dekole-light-border);
    padding-bottom: 20px;
  }
}
.dekole-pdp-reviews-score {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.dekole-pdp-reviews-score-num {
  font-size: 46px;
  font-weight: 800;
  color: var(--dekole-dark-text);
  line-height: 1;
  letter-spacing: -0.02em;
}
.dekole-pdp-reviews-stars {
  color: var(--dekole-status-pending);
  font-size: 16px;
  letter-spacing: 2px;
}
.dekole-pdp-reviews-out {
  font-size: 13px;
  color: var(--dekole-muted);
  margin: 4px 0 0;
}
.dekole-pdp-reviews-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dekole-pdp-reviews-bar-row {
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  color: var(--dekole-dark-text);
}
.dekole-pdp-reviews-bar-label { font-weight: 600; }
.dekole-pdp-reviews-bar {
  height: 8px;
  background: var(--dekole-light-bg-2);
  border-radius: var(--dekole-radius-pill);
  overflow: hidden;
}
.dekole-pdp-reviews-bar-fill {
  height: 100%;
  background: var(--dekole-status-pending);
  border-radius: var(--dekole-radius-pill);
  transition: width .25s ease;
}
.dekole-pdp-reviews-bar-pct {
  color: var(--dekole-muted);
  font-weight: 600;
  text-align: right;
}

.dekole-pdp-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dekole-pdp-review {
  padding: 16px 0;
  border-bottom: 1px solid var(--dekole-light-border);
}
.dekole-pdp-review:last-of-type { border-bottom: 0; }
.dekole-pdp-review-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.dekole-pdp-review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dekole-pdp-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dekole-primary), var(--dekole-electric));
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dekole-pdp-review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dekole-dark-text);
  line-height: 1.2;
}
.dekole-pdp-review-date {
  font-size: 12px;
  color: var(--dekole-muted);
  margin-top: 2px;
}
.dekole-pdp-review-stars {
  color: var(--dekole-status-pending);
  font-size: 13px;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.dekole-pdp-review-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dekole-dark-text);
  margin: 0 0 6px;
}
.dekole-pdp-review-body {
  font-size: 14px;
  color: var(--dekole-dark-text);
  margin: 0;
  line-height: 1.55;
}
.dekole-pdp-loadmore {
  display: inline-flex !important;
  align-items: center;
  padding: 10px 18px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #fff !important;
  background: var(--dekole-primary) !important;
  border: 0 !important;
  border-radius: var(--dekole-radius-pill) !important;
  opacity: 1 !important;
  align-self: flex-start;
  margin-top: 12px;
  text-decoration: none !important;
}
.dekole-pdp-loadmore:hover { background: var(--dekole-primary-hover) !important; color: #fff !important; }
.dekole-pdp-loadmore b { font-weight: 700; }

.dekole-pdp-empty {
  text-align: center;
  padding: 32px 16px;
  color: var(--dekole-muted);
  background: var(--dekole-light-bg);
  border: 1px dashed var(--dekole-light-border);
  border-radius: var(--dekole-radius-md);
}
.dekole-pdp-empty i {
  font-size: 28px;
  color: var(--dekole-muted);
  margin-bottom: 6px;
}
.dekole-pdp-empty p { margin: 0; font-size: 13px; }

/* Q&A */
.dekole-pdp-qa-form {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.dekole-pdp-qa-input-shell {
  position: relative;
  flex: 1;
  min-width: 220px;
}
.dekole-pdp-qa-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dekole-muted);
  pointer-events: none;
}
.dekole-pdp-qa-input {
  width: 100%;
  padding: 11px 14px 11px 40px;
  font-size: 14px;
  background: var(--dekole-light-bg);
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-sm);
  color: var(--dekole-dark-text);
  outline: none;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.dekole-pdp-qa-input:focus {
  background: #fff;
  border-color: var(--dekole-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);
}

/* Q&A tabs use Bootstrap pill structure — restyle to brand */
.dekole-pdp-qa-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--dekole-light-border);
  padding: 0;
  list-style: none;
  margin: 0 0 18px;
}
.dekole-pdp-qa-tabs .nav-item { margin: 0; }
.dekole-pdp-qa-tabs .nav-link {
  background: transparent !important;
  border: 0 !important;
  border-bottom: 2px solid transparent !important;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dekole-muted);
  border-radius: 0 !important;
  margin-bottom: -1px;
  transition: color .15s ease, border-color .15s ease;
}
.dekole-pdp-qa-tabs .nav-link:hover { color: var(--dekole-dark-text); }
.dekole-pdp-qa-tabs .nav-link.active,
.dekole-pdp-qa-tabs .nav-pills .nav-link.active,
.dekole-pdp-qa-tabs > .nav-item > .nav-link.active {
  color: var(--dekole-primary) !important;
  background-color: transparent !important;
  background-image: none !important;
  border-bottom-color: var(--dekole-primary) !important;
}

.dekole-pdp-qa-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--dekole-light-border);
}
.dekole-pdp-qa-item:last-child { border-bottom: 0; }
.dekole-pdp-qa-author {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.dekole-pdp-qa-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--dekole-light-bg-2);
  border: 1px solid var(--dekole-light-border);
  flex-shrink: 0;
}
.dekole-pdp-qa-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dekole-dark-text);
  display: block;
}
.dekole-pdp-qa-date {
  font-size: 12px;
  color: var(--dekole-muted);
  display: block;
  margin: 2px 0 4px;
}
.dekole-pdp-qa-q {
  font-size: 14px;
  font-weight: 600;
  color: var(--dekole-dark-text);
  margin: 0;
}
.dekole-pdp-qa-a {
  margin: 10px 0 0 52px;
  padding: 10px 14px;
  background: rgba(37, 99, 235, .05);
  border-left: 3px solid var(--dekole-primary);
  border-radius: var(--dekole-radius-sm);
  font-size: 13px;
  color: var(--dekole-dark-text);
  line-height: 1.55;
}
.dekole-pdp-qa-a strong { color: var(--dekole-primary); }
.dekole-pdp-qa-loadmore {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dekole-primary);
  background: rgba(37, 99, 235, .08);
  border: 0;
  border-radius: var(--dekole-radius-pill);
}
.dekole-pdp-qa-loadmore:hover { background: rgba(37, 99, 235, .15); }

/* Frequently bought together */
.dekole-pdp-fbt {
  background: #fff;
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-lg);
  padding: 22px;
  margin-top: 28px;
}
.dekole-pdp-fbt-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dekole-dark-text);
  margin: 0 0 14px;
}
.dekole-pdp-fbt-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--dekole-light-border);
}
.dekole-pdp-fbt-images {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.dekole-pdp-fbt-images li {
  display: flex;
  align-items: center;
  gap: 4px;
}
.dekole-pdp-fbt-images img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--dekole-radius-sm);
  border: 1px solid var(--dekole-light-border);
  background: var(--dekole-light-bg-2);
}
.dekole-pdp-fbt-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--dekole-light-bg-2);
  border-radius: 50%;
  font-weight: 800;
  color: var(--dekole-muted);
}
.dekole-pdp-fbt-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: auto;
}
.dekole-pdp-fbt-total {
  font-size: 13px;
  color: var(--dekole-muted);
}
.dekole-pdp-fbt-total strong {
  font-size: 18px;
  color: var(--dekole-dark-text);
  font-weight: 800;
  margin-left: 4px;
}
.dekole-pdp-fbt-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dekole-pdp-fbt-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px dashed var(--dekole-light-border);
}
.dekole-pdp-fbt-list li:last-child { border-bottom: 0; }
.dekole-pdp-fbt-list label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  cursor: pointer;
  flex: 1;
  min-width: 0;
}
.dekole-pdp-fbt-list input[type="checkbox"] { accent-color: var(--dekole-primary); }
.dekole-pdp-fbt-price {
  color: var(--dekole-dark-text);
  font-weight: 700;
  white-space: nowrap;
}

/* ============================================================
   Cart page
   ============================================================ */
.dekole-cart-page { background: var(--dekole-light-bg); }

.dekole-cart-hero {
  background:
    radial-gradient(700px 240px at 90% 110%, rgba(56, 189, 248, .25), transparent 60%),
    linear-gradient(135deg, var(--dekole-navy) 0%, var(--dekole-panel) 100%);
  color: var(--dekole-white);
  padding: 32px 0 36px;
}
.dekole-cart-hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.dekole-cart-hero-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  color: #fff;
}
.dekole-cart-hero-sub {
  font-size: 14px;
  color: var(--dekole-soft);
  margin: 0;
}

/* Two-column grid (items + summary) */
.dekole-cart-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}
@media (max-width: 992px) {
  .dekole-cart-grid { grid-template-columns: 1fr; }
}

/* Items list */
.dekole-cart-items {
  background: #fff;
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-lg);
  padding: 24px;
}
.dekole-cart-items-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--dekole-light-border);
}
.dekole-cart-items-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dekole-dark-text);
  margin: 0;
}
.dekole-cart-items-count {
  font-size: 13px;
  color: var(--dekole-muted);
  font-weight: 500;
}

/* Single cart item row */
.dekole-cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--dekole-light-border);
}
.dekole-cart-item:last-of-type { border-bottom: 0; }

.dekole-cart-item-img {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: var(--dekole-radius-md);
  overflow: hidden;
  background: var(--dekole-light-bg-2);
  border: 1px solid var(--dekole-light-border);
}
.dekole-cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dekole-cart-item-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.dekole-cart-item-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--dekole-dark-text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dekole-cart-item-name:hover { color: var(--dekole-primary); }

.dekole-cart-item-attrs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.dekole-cart-item-attrs li {
  font-size: 12px;
  color: var(--dekole-dark-text);
  background: var(--dekole-light-bg-2);
  border: 1px solid var(--dekole-light-border);
  padding: 3px 10px;
  border-radius: var(--dekole-radius-pill);
}
.dekole-cart-item-attrs li span {
  color: var(--dekole-muted);
  margin-right: 4px;
  font-weight: 500;
}

.dekole-cart-item-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}
.dekole-cart-qty-select {
  font-size: 13px;
  padding: 8px 30px 8px 12px;
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-sm);
  background: #fff;
  color: var(--dekole-dark-text);
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%2394A3B8' d='M5 6L0 0h10z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color .15s ease;
}
.dekole-cart-qty-select:focus,
.dekole-cart-qty-select:hover {
  border-color: var(--dekole-primary);
}
.dekole-cart-link {
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--dekole-primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color .15s ease;
}
.dekole-cart-link:hover { color: var(--dekole-primary-hover); }
.dekole-cart-link.is-danger { color: var(--dekole-status-err); }
.dekole-cart-link.is-danger:hover { color: #B91C1C; }

/* Price column */
.dekole-cart-item-price {
  text-align: right;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.dekole-cart-price-final {
  font-size: 18px;
  font-weight: 800;
  color: var(--dekole-dark-text);
  letter-spacing: -0.01em;
}
.dekole-cart-price-mrp {
  font-size: 13px;
  color: var(--dekole-muted);
  text-decoration: line-through;
}

/* Offer banner inside an item */
.dekole-cart-offer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(245, 158, 11, .08);
  border: 1px solid rgba(245, 158, 11, .25);
  border-radius: var(--dekole-radius-sm);
  margin-top: 6px;
}
.dekole-cart-offer-tag {
  font-size: 13px;
  font-weight: 700;
  color: #B45309;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.dekole-cart-offer-tag small {
  font-size: 11px;
  font-weight: 500;
  color: #92400E;
  margin-top: 2px;
}
.dekole-cart-counter {
  font-size: 13px;
  font-weight: 700;
  color: var(--dekole-status-err);
  text-align: right;
  margin: 8px 0 0;
}

/* Items foot subtotal line */
.dekole-cart-items-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid var(--dekole-light-border);
  font-size: 15px;
  font-weight: 700;
  color: var(--dekole-dark-text);
}

/* Summary card (right rail) */
.dekole-cart-summary {
  position: sticky;
  top: 20px;
}
.dekole-cart-summary-card {
  background: #fff;
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-lg);
  padding: 22px;
}
.dekole-cart-summary-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dekole-dark-text);
  margin: 0 0 14px;
}
.dekole-cart-summary-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.dekole-cart-summary-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  color: var(--dekole-dark-text);
  border-bottom: 1px dashed var(--dekole-light-border);
}
.dekole-cart-summary-list li:last-child { border-bottom: 0; }
.dekole-cart-summary-soft {
  color: var(--dekole-muted);
  font-size: 12px;
}
.dekole-cart-summary-total {
  font-size: 16px !important;
  font-weight: 800;
  color: var(--dekole-dark-text) !important;
  padding-top: 14px !important;
  margin-top: 4px;
  border-top: 1px solid var(--dekole-light-border) !important;
  border-bottom: 0 !important;
}
.dekole-cart-summary-total > span:last-child {
  color: var(--dekole-primary);
  font-size: 20px;
}
.dekole-cart-checkout-btn {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 14px 18px;
}
.dekole-cart-trust {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dekole-cart-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--dekole-muted);
}
.dekole-cart-trust li i {
  color: var(--dekole-status-ok);
  width: 16px;
  text-align: center;
}

/* Empty cart state */
.dekole-cart-empty {
  background: #fff;
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-lg);
  padding: 64px 24px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.dekole-cart-empty-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 99, 235, .1), rgba(56, 189, 248, .15));
  color: var(--dekole-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
.dekole-cart-empty h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--dekole-dark-text);
}
.dekole-cart-empty p {
  font-size: 14px;
  color: var(--dekole-muted);
  margin: 0 0 22px;
  line-height: 1.55;
}
.dekole-cart-empty-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Saved for later grid */
.dekole-cart-saved-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.dekole-cart-saved-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-md);
  padding: 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.dekole-cart-saved-item:hover {
  border-color: rgba(37, 99, 235, .35);
  box-shadow: var(--dekole-shadow-sm);
}
.dekole-cart-saved-img {
  width: 80px;
  height: 80px;
  border-radius: var(--dekole-radius-sm);
  overflow: hidden;
  background: var(--dekole-light-bg-2);
}
.dekole-cart-saved-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dekole-cart-saved-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .dekole-cart-item {
    grid-template-columns: 80px 1fr;
  }
  .dekole-cart-item-img {
    width: 80px;
    height: 80px;
  }
  .dekole-cart-item-price {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    text-align: left;
  }
  .dekole-cart-item-price .dekole-cart-price-final { font-size: 16px; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ============================================================
   Auth pages (login / register / reset)
   ============================================================ */
.dekole-auth {
  background:
    radial-gradient(800px 400px at 10% 0%, rgba(37, 99, 235, .06), transparent 60%),
    radial-gradient(700px 380px at 90% 100%, rgba(56, 189, 248, .08), transparent 60%),
    var(--dekole-light-bg);
  display: flex;
  align-items: center;
  padding: 72px 0;
}
@media (max-width: 768px) {
  .dekole-auth { padding: 40px 0; }
}
.dekole-auth-wrap {
  width: 100%;
}
.dekole-auth-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(7, 17, 31, .35);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 580px;
  max-width: 1040px;
  margin: 0 auto;
}

/* LEFT brand panel */
.dekole-auth-brand {
  background:
    radial-gradient(420px 260px at 80% 110%, rgba(56, 189, 248, .35), transparent 60%),
    linear-gradient(150deg, var(--dekole-navy) 0%, var(--dekole-panel) 100%);
  color: var(--dekole-white);
  padding: 44px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.dekole-auth-brand h1 {
  font-family: 'Inter', 'Poppins', system-ui, sans-serif;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 4px 0 0;
}
.dekole-auth-logo img {
  height: 36px;
  width: auto;
  margin-bottom: 8px;
}
.dekole-auth-sub {
  font-size: 15px;
  color: var(--dekole-soft);
  margin: 0;
  line-height: 1.55;
  max-width: 380px;
  position: relative;
  z-index: 2;
}
.dekole-auth-perks {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.dekole-auth-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--dekole-soft);
  line-height: 1.5;
}
.dekole-auth-perks li i {
  color: var(--dekole-electric);
  margin-top: 2px;
}

/* Decorative blobs */
.dekole-auth-brand-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.dekole-auth-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
}
.dekole-auth-blob-1 {
  width: 260px;
  height: 260px;
  background: var(--dekole-primary);
  top: -60px;
  left: -40px;
}
.dekole-auth-blob-2 {
  width: 320px;
  height: 320px;
  background: var(--dekole-electric);
  bottom: -100px;
  right: -80px;
}

/* RIGHT form panel */
.dekole-auth-form-wrap {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.dekole-auth-form-logo {
  display: none;
  margin-bottom: 18px;
}
.dekole-auth-form-logo img {
  height: 32px;
  width: auto;
}
.dekole-auth-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--dekole-dark-text);
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.dekole-auth-subtitle {
  font-size: 14px;
  color: var(--dekole-muted);
  margin: 0 0 22px;
}
.dekole-auth-subtitle a {
  color: var(--dekole-primary);
  font-weight: 600;
}
.dekole-auth-subtitle a:hover {
  text-decoration: underline;
}

/* Alerts */
.dekole-auth-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--dekole-radius-sm);
  margin-bottom: 14px;
}
.dekole-auth-alert-error {
  background: rgba(239, 68, 68, .08);
  color: #B91C1C;
  border: 1px solid rgba(239, 68, 68, .25);
}
.dekole-auth-alert-ok {
  background: rgba(22, 163, 74, .08);
  color: var(--dekole-status-ok);
  border: 1px solid rgba(22, 163, 74, .25);
}

/* Fields */
.dekole-auth-field {
  margin-bottom: 14px;
}
.dekole-auth-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.dekole-auth-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dekole-dark-text);
  margin: 0 0 6px;
}
.dekole-auth-forgot {
  font-size: 12px;
  font-weight: 600;
  color: var(--dekole-primary);
}
.dekole-auth-forgot:hover {
  text-decoration: underline;
}
.dekole-auth-input-shell {
  position: relative;
  display: flex;
  align-items: center;
}
.dekole-auth-input-icon {
  position: absolute;
  left: 14px;
  color: var(--dekole-muted);
  font-size: 14px;
  pointer-events: none;
}
.dekole-auth-input {
  width: 100%;
  padding: 12px 14px 12px 40px;
  font-size: 14px;
  color: var(--dekole-dark-text);
  background: var(--dekole-light-bg);
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-sm);
  outline: none;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.dekole-auth-input:focus {
  background: #fff;
  border-color: var(--dekole-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);
}
.dekole-auth-input::placeholder {
  color: var(--dekole-muted);
}
.dekole-auth-toggle {
  position: absolute;
  right: 6px;
  border: 0;
  background: transparent;
  color: var(--dekole-muted);
  width: 36px;
  height: 36px;
  border-radius: var(--dekole-radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color .15s ease, background .15s ease;
}
.dekole-auth-toggle:hover {
  color: var(--dekole-primary);
  background: rgba(37, 99, 235, .08);
}

/* Password strength + validation error states */
.dekole-auth-strength {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--dekole-muted);
}
.dekole-auth-strength.is-weak   { color: var(--dekole-status-err); }
.dekole-auth-strength.is-ok     { color: var(--dekole-status-pending); }
.dekole-auth-strength.is-strong { color: var(--dekole-status-ok); }

.dekole-auth-input--error {
  border-color: var(--dekole-status-err) !important;
  background: rgba(239, 68, 68, .04) !important;
}
.dekole-auth-input-error-msg {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--dekole-status-err);
}

/* Remember me */
.dekole-auth-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--dekole-dark-text);
  margin: 4px 0 16px;
  cursor: pointer;
}
.dekole-auth-remember input[type="checkbox"] {
  accent-color: var(--dekole-primary);
  width: 16px;
  height: 16px;
}

/* Submit */
.dekole-auth-submit {
  width: 100%;
  justify-content: center;
  padding: 12px 18px;
  font-size: 14px;
}

/* Divider */
.dekole-auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: var(--dekole-muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.dekole-auth-divider::before,
.dekole-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--dekole-light-border);
}

/* Terms */
.dekole-auth-tos {
  font-size: 12px;
  color: var(--dekole-muted);
  text-align: center;
  margin: 18px 0 0;
  line-height: 1.5;
}
.dekole-auth-tos a {
  color: var(--dekole-dark-text);
  font-weight: 600;
}
.dekole-auth-tos a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .dekole-auth-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .dekole-auth-brand {
    display: none;
  }
  .dekole-auth-form-logo {
    display: block;
  }
  .dekole-auth-form-wrap {
    padding: 32px 24px;
  }
}

/* ============================================================
   Hero stat strip (Dekole Business, future hero contexts)
   ============================================================ */
.dekole-stat-strip {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--dekole-radius-md);
  overflow: hidden;
}
.dekole-stat-strip-item {
  background: rgba(7, 17, 31, .55);
  padding: 16px 14px;
  text-align: center;
}
.dekole-stat-strip-k {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  color: var(--dekole-electric);
  letter-spacing: -0.01em;
  line-height: 1;
}
.dekole-stat-strip-v {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dekole-soft);
}

/* ============================================================
   Sell on Dekole — seller type tiles
   ============================================================ */
.dekole-seller-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.dekole-seller-type {
  background: #fff;
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-lg);
  padding: 24px;
  color: var(--dekole-dark-text);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.dekole-seller-type:hover {
  transform: translateY(-3px);
  box-shadow: var(--dekole-shadow-md);
  border-color: rgba(37, 99, 235, .4);
  color: var(--dekole-dark-text);
}
.dekole-seller-type-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--dekole-primary);
  background: rgba(37, 99, 235, .1);
  border: 1px solid rgba(37, 99, 235, .25);
  padding: 4px 10px;
  border-radius: var(--dekole-radius-pill);
}
.dekole-seller-type-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--dekole-radius-md);
  background: linear-gradient(135deg, rgba(37, 99, 235, .12), rgba(56, 189, 248, .18));
  color: var(--dekole-primary);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.dekole-seller-type-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}
.dekole-seller-type-desc {
  font-size: 13px;
  color: var(--dekole-muted);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.dekole-seller-type-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--dekole-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}
.dekole-seller-type:hover .dekole-seller-type-cta {
  color: var(--dekole-primary-hover);
}

/* Steps (3-step how-it-works) */
.dekole-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.dekole-step {
  background: #fff;
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-lg);
  padding: 26px 24px;
  position: relative;
}
.dekole-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  background: linear-gradient(135deg, var(--dekole-primary), var(--dekole-electric));
  color: #fff;
  margin-bottom: 14px;
  box-shadow: 0 6px 14px rgba(37, 99, 235, .25);
}
.dekole-step-title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--dekole-dark-text);
}
.dekole-step-desc {
  font-size: 14px;
  color: var(--dekole-muted);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   Service provider card (Dekole Services)
   ============================================================ */
.dekole-provider-card {
  background: #fff;
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-lg);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.dekole-provider-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--dekole-shadow-lg);
  border-color: rgba(37, 99, 235, .4);
}

/* Save-heart — floats in the top-right corner of the card */
.dekole-provider-save {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--dekole-light-bg);
  border: 1px solid var(--dekole-light-border);
  color: var(--dekole-muted);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease, color .15s ease, border-color .15s ease;
  z-index: 2;
}
.dekole-provider-save:hover {
  background: rgba(239, 68, 68, .1);
  border-color: rgba(239, 68, 68, .35);
  color: var(--dekole-status-err);
  transform: scale(1.06);
}
.dekole-provider-save.is-saved {
  color: var(--dekole-status-err);
  background: rgba(239, 68, 68, .1);
  border-color: rgba(239, 68, 68, .35);
}

/* Avatar */
.dekole-provider-avatar-wrap {
  margin-bottom: 12px;
  padding: 22px 18px 0;
}
.dekole-provider-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: block;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(7, 17, 31, .15);
  object-fit: cover;
  background: #fff;
}
.dekole-provider-avatar-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dekole-primary), var(--dekole-electric));
  color: #fff;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0;
}

/* Identity */
.dekole-provider-id {
  padding: 0 18px;
  margin-bottom: 12px;
}
.dekole-provider-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.dekole-provider-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dekole-dark-text);
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.dekole-provider-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--dekole-status-ok);
  background: rgba(22, 163, 74, .1);
  border-radius: var(--dekole-radius-pill);
  padding: 2px 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.dekole-provider-tagline {
  font-size: 13px;
  color: var(--dekole-muted);
  margin: 0;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 3-metric stat row */
.dekole-provider-stats {
  margin: 0 18px 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: var(--dekole-light-bg);
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-md);
  padding: 10px 6px;
}
.dekole-provider-stat {
  text-align: center;
  position: relative;
}
.dekole-provider-stat + .dekole-provider-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: var(--dekole-light-border);
}
.dekole-provider-stat-value {
  font-size: 15px;
  font-weight: 800;
  color: var(--dekole-dark-text);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1.1;
}
.dekole-provider-stat-value i.fa-star {
  color: var(--dekole-status-pending);
  font-size: 13px;
}
.dekole-provider-stat-price {
  color: var(--dekole-primary);
}
.dekole-provider-stat-value small {
  font-size: 11px;
  font-weight: 600;
  color: var(--dekole-muted);
}
.dekole-provider-stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dekole-muted);
  margin-top: 3px;
}

/* Attributes */
.dekole-provider-attrs {
  list-style: none;
  padding: 0 18px;
  margin: 0 0 16px;
}
.dekole-provider-attrs li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3px 0;
  font-size: 13px;
  color: var(--dekole-dark-text);
}
.dekole-provider-attrs li.is-muted {
  color: var(--dekole-muted);
}
.dekole-provider-attrs li i {
  color: var(--dekole-muted);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}
.dekole-provider-attrs small {
  color: var(--dekole-muted);
  font-size: 12px;
}

/* Action layout — primary full-width, secondary inline */
.dekole-provider-actions {
  margin-top: auto;
  padding: 14px 18px 18px;
  border-top: 1px solid var(--dekole-light-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dekole-provider-cta {
  width: 100%;
  justify-content: center;
  font-size: 13px;
  padding: 11px 16px;
}
.dekole-provider-actions-secondary {
  display: flex;
  gap: 6px;
}
.dekole-provider-actions-secondary .dekole-btn {
  flex: 1 1 0;
  font-size: 12px;
  padding: 8px 10px;
  justify-content: center;
  white-space: nowrap;
}

/* ============================================================
   Filter sidebar (Make an Offer, future filtered listings)
   ============================================================ */
.dekole-filter-panel {
  background: #fff;
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-md);
  padding: 18px;
  position: sticky;
  top: 20px;
}
.dekole-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.dekole-filter-head h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dekole-dark-text);
}
.dekole-filter-clear {
  font-size: 12px;
  font-weight: 600;
  color: var(--dekole-primary);
}
.dekole-filter-clear:hover {
  text-decoration: underline;
}
.dekole-filter-group {
  padding: 14px 0;
  border-top: 1px solid var(--dekole-light-border);
}
.dekole-filter-group:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.dekole-filter-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--dekole-muted);
  margin-bottom: 8px;
}
.dekole-filter-select,
.dekole-filter-input {
  width: 100%;
  padding: 9px 12px;
  font-size: 14px;
  color: var(--dekole-dark-text);
  background: var(--dekole-light-bg);
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-sm);
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.dekole-filter-select:focus,
.dekole-filter-input:focus {
  border-color: var(--dekole-primary);
  background: #fff;
}
.dekole-filter-range {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dekole-filter-range-sep {
  color: var(--dekole-muted);
  font-weight: 600;
}
.dekole-filter-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.dekole-filter-chip {
  margin: 0;
  cursor: pointer;
}
.dekole-filter-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.dekole-filter-chip span {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  background: var(--dekole-light-bg-2);
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-pill);
  color: var(--dekole-dark-text);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.dekole-filter-chip:hover span {
  border-color: var(--dekole-primary);
  color: var(--dekole-primary);
}
.dekole-filter-chip.is-active span,
.dekole-filter-chip input:checked + span {
  background: var(--dekole-primary);
  border-color: var(--dekole-primary);
  color: #fff;
}
.dekole-filter-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--dekole-dark-text);
}
.dekole-filter-toggle input[type="checkbox"] {
  accent-color: var(--dekole-primary);
  width: 16px;
  height: 16px;
}
.dekole-filter-toggle-text {
  flex: 1;
}

/* Active filter chips (top of results) */
.dekole-active-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.dekole-active-chips-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--dekole-muted);
  margin-right: 4px;
}
.dekole-chip-removable {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 12px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(37, 99, 235, .08);
  color: var(--dekole-primary);
  border: 1px solid rgba(37, 99, 235, .25);
  border-radius: var(--dekole-radius-pill);
}
.dekole-chip-removable a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--dekole-primary);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  background: rgba(37, 99, 235, .12);
  transition: background .15s ease, color .15s ease;
}
.dekole-chip-removable a:hover {
  background: var(--dekole-primary);
  color: #fff;
}

/* ============================================================
   Trust strip
   ============================================================ */
.dekole-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.dekole-trust {
  background: #fff;
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-md);
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.dekole-trust-icon {
  width: 44px; height: 44px;
  border-radius: var(--dekole-radius-md);
  display: flex; align-items: center; justify-content: center;
  background: rgba(37, 99, 235, .1);
  color: var(--dekole-primary);
  font-size: 20px;
  flex-shrink: 0;
}
.dekole-trust h4 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--dekole-dark-text);
}
.dekole-trust p {
  margin: 0;
  font-size: 13px;
  color: var(--dekole-muted);
  line-height: 1.5;
}

/* ============================================================
   Seller / vendor strip
   ============================================================ */
.dekole-seller-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.dekole-seller {
  background: #fff;
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-md);
  padding: 18px 14px;
  text-align: center;
  color: var(--dekole-dark-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.dekole-seller-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 99, 235, .12), rgba(56, 189, 248, .18));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--dekole-primary);
  font-weight: 800;
}
.dekole-seller-img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: var(--dekole-light-bg-2);
}
.dekole-seller-name { font-weight: 700; font-size: 14px; line-height: 1.25; }
.dekole-seller-meta { font-size: 12px; color: var(--dekole-muted); }

/* Per-type seller listing row (used on /sell) */
.dekole-sellers-row {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--dekole-light-border);
}
.dekole-sellers-row:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.dekole-sellers-row-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.dekole-sellers-row-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dekole-dark-text);
  margin: 0 0 4px;
}
.dekole-sellers-row-desc {
  font-size: 13px;
  color: var(--dekole-muted);
  margin: 0;
  max-width: 540px;
  line-height: 1.5;
}

/* ============================================================
   Footer
   ============================================================ */
.dekole-footer {
  background: var(--dekole-black);
  color: var(--dekole-soft);
  padding: 56px 0 0;
}
.dekole-footer h5 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.dekole-footer ul { list-style: none; padding: 0; margin: 0; }
.dekole-footer ul li { margin-bottom: 10px; }
.dekole-footer a { color: var(--dekole-soft); font-size: 14px; }
.dekole-footer a:hover { color: var(--dekole-electric); }
.dekole-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  padding-bottom: 40px;
}
.dekole-footer-bottom {
  border-top: 1px solid var(--dekole-dark-border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--dekole-muted);
}
.dekole-footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dekole-footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dekole-panel);
  color: var(--dekole-soft);
  border: 1px solid var(--dekole-dark-border);
}
.dekole-footer-social a:hover {
  background: var(--dekole-primary);
  color: #fff;
  border-color: var(--dekole-primary);
}

/* ============================================================
   Mobile sticky action bar (for product/service/event pages)
   - Provided here so future pages can drop it in immediately.
   ============================================================ */
.dekole-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1030;
  background: var(--dekole-navy);
  border-top: 1px solid var(--dekole-dark-border);
  padding: 10px 12px;
  display: none;
  gap: 8px;
}
.dekole-sticky-bar .dekole-btn { flex: 1; }
@media (max-width: 768px) {
  .dekole-sticky-bar { display: flex; }
}

/* ============================================================
   Status pills (functional colors only)
   ============================================================ */
.dekole-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--dekole-radius-pill);
  text-transform: uppercase;
  letter-spacing: .03em;
}
.dekole-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.dekole-status.is-ok       { color: var(--dekole-status-ok);      background: rgba(22, 163, 74, .12); }
.dekole-status.is-pending  { color: var(--dekole-status-pending); background: rgba(245, 158, 11, .15); }
.dekole-status.is-err      { color: var(--dekole-status-err);     background: rgba(239, 68, 68, .12); }
.dekole-status.is-active   { color: var(--dekole-status-active);  background: rgba(37, 99, 235, .12); }
.dekole-status.is-draft    { color: var(--dekole-status-draft);   background: rgba(100, 116, 139, .15); }

/* ============================================================
   Responsive tweaks for header / nav
   ============================================================ */
@media (max-width: 768px) {
  .dekole-header .dekole-header-inner {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0;
  }
  .dekole-header .dekole-search {
    order: 3;
    flex: 1 0 100%;
  }
  .dekole-header .dekole-logo img { height: 30px; }
  .dekole-search-shell select.dekole-search-scope { display: none; }
  .dekole-search-shell button.dekole-search-submit { padding: 0 18px; }
  .dekole-search-shell button.dekole-search-submit .dekole-submit-label { display: none; }
}

/* ============================================================
   Homepage v2 — premium marketplace redesign
   Matches the reference screenshot layout. All rules scoped
   under .dekole-scope to avoid colliding with legacy styles.
   ============================================================ */

/* ---------- Button additions (blue outline + ghost-light) ---------- */
.dekole-scope .dekole-btn-outline-blue {
  background: transparent;
  color: var(--dekole-primary);
  border-color: var(--dekole-primary);
}
.dekole-scope .dekole-btn-outline-blue:hover {
  background: var(--dekole-primary);
  color: #fff;
}
.dekole-scope .dekole-btn-ghost-light {
  background: transparent;
  color: var(--dekole-white);
  border-color: rgba(255, 255, 255, .22);
}
.dekole-scope .dekole-btn-ghost-light:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .4);
  color: var(--dekole-white);
}

/* ============================================================
   1. HERO  (light gradient · product collage)
   ============================================================ */
.dekole-scope .dekole-hero-light {
  position: relative;
  padding: 56px 0 64px;
  background:
    radial-gradient(900px 500px at 88% 30%, rgba(56, 189, 248, .22), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(37, 99, 235, .14), transparent 60%),
    linear-gradient(135deg, #F8FBFF 0%, #EAF2FF 100%);
  overflow: hidden;
}
.dekole-scope .dekole-hero-light-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 991px) {
  .dekole-scope .dekole-hero-light-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.dekole-scope .dekole-hero-eyebrow--light {
  background: rgba(37, 99, 235, .08);
  border-color: rgba(37, 99, 235, .25);
  color: var(--dekole-primary);
}
.dekole-scope .dekole-hero-light-title {
  font-family: 'Inter', 'Poppins', system-ui, sans-serif;
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--dekole-dark-text);
}
.dekole-scope .dekole-hero-light-accent {
  color: var(--dekole-primary);
  background: linear-gradient(90deg, var(--dekole-primary), var(--dekole-electric));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dekole-scope .dekole-hero-light-sub {
  font-size: clamp(15px, 1.5vw, 17px);
  color: #475569;
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 540px;
}
.dekole-scope .dekole-hero-light-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.dekole-scope .dekole-hero-light-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.dekole-scope .dekole-hero-light-avatars {
  display: inline-flex;
  align-items: center;
}
.dekole-scope .dekole-hero-light-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(7, 17, 31, .08);
  margin-left: -8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--dekole-primary);
  background: #fff;
}
.dekole-scope .dekole-hero-light-avatar:first-child { margin-left: 0; }
.dekole-scope .dekole-hero-light-avatar--count {
  background: var(--dekole-primary) !important;
  color: #fff;
}
.dekole-scope .dekole-hero-light-social-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.3;
}
.dekole-scope .dekole-hero-light-social-meta strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--dekole-dark-text);
}
.dekole-scope .dekole-hero-light-social-meta span {
  font-size: 12px;
  color: var(--dekole-muted);
}

/* Light chip variant */
.dekole-scope .dekole-chips--light { gap: 8px; }
.dekole-scope .dekole-chip--light {
  background: #fff;
  border: 1px solid var(--dekole-light-border);
  color: var(--dekole-dark-text);
  font-weight: 500;
}
.dekole-scope .dekole-chip--light:hover,
.dekole-scope .dekole-chip--light:focus {
  background: rgba(37, 99, 235, .08);
  border-color: rgba(37, 99, 235, .35);
  color: var(--dekole-primary);
}

/* Visual collage (right column) */
.dekole-scope .dekole-hero-light-visual {
  position: relative;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .dekole-scope .dekole-hero-light-visual { height: 340px; }
}
@media (max-width: 575px) {
  .dekole-scope .dekole-hero-light-visual { display: none; }
}


.dekole-hero-light{
margin-top: 8px;
}
/* Image variant — uses /public/hero-banner.png */
.dekole-scope .dekole-hero-light-visual--image {
  height: auto;
  min-height: 360px;
}
.dekole-scope .dekole-hero-light-image {
  width: 100%;
  max-width: 868px;
  height: auto;
  display: block;
  object-fit: contain;
  /* filter: drop-shadow(0 24px 50px rgba(7, 17, 31, .18)); */
  /* animation: dekoleHeroFloat 8s ease-in-out infinite; */
}
@media (max-width: 991px) {
  .dekole-scope .dekole-hero-light-visual--image { min-height: 280px; }
  .dekole-scope .dekole-hero-light-image { max-width: 440px; }
}
@media (max-width: 767px) {
  .dekole-scope .dekole-hero-light-visual--image { min-height: 240px; }
  .dekole-scope .dekole-hero-light-image { max-width: 360px; }
}
.dekole-scope .dekole-hero-orb {
  position: absolute;
  inset: 8% 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 40%, rgba(56, 189, 248, .45), rgba(37, 99, 235, .35) 50%, rgba(37, 99, 235, .2) 70%, transparent 75%);
  box-shadow: 0 30px 80px rgba(37, 99, 235, .22);
}
.dekole-scope .dekole-hero-spark {
  position: absolute;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--dekole-primary);
  box-shadow: 0 6px 14px rgba(7, 17, 31, .12);
}
.dekole-scope .dekole-hero-spark--1 { top: 6%; left: 38%; }
.dekole-scope .dekole-hero-spark--2 { top: 22%; right: 8%;  color: #F59E0B; }
.dekole-scope .dekole-hero-spark--3 { bottom: 18%; left: 14%; color: #EF4444; }

/* Floating product circles */
.dekole-scope .dekole-hero-product {
  position: absolute;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: var(--dekole-primary);
  box-shadow:
    0 20px 40px rgba(7, 17, 31, .18),
    0 0 0 6px rgba(255, 255, 255, .65);
  animation: dekoleHeroFloat 7s ease-in-out infinite;
}
.dekole-scope .dekole-hero-product--headphones {
  top: 4%; right: 6%;
  width: 120px; height: 120px;
  font-size: 48px;
  background: linear-gradient(160deg, #DBEAFE, #fff);
}
.dekole-scope .dekole-hero-product--shoe {
  top: 38%; right: 0%;
  font-size: 36px;
  color: #BE185D;
  background: linear-gradient(160deg, #FCE7F3, #fff);
  animation-delay: -2s;
}
.dekole-scope .dekole-hero-product--phone {
  top: 22%; left: 6%;
  font-size: 34px;
  color: #0F766E;
  background: linear-gradient(160deg, #CCFBF1, #fff);
  animation-delay: -1s;
}
.dekole-scope .dekole-hero-product--camera {
  bottom: 18%; left: 24%;
  width: 88px; height: 88px;
  font-size: 32px;
  color: #B45309;
  background: linear-gradient(160deg, #FEF3C7, #fff);
  animation-delay: -3s;
}
.dekole-scope .dekole-hero-product--game {
  bottom: 6%; right: 14%;
  width: 88px; height: 88px;
  font-size: 32px;
  color: var(--dekole-primary);
  background: linear-gradient(160deg, #DBEAFE, #fff);
  animation-delay: -4s;
}
@keyframes dekoleHeroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================================
   2. TRUST BAR  (4 columns with dividers, sits below hero)
   ============================================================ */
.dekole-scope .dekole-trust-bar-section {
  padding: 22px 0 0;
}
.dekole-scope .dekole-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-md);
  box-shadow: 0 6px 16px rgba(7, 17, 31, .04);
  overflow: hidden;
}
.dekole-scope .dekole-trust-bar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-right: 1px solid var(--dekole-light-border);
}
.dekole-scope .dekole-trust-bar-item:last-child { border-right: 0; }
.dekole-scope .dekole-trust-bar-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(37, 99, 235, .1);
  color: var(--dekole-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.dekole-scope .dekole-trust-bar-item h4 {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dekole-dark-text);
}
.dekole-scope .dekole-trust-bar-item p {
  margin: 0;
  font-size: 12.5px;
  color: var(--dekole-muted);
  line-height: 1.4;
}
@media (max-width: 991px) {
  .dekole-scope .dekole-trust-bar { grid-template-columns: repeat(2, 1fr); }
  .dekole-scope .dekole-trust-bar-item:nth-child(2) { border-right: 0; }
  .dekole-scope .dekole-trust-bar-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--dekole-light-border);
  }
}
@media (max-width: 575px) {
  .dekole-scope .dekole-trust-bar { grid-template-columns: 1fr; }
  .dekole-scope .dekole-trust-bar-item {
    border-right: 0;
    border-bottom: 1px solid var(--dekole-light-border);
  }
  .dekole-scope .dekole-trust-bar-item:last-child { border-bottom: 0; }
}

/* ============================================================
   3. POPULAR CATEGORIES / SERVICES — borderless icon row
   ============================================================ */
.dekole-scope .dekole-cat-row {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 14px;
}
.dekole-scope .dekole-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  text-decoration: none;
  color: var(--dekole-dark-text);
  padding: 4px 0;
  transition: transform .15s ease;
}
.dekole-scope .dekole-cat-item:hover { transform: translateY(-2px); }
.dekole-scope .dekole-cat-item-thumb {
  width: 76px; height: 76px;
  border-radius: 16px;
  background: var(--dekole-light-bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--dekole-primary);
  overflow: hidden;
  transition: background .15s ease, color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.dekole-scope .dekole-cat-item:hover .dekole-cat-item-thumb {
  background: rgba(37, 99, 235, .08);
  box-shadow: 0 8px 18px rgba(7, 17, 31, .08);
}
.dekole-scope .dekole-cat-item-thumb--image {
  background: linear-gradient(160deg, #F8FBFF 0%, #EEF4FF 100%);
  padding: 8px;
}
.dekole-scope .dekole-cat-item-thumb--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .2s ease;
}
.dekole-scope .dekole-cat-item:hover .dekole-cat-item-thumb--image img {
  transform: scale(1.06);
}
.dekole-scope .dekole-cat-item-thumb--more {
  background: rgba(37, 99, 235, .08);
  color: var(--dekole-primary);
}
.dekole-scope .dekole-cat-item-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dekole-dark-text);
  line-height: 1.25;
}
@media (max-width: 1199px) {
  .dekole-scope .dekole-cat-row { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 767px) {
  .dekole-scope .dekole-cat-row { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 480px) {
  .dekole-scope .dekole-cat-row { grid-template-columns: repeat(3, 1fr); }
  .dekole-scope .dekole-cat-item-thumb { width: 60px; height: 60px; font-size: 22px; }
  .dekole-scope .dekole-cat-item-thumb--image { padding: 6px; }
}

/* ============================================================
   4. FEATURED DISCOUNT CARDS (vibrant pastel tones)
   ============================================================ */
.dekole-scope .dekole-discount-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .dekole-scope .dekole-discount-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .dekole-scope .dekole-discount-row {
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }
  .dekole-scope .dekole-discount-row > * { scroll-snap-align: start; }
}
.dekole-scope .dekole-discount-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  padding: 18px 18px 16px;
  min-height: 190px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.dekole-scope .dekole-discount-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(7, 17, 31, .12);
}
.dekole-scope .dekole-discount-card-pill {
  align-self: flex-start;
  background: #EF4444;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 5px 10px;
  border-radius: var(--dekole-radius-pill);
  z-index: 2;
}
.dekole-scope .dekole-discount-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 14px;
  z-index: 2;
  position: relative;
}
.dekole-scope .dekole-discount-card-cat {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--dekole-dark-text);
}
.dekole-scope .dekole-discount-card-copy {
  font-size: 13px;
  color: #475569;
  margin-bottom: 10px;
}
.dekole-scope .dekole-discount-card-cta {
  margin-top: auto;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.01em;
}
.dekole-scope .dekole-discount-card-cta i { transition: transform .15s ease; }
.dekole-scope .dekole-discount-card:hover .dekole-discount-card-cta i { transform: translateX(3px); }
.dekole-scope .dekole-discount-card-media {
  position: absolute;
  right: -37px;
  bottom: -24px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 6px 18px rgba(7, 17, 31, .15);
  /* Smooth transition for the pick-up hover effect */
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center bottom;
  will-change: transform, box-shadow;
}
/* "Pick up with hands" — lifts, tilts slightly, casts a deeper shadow */
.dekole-scope .dekole-discount-card:hover .dekole-discount-card-media {
  transform: translateY(-18px) rotate(-6deg) scale(1.07);
  box-shadow:
    0 28px 48px rgba(7, 17, 31, .28),
    0 10px 18px rgba(7, 17, 31, .14);
}
.dekole-scope .dekole-row-grid--gap-top { margin-top: 32px; }

/* ============================================================
   5. NEGOTIATE STRIP — dark navy CTA banner with numbered steps
   ============================================================ */
.dekole-scope .dekole-negotiate-strip {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr) auto;
  gap: 28px;
  align-items: center;
  border-radius: var(--dekole-radius-lg);
  padding: 28px 32px;
  background:
    radial-gradient(800px 320px at 100% 100%, rgba(56, 189, 248, .35), transparent 60%),
    radial-gradient(600px 260px at 0% 0%, rgba(37, 99, 235, .35), transparent 60%),
    linear-gradient(135deg, var(--dekole-navy), #0B1A33);
  color: #fff;
  margin-bottom: 36px;
  overflow: hidden;
}
.dekole-scope .dekole-negotiate-strip-head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.dekole-scope .dekole-negotiate-strip-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(56, 189, 248, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--dekole-electric);
  flex-shrink: 0;
}
.dekole-scope .dekole-negotiate-strip-title {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 800;
  margin: 0 0 4px;
  color: #fff;
  letter-spacing: -0.01em;
}
.dekole-scope .dekole-negotiate-strip-sub {
  font-size: 13.5px;
  color: var(--dekole-soft);
  margin: 0;
  line-height: 1.4;
}
.dekole-scope .dekole-negotiate-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.dekole-scope .dekole-negotiate-steps > li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dekole-scope .dekole-negotiate-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, .18);
}
.dekole-scope .dekole-negotiate-step-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dekole-soft);
  white-space: nowrap;
}
.dekole-scope .dekole-negotiate-step-arrow {
  color: rgba(255, 255, 255, .35);
  font-size: 12px;
  padding: 0 4px;
}
.dekole-scope .dekole-negotiate-strip-cta {
  white-space: nowrap;
}
@media (max-width: 991px) {
  .dekole-scope .dekole-negotiate-strip {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
    text-align: center;
  }
  .dekole-scope .dekole-negotiate-strip-head { justify-content: center; }
  .dekole-scope .dekole-negotiate-strip-cta { justify-self: center; }
}
@media (max-width: 575px) {
  .dekole-scope .dekole-negotiate-steps { gap: 6px; }
  .dekole-scope .dekole-negotiate-step-label { font-size: 12px; }
  .dekole-scope .dekole-negotiate-step-arrow { display: none; }
  .dekole-scope .dekole-negotiate-steps > li { flex: 1 1 calc(33% - 6px); justify-content: center; }
}
.dekole-scope .dekole-section-head--inner {
  margin-top: 8px;
  margin-bottom: 22px;
}

/* ============================================================
   6. CTA PANEL VARIANTS (Official / Spotlight)
   ============================================================ */
.dekole-scope .dekole-cta-panel--official {
  background:
    radial-gradient(700px 300px at 90% 110%, rgba(56, 189, 248, .25), transparent 60%),
    linear-gradient(135deg, var(--dekole-navy), var(--dekole-panel));
}
.dekole-scope .dekole-cta-panel--spotlight {
  background:
    radial-gradient(600px 280px at 10% 10%, rgba(56, 189, 248, .22), transparent 60%),
    linear-gradient(135deg, #111827, #1E293B);
}
.dekole-scope .dekole-cta-panel-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}
.dekole-scope .dekole-cta-panel-art-icon {
  font-size: 96px;
  color: rgba(56, 189, 248, .8);
  filter: drop-shadow(0 8px 24px rgba(56, 189, 248, .35));
}
.dekole-scope .dekole-cta-panel-art-pill {
  position: absolute;
  bottom: 8%; right: 6%;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  border-radius: var(--dekole-radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, .18);
}
.dekole-scope .dekole-cta-panel-art-pill i { color: var(--dekole-electric); }

/* ============================================================
   7. SELLER STORIES — flag pill rows
   ============================================================ */
.dekole-scope .dekole-flag-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.dekole-scope .dekole-flag-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--dekole-light-border);
  border-radius: var(--dekole-radius-pill);
  padding: 10px 16px 10px 10px;
  text-decoration: none;
  color: var(--dekole-dark-text);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.dekole-scope .dekole-flag-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--dekole-shadow-md);
  border-color: rgba(37, 99, 235, .35);
}
.dekole-scope .dekole-flag-pill-flag {
  width: 36px; height: 36px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 2px 6px rgba(7, 17, 31, .08);
  position: relative;
}
.dekole-scope .dekole-flag-pill-code {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
}
.dekole-scope .dekole-flag-pill-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}
.dekole-scope .dekole-flag-pill-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dekole-dark-text);
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
}
.dekole-scope .dekole-flag-pill-name i {
  color: var(--dekole-status-ok);
  font-size: 12px;
}
.dekole-scope .dekole-flag-pill-meta {
  font-size: 12px;
  color: var(--dekole-muted);
  line-height: 1.25;
}

/* ============================================================
   8. EVENT CARD refinements
   ============================================================ */
.dekole-scope .dekole-card--event .dekole-card-media {
  aspect-ratio: 16 / 10;
}
.dekole-scope .dekole-section.is-dark .dekole-card--event {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .08);
}
.dekole-scope .dekole-section.is-dark .dekole-card--event .dekole-card-title { color: #fff; }
.dekole-scope .dekole-section.is-dark .dekole-card--event .dekole-card-meta { color: var(--dekole-soft); }

/* ============================================================
   9. SELL ON DEKOLE — light gray banner
   ============================================================ */
.dekole-scope .dekole-sell-band {
  background: #F1F4F9;
  padding: 36px 0;
  margin: 0;
}
.dekole-scope .dekole-sell-grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}
.dekole-scope .dekole-sell-illustration {
  position: relative;
  width: 130px;
  height: 130px;
  flex-shrink: 0;
}
.dekole-scope .dekole-sell-illustration-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #DBEAFE, #fff);
}
.dekole-scope .dekole-sell-illustration-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 58px;
  color: var(--dekole-primary);
}
.dekole-scope .dekole-sell-illustration-laptop,
.dekole-scope .dekole-sell-illustration-bag {
  position: absolute;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 6px 16px rgba(7, 17, 31, .12);
}
.dekole-scope .dekole-sell-illustration-laptop {
  bottom: -4%; right: -4%;
  color: var(--dekole-primary);
}
.dekole-scope .dekole-sell-illustration-bag {
  top: -4%; right: 6%;
  color: #F59E0B;
}
.dekole-scope .dekole-sell-body { min-width: 0; }
.dekole-scope .dekole-sell-title {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--dekole-dark-text);
  letter-spacing: -0.01em;
}
.dekole-scope .dekole-sell-sub {
  font-size: 14px;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 14px;
  max-width: 640px;
}
.dekole-scope .dekole-sell-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.dekole-scope .dekole-sell-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dekole-scope .dekole-sell-benefit-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(37, 99, 235, .1);
  color: var(--dekole-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.dekole-scope .dekole-sell-benefit-label {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.dekole-scope .dekole-sell-benefit-label strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--dekole-dark-text);
}
.dekole-scope .dekole-sell-benefit-label small {
  font-size: 11.5px;
  color: var(--dekole-muted);
}
.dekole-scope .dekole-sell-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .dekole-scope .dekole-sell-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
  }
  .dekole-scope .dekole-sell-illustration { justify-self: center; }
  .dekole-scope .dekole-sell-benefits { justify-content: center; }
  .dekole-scope .dekole-sell-cta { align-items: center; }
}

/* ============================================================
   10. APP COMING SOON  (dark band · stores · QR)
   ============================================================ */
.dekole-scope .dekole-app-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto auto;
  gap: 28px;
  align-items: center;
  padding: 26px 32px;
  background:
    radial-gradient(700px 300px at 0% 50%, rgba(37, 99, 235, .35), transparent 60%),
    radial-gradient(600px 260px at 100% 100%, rgba(56, 189, 248, .25), transparent 60%),
    linear-gradient(135deg, var(--dekole-navy), #0B1A33);
  color: var(--dekole-white);
  margin: 36px 0 36px;
  border-radius: var(--dekole-radius-lg);
}
.dekole-scope .dekole-app-band-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.dekole-scope .dekole-app-band-logo {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--dekole-primary), var(--dekole-electric));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(56, 189, 248, .35);
  flex-shrink: 0;
}
.dekole-scope .dekole-app-band-logo-mark {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
}
.dekole-scope .dekole-app-band-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.dekole-scope .dekole-app-band-name {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.dekole-scope .dekole-app-band-soon {
  background: var(--dekole-electric);
  color: var(--dekole-navy);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 3px 8px;
  border-radius: var(--dekole-radius-pill);
}
.dekole-scope .dekole-app-band-tag {
  color: var(--dekole-soft);
  font-size: 13px;
  margin: 0;
  line-height: 1.4;
}
.dekole-scope .dekole-app-band-stores {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.dekole-scope .dekole-app-band-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 13px;
  transition: background .15s ease, border-color .15s ease;
}
.dekole-scope .dekole-app-band-store:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
}
.dekole-scope .dekole-app-band-store i { font-size: 22px; }
.dekole-scope .dekole-app-band-store span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.dekole-scope .dekole-app-band-store small {
  font-size: 10px;
  color: var(--dekole-soft);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.dekole-scope .dekole-app-band-store strong { font-size: 14px; font-weight: 700; }

/* QR */
.dekole-scope .dekole-app-band-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.dekole-scope .dekole-app-band-qr-square {
  width: 76px; height: 76px;
  padding: 6px;
  background: #fff;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 3px;
}
.dekole-scope .dekole-app-band-qr-square span {
  background: var(--dekole-navy);
  border-radius: 2px;
}
.dekole-scope .dekole-app-band-qr-square span:nth-child(3n) {
  background: transparent;
}
.dekole-scope .dekole-app-band-qr-square span:nth-child(5n) {
  background: var(--dekole-primary);
}
.dekole-scope .dekole-app-band-qr small {
  color: var(--dekole-soft);
  font-size: 11px;
  letter-spacing: .04em;
}
@media (max-width: 991px) {
  .dekole-scope .dekole-app-band {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 24px;
  }
  .dekole-scope .dekole-app-band-brand { justify-content: center; flex-wrap: wrap; }
  .dekole-scope .dekole-app-band-stores { justify-content: center; }
  .dekole-scope .dekole-app-band-qr { justify-self: center; }
}

/* ============================================================
   Misc responsive tweaks for redesigned homepage
   ============================================================ */
@media (max-width: 768px) {
  .dekole-scope .dekole-hero-light { padding: 36px 0 40px; }
  .dekole-scope .dekole-section { padding: 40px 0; }
}
@media (max-width: 575px) {
  .dekole-scope .dekole-discount-card { padding: 16px; min-height: 170px; }
  .dekole-scope .dekole-discount-card-media { width: 80px; height: 80px; }
}

/* ============================================================
   Header v3 — light header, utility bar, light secondary nav
   ============================================================ */

/* ---------- Utility bar (top gray strip) ---------- */
.dekole-utility-bar {
  background: #F1F4F9;
  border-bottom: 1px solid #E5E9F2;
  font-size: 12.5px;
  color: #475569;
}
.dekole-utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  gap: 16px;
  flex-wrap: wrap;
}
.dekole-utility-left,
.dekole-utility-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.dekole-utility-divider {
  width: 1px;
  height: 16px;
  background: #CBD5E1;
}
.dekole-utility-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dekole-utility-flag {
  font-size: 14px;
  line-height: 1;
}
.dekole-utility-currency-mark {
  font-weight: 700;
  color: #1F2937;
  font-size: 13px;
}
.dekole-utility-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 12.5px;
  font-weight: 600;
  color: #1F2937;
  padding: 4px 18px 4px 0;
  cursor: pointer;
  min-width: 60px;
}
.dekole-utility-caret {
  position: absolute;
  right: 0;
  font-size: 9px;
  color: #64748B;
  pointer-events: none;
}
.dekole-utility-tagline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #475569;
  font-size: 12.5px;
}
.dekole-utility-tagline i {
  color: #16A34A;
  font-size: 12px;
}
.dekole-utility-link {
  color: #475569;
  font-size: 12.5px;
  font-weight: 500;
  transition: color .15s ease;
}
.dekole-utility-link:hover {
  color: var(--dekole-primary);
}
@media (max-width: 991px) {
  .dekole-utility-tagline { display: none; }
}
@media (max-width: 575px) {
  .dekole-utility-inner { gap: 8px; }
  .dekole-utility-left { flex-wrap: wrap; gap: 8px; }
  .dekole-utility-right { gap: 10px; }
}

/* ---------- Light header overrides ---------- */
.dekole-header--light {
  background: #fff;
  color: #0F172A;
  border-bottom: 1px solid #E5E9F2;
}
.dekole-header--light .dekole-header-inner {
  padding: 16px 0;
  gap: 24px;
}

/* Brand mark + wordmark */
.dekole-header--light .dekole-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.dekole-header--light .dekole-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--dekole-primary), var(--dekole-electric));
  box-shadow: 0 6px 16px rgba(37, 99, 235, .25);
}
.dekole-header--light .dekole-brand-mark-letter {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.06em;
  font-family: 'Inter', 'Poppins', sans-serif;
}
.dekole-header--light .dekole-brand-wordmark {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #0F172A;
  font-family: 'Inter', 'Poppins', sans-serif;
}

/* Search shell — pill with embedded category dropdown */
.dekole-header--light .dekole-search-shell--pill {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1.5px solid #DBE2EE;
  border-radius: var(--dekole-radius-pill);
  overflow: hidden;
  height: 44px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.dekole-header--light .dekole-search-shell--pill:focus-within {
  border-color: var(--dekole-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}
.dekole-header--light .dekole-search-scope-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 16px;
  padding-right: 24px;
}
.dekole-header--light .dekole-search-scope {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 14px;
  font-weight: 600;
  color: #1F2937;
  padding: 0 22px 0 0;
  cursor: pointer;
  min-width: 110px;
  max-width: 160px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.dekole-header--light .dekole-search-scope-caret {
  position: absolute;
  right: 16px;
  font-size: 10px;
  color: #64748B;
  pointer-events: none;
}
.dekole-header--light .dekole-search-shell-divider {
  width: 1px;
  background: #DBE2EE;
  align-self: stretch;
  margin: 8px 0;
}
.dekole-header--light .dekole-search-input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 0 16px;
  font-size: 14px;
  color: #1F2937;
  outline: 0;
  min-width: 0;
}
.dekole-header--light .dekole-search-input::placeholder { color: #94A3B8; }
.dekole-header--light .dekole-search-submit {
  border: 0;
  background: var(--dekole-primary);
  color: #fff;
  width: 56px;
  flex-shrink: 0;
  cursor: pointer;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
  border-radius: 0;
  margin: 4px;
  border-radius: var(--dekole-radius-pill);
}
.dekole-header--light .dekole-search-submit:hover {
  background: var(--dekole-primary-hover);
}

/* Action buttons (Wishlist · Cart) with text labels */
.dekole-actions--labelled {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.dekole-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  color: #0F172A;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  transition: background .15s ease, color .15s ease;
}
.dekole-action-btn:hover {
  background: #F1F4F9;
  color: var(--dekole-primary);
}
.dekole-action-btn > i {
  font-size: 18px;
  color: #0F172A;
}
.dekole-action-btn:hover > i {
  color: var(--dekole-primary);
}
.dekole-action-btn-label {
  font-weight: 600;
  letter-spacing: -0.01em;
}
.dekole-action-btn-counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: var(--dekole-primary);
  color: #fff;
  border-radius: var(--dekole-radius-pill);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}
.dekole-action-btn--avatar {
  padding: 4px;
  border-radius: 50%;
}
.dekole-action-btn--avatar .dekole-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #E5E9F2;
  display: block;
}

/* Light secondary nav */
.dekole-mainnav--light {
  background: #fff;
  border-bottom: 1px solid #E5E9F2;
}
.dekole-mainnav--light .dekole-mainnav-inner {
  padding: 6px 0;
  gap: 4px;
}
.dekole-mainnav--light .dekole-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1F2937;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 10px;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.dekole-mainnav--light .dekole-nav-link:hover,
.dekole-mainnav--light .dekole-nav-link:focus {
  background: #F1F4F9;
  color: var(--dekole-primary);
}
.dekole-mainnav--light .dekole-nav-link i {
  font-size: 15px;
  color: var(--dekole-primary);
}
.dekole-mainnav--light .dekole-nav-link.active {
  background: rgba(37, 99, 235, .08);
  color: var(--dekole-primary);
}
.dekole-mainnav--light .dekole-nav-link.active i { color: var(--dekole-primary); }
.dekole-mainnav--light .dekole-nav-caret {
  font-size: 10px !important;
  color: #64748B !important;
  margin-left: 2px;
}
.dekole-mainnav--light .dekole-nav-pill {
  background: #EF4444;
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: var(--dekole-radius-pill);
  margin-left: 2px;
  line-height: 1.2;
}
.dekole-mainnav--light .dekole-nav-link.is-cta {
  margin-left: auto;
  color: var(--dekole-primary);
  background: transparent;
  border: 1.5px solid var(--dekole-primary);
  padding: 8px 22px;
  border-radius: 10px;
  font-weight: 700;
}
.dekole-mainnav--light .dekole-nav-link.is-cta:hover {
  background: var(--dekole-primary);
  color: #fff;
}
.dekole-mainnav--light .dekole-nav-link.is-cta i { color: inherit; }

@media (max-width: 991px) {
  .dekole-header--light .dekole-brand-wordmark { display: none; }
  .dekole-header--light .dekole-search-scope { display: none; }
  .dekole-header--light .dekole-search-shell-divider { display: none; }
  .dekole-header--light .dekole-search-scope-wrap { padding-left: 14px; padding-right: 0; }
}
@media (max-width: 767px) {
  .dekole-header--light .dekole-action-btn-label { display: none; }
  .dekole-header--light .dekole-action-btn { padding: 8px 10px; }
}
@media (max-width: 575px) {
  .dekole-header--light .dekole-header-inner {
    flex-wrap: wrap;
    gap: 12px;
  }
  .dekole-header--light .dekole-search {
    order: 3;
    flex: 1 0 100%;
  }
  .dekole-mainnav--light .dekole-mainnav-inner {
    padding: 6px 0;
    overflow-x: auto;
  }
}

/* ============================================================
   Product Card v3 — matches the screenshot's card layout
   (Hot Deal / Best Seller pill · -% discount in corner ·
    View Detail filled · Make Offer outlined · Add to Cart text link)
   ============================================================ */

.dekole-scope .dekole-pcard.dekole-pcard--v3 {
  background: #fff;
  border: 1px solid #ECEEF2;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 1px 2px rgba(7, 17, 31, .04);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.dekole-scope .dekole-pcard--v3:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(7, 17, 31, .08);
  border-color: #DCE3EE;
}

/* Media */
.dekole-scope .dekole-pcard--v3 .dekole-pcard-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #F6F7FA;
}
.dekole-scope .dekole-pcard--v3 .dekole-pcard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.dekole-scope .dekole-pcard--v3:hover .dekole-pcard-media img {
  transform: scale(1.04);
}

/* Top-left badge — Hot Deal / Best Seller / New */
.dekole-scope .dekole-pcard--v3 .dekole-pcard-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .01em;
  border-radius: 6px;
  z-index: 2;
  line-height: 1.4;
  text-transform: none;
}
.dekole-scope .dekole-pcard--v3 .dekole-pcard-badge-hot {
  background: #EF4444;
  color: #fff;
}
.dekole-scope .dekole-pcard--v3 .dekole-pcard-badge-best {
  background: var(--dekole-primary);
  color: #fff;
}
.dekole-scope .dekole-pcard--v3 .dekole-pcard-badge-new {
  background: #16A34A;
  color: #fff;
}

/* Top-right -% discount text */
.dekole-scope .dekole-pcard--v3 .dekole-pcard-discount {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #1F2937;
  z-index: 2;
  background: transparent;
  padding: 0;
}

/* Save heart — small, ghost, appears on hover */
.dekole-scope .dekole-pcard--v3 .dekole-pcard-save {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  border: 1px solid #E5E9F2;
  color: #94A3B8;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px);
  box-shadow: 0 2px 6px rgba(7, 17, 31, .12);
  transition: opacity .15s ease, transform .15s ease, color .15s ease, background .15s ease;
  z-index: 2;
}
.dekole-scope .dekole-pcard--v3:hover .dekole-pcard-save {
  opacity: 1;
  transform: translateY(0);
}
.dekole-scope .dekole-pcard--v3 .dekole-pcard-save:hover,
.dekole-scope .dekole-pcard--v3 .dekole-pcard-save.is-saved {
  color: #EF4444;
  background: #fff;
}

/* Body */
.dekole-scope .dekole-pcard--v3 .dekole-pcard-body {
  padding: 14px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* Title — single short line */
.dekole-scope .dekole-pcard--v3 .dekole-pcard-title {
  font-size: 14px;
  font-weight: 600;
  color: #0F172A;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  min-height: 38px;
  text-decoration: none;
  transition: color .15s ease;
}
.dekole-scope .dekole-pcard--v3 .dekole-pcard-title:hover {
  color: var(--dekole-primary);
}

/* Price block */
.dekole-scope .dekole-pcard--v3 .dekole-pcard-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
  line-height: 1.1;
  margin-bottom: 2px;
}
.dekole-scope .dekole-pcard--v3 .dekole-pcard-price-sale {
  font-size: 20px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.01em;
}
.dekole-scope .dekole-pcard--v3 .dekole-pcard-price-orig {
  font-size: 13px;
  font-weight: 500;
  color: #94A3B8;
  text-decoration: line-through;
}
.dekole-scope .dekole-pcard--v3 .dekole-pcard-price-save {
  flex: 1 0 100%;
  font-size: 12px;
  font-weight: 700;
  color: #16A34A;
  margin-top: 2px;
}

/* Actions */
.dekole-scope .dekole-pcard--v3 .dekole-pcard-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dekole-scope .dekole-pcard--v3 .dekole-pcard-actions .dekole-btn {
  width: 100%;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 8px;
  white-space: nowrap;
}
.dekole-scope .dekole-pcard--v3 .dekole-pcard-actions .dekole-btn-primary {
  background: var(--dekole-primary);
  color: #fff;
}
.dekole-scope .dekole-pcard--v3 .dekole-pcard-actions .dekole-btn-primary:hover {
  background: var(--dekole-primary-hover);
}

/* Outlined card button (Make Offer) — neutral border, dark text */
.dekole-scope .dekole-btn-outline-card {
  background: #fff;
  color: #0F172A;
  border: 1px solid #E5E9F2;
}
.dekole-scope .dekole-btn-outline-card:hover {
  background: #F6F7FA;
  border-color: #CBD5E1;
  color: #0F172A;
}
.dekole-scope .dekole-btn-outline-card i {
  color: #94A3B8;
}
.dekole-scope .dekole-btn-outline-card:hover i {
  color: #EF4444;
}

/* Add to Cart — text link with cart icon, centered */
.dekole-scope .dekole-pcard-add {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--dekole-primary);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 8px 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: color .15s ease;
}
.dekole-scope .dekole-pcard-add:hover {
  color: var(--dekole-primary-hover);
}
.dekole-scope .dekole-pcard-add i {
  font-size: 13px;
}

@media (max-width: 575px) {
  .dekole-scope .dekole-pcard--v3 .dekole-pcard-title { font-size: 13px; }
  .dekole-scope .dekole-pcard--v3 .dekole-pcard-price-sale { font-size: 17px; }
  .dekole-scope .dekole-pcard--v3 .dekole-pcard-actions .dekole-btn { font-size: 12px; padding: 9px 10px; }
}

/* ============================================================
   Section heads v2 — premium eyebrow + title + sub treatment
   ============================================================ */

.dekole-scope .dekole-section-head > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

/* Eyebrow — small uppercase pill that sits above the title */
.dekole-scope .dekole-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--dekole-radius-pill);
  background: rgba(37, 99, 235, .08);
  border: 1px solid rgba(37, 99, 235, .2);
  color: var(--dekole-primary);
  line-height: 1.4;
  white-space: nowrap;
}
.dekole-scope .dekole-section-eyebrow i {
  font-size: 11px;
}

/* Color variants for the eyebrow — match section flavor */
.dekole-scope .dekole-section-eyebrow--deal {
  background: rgba(239, 68, 68, .08);
  border-color: rgba(239, 68, 68, .25);
  color: #B91C1C;
}
.dekole-scope .dekole-section-eyebrow--hot {
  background: rgba(245, 158, 11, .1);
  border-color: rgba(245, 158, 11, .3);
  color: #B45309;
}
.dekole-scope .dekole-section-eyebrow--new {
  background: rgba(22, 163, 74, .08);
  border-color: rgba(22, 163, 74, .25);
  color: #15803D;
}
.dekole-scope .dekole-section-eyebrow--offer {
  background: rgba(56, 189, 248, .12);
  border-color: rgba(56, 189, 248, .35);
  color: #0369A1;
}

/* On dark sections (DekoGo Events) */
.dekole-scope .dekole-section.is-dark .dekole-section-eyebrow,
.dekole-scope .dekole-section-eyebrow--on-dark {
  background: rgba(56, 189, 248, .14);
  border-color: rgba(56, 189, 248, .35);
  color: var(--dekole-electric);
}

/* Refined title + sub typography */
.dekole-scope .dekole-section-head .dekole-section-title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--dekole-dark-text);
}
.dekole-scope .dekole-section.is-dark .dekole-section-head .dekole-section-title {
  color: #fff;
}
.dekole-scope .dekole-section-head .dekole-section-sub {
  font-size: 14.5px;
  color: #64748B;
  margin: 4px 0 0;
  line-height: 1.55;
  font-weight: 400;
  max-width: 620px;
}
.dekole-scope .dekole-section.is-dark .dekole-section-head .dekole-section-sub {
  color: var(--dekole-soft);
}

/* Section link — refined arrow link on the right */
.dekole-scope .dekole-section-head .dekole-section-link {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--dekole-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--dekole-radius-pill);
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.dekole-scope .dekole-section-head .dekole-section-link:hover {
  background: rgba(37, 99, 235, .06);
  border-color: rgba(37, 99, 235, .2);
  text-decoration: none;
}
.dekole-scope .dekole-section-head .dekole-section-link:hover i {
  transform: translateX(3px);
}
.dekole-scope .dekole-section-head .dekole-section-link i {
  transition: transform .15s ease;
  font-size: 11px;
}
.dekole-scope .dekole-section.is-dark .dekole-section-head .dekole-section-link {
  color: var(--dekole-electric);
}
.dekole-scope .dekole-section.is-dark .dekole-section-head .dekole-section-link:hover {
  background: rgba(56, 189, 248, .1);
  border-color: rgba(56, 189, 248, .25);
}

@media (max-width: 575px) {
  .dekole-scope .dekole-section-head { gap: 12px; align-items: flex-start; }
  .dekole-scope .dekole-section-eyebrow {
    font-size: 10px;
    padding: 4px 10px;
    letter-spacing: .08em;
  }
  .dekole-scope .dekole-section-head > div:first-child { gap: 6px; }
}

/* ============================================================
   Dark section — animated cosmic background
   Aurora gradient blobs · twinkling starfield · shooting streak
   ============================================================ */

.dekole-scope .dekole-section.is-dark {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(1200px 600px at 50% 0%, rgba(56, 189, 248, .08), transparent 60%),
    radial-gradient(900px 500px at 100% 100%, rgba(37, 99, 235, .1), transparent 60%),
    linear-gradient(135deg, #0F172A 0%, #07111F 50%, #05070B 100%);
}

/* Aurora blob 1 — cyan, top-left, slow drift */
.dekole-scope .dekole-section.is-dark::before {
  content: '';
  position: absolute;
  top: -25%;
  left: -15%;
  width: 65%;
  height: 90%;
  background: radial-gradient(circle at center,
              rgba(56, 189, 248, .45) 0%,
              rgba(56, 189, 248, .15) 35%,
              transparent 65%);
  filter: blur(60px);
  border-radius: 50%;
  animation: dekoleAurora1 18s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

/* Aurora blob 2 — deep blue, bottom-right, opposite drift */
.dekole-scope .dekole-section.is-dark::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 75%;
  height: 95%;
  background: radial-gradient(circle at center,
              rgba(37, 99, 235, .5) 0%,
              rgba(37, 99, 235, .18) 35%,
              transparent 65%);
  filter: blur(70px);
  border-radius: 50%;
  animation: dekoleAurora2 22s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

@keyframes dekoleAurora1 {
  0%, 100% { transform: translate(0, 0) scale(1);        opacity: .85; }
  25%      { transform: translate(160px, 90px) scale(1.2); opacity: 1; }
  50%      { transform: translate(60px, 220px) scale(.85); opacity: .7; }
  75%      { transform: translate(-90px, 110px) scale(1.1); opacity: .9; }
}

@keyframes dekoleAurora2 {
  0%, 100% { transform: translate(0, 0) scale(1);          opacity: .8; }
  25%      { transform: translate(-140px, -100px) scale(1.15); opacity: 1; }
  50%      { transform: translate(-200px, 70px) scale(.9);  opacity: .75; }
  75%      { transform: translate(100px, -120px) scale(1.05); opacity: .9; }
}

/* Twinkling starfield (container > ::before) */
.dekole-scope .dekole-section.is-dark > .container {
  position: relative;
  z-index: 2;
}
.dekole-scope .dekole-section.is-dark > .container::before {
  content: '';
  position: absolute;
  inset: -40px -10px;
  background-image:
    radial-gradient(1.4px 1.4px at 8% 18%,  rgba(255, 255, 255, .85), transparent 60%),
    radial-gradient(1px 1px   at 22% 62%,  rgba(255, 255, 255, .55), transparent 60%),
    radial-gradient(1.8px 1.8px at 38% 12%, rgba(255, 255, 255, .95), transparent 60%),
    radial-gradient(1px 1px   at 51% 78%,  rgba(255, 255, 255, .5),  transparent 60%),
    radial-gradient(1.4px 1.4px at 66% 28%, rgba(255, 255, 255, .8),  transparent 60%),
    radial-gradient(1.2px 1.2px at 78% 88%, rgba(255, 255, 255, .7),  transparent 60%),
    radial-gradient(1.6px 1.6px at 88% 36%, rgba(255, 255, 255, .85), transparent 60%),
    radial-gradient(1px 1px   at 94% 70%,  rgba(255, 255, 255, .55), transparent 60%),
    radial-gradient(1.3px 1.3px at 12% 92%, rgba(255, 255, 255, .75), transparent 60%),
    radial-gradient(1.2px 1.2px at 30% 38%, rgba(255, 255, 255, .65), transparent 60%),
    radial-gradient(1.5px 1.5px at 58% 56%, rgba(255, 255, 255, .85), transparent 60%),
    radial-gradient(1px 1px   at 72% 8%,   rgba(255, 255, 255, .55), transparent 60%);
  animation: dekoleTwinkle 4.2s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

/* Periodic shooting streak diagonally across the section */
.dekole-scope .dekole-section.is-dark > .container::after {
  content: '';
  position: absolute;
  top: 12%;
  left: -25%;
  width: 200px;
  height: 1.5px;
  background: linear-gradient(90deg,
              transparent 0%,
              rgba(56, 189, 248, .15) 30%,
              rgba(167, 230, 255, .95) 70%,
              rgba(255, 255, 255, 1) 100%);
  box-shadow: 0 0 8px rgba(56, 189, 248, .65),
              0 0 14px rgba(56, 189, 248, .3);
  transform: rotate(-18deg);
  opacity: 0;
  animation: dekoleShootingStar 9s linear infinite;
  animation-delay: 3s;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
}

@keyframes dekoleTwinkle {
  0%, 100% { opacity: .55; }
  50%      { opacity: 1; }
}

@keyframes dekoleShootingStar {
  0%   { transform: translate(0, 0) rotate(-18deg);            opacity: 0; }
  4%   {                                                       opacity: 0; }
  6%   {                                                       opacity: 1; }
  18%  { transform: translate(140vw, 40vh) rotate(-18deg);     opacity: 0; }
  100% { transform: translate(140vw, 40vh) rotate(-18deg);     opacity: 0; }
}

/* Inner card adjustment so cards sit cleanly above the FX */
.dekole-scope .dekole-section.is-dark .dekole-card,
.dekole-scope .dekole-section.is-dark .dekole-card--event {
  position: relative;
  z-index: 1;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .dekole-scope .dekole-section.is-dark::before,
  .dekole-scope .dekole-section.is-dark::after,
  .dekole-scope .dekole-section.is-dark > .container::before,
  .dekole-scope .dekole-section.is-dark > .container::after {
    animation: none !important;
  }
  .dekole-scope .dekole-section.is-dark > .container::after { display: none; }
}
/* ============================================================
   Home-page container gutters — bump side padding so sections never
   touch the viewport edges. Scoped to .dekole-scope so the marketplace
   container is unaffected. Falls back to a tighter value on narrow
   viewports and respects mobile breakpoints.
   ============================================================ */
.dekole-scope > .container,
.dekole-scope .container {
  padding-left: 48px;
  padding-right: 48px;
}
@media (max-width: 992px) {
  .dekole-scope > .container,
  .dekole-scope .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 576px) {
  .dekole-scope > .container,
  .dekole-scope .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ============================================================
   LANDING HOME — match dekogo / marketplace body width.
   Applied only on the homepage route (`landing.index`) via the
   `landing-home` body class so the rest of the site keeps its
   global 1352px `.container` cap.
   ============================================================ */
body.landing-home .container,
body.landing-home .container-fluid {
  max-width: 1600px !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1100px) {
  body.landing-home .container,
  body.landing-home .container-fluid {
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
/* Widen the shared dark navy header on the landing page to match the
   1600px body container above — keeps the header edges flush with the
   body content beneath it. */
body.landing-home .deko-utility-bar-custom .container,
body.landing-home .deko-utility-bar-custom .container.px-xl-5,
body.landing-home .deko-header-custom .container,
body.landing-home .deko-header-custom .container.px-xl-5 {
  max-width: 1600px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
