/* ═══════════════════════════════════════════
   DAKARCUIR — Custom CSS (Bootstrap 5 layer)
   Import AFTER bootstrap.min.css
═══════════════════════════════════════════ */

/* ── TOKENS ────────────────────────────── */
:root {
  --sand:      #C8A96E;
  --earth:     #8B5E3C;
  --deep:      #1A1209;
  --cream:     #F7F0E3;
  --sahel:     #4A7C59;
  --sand-lt:   #E8D5B0;
  --muted:     #6B5744;
  --surface:   #FBF7F0;
  --error:     #C0392B;

  /* Bootstrap overrides */
  --bs-body-bg:         var(--cream);
  --bs-body-color:      var(--deep);
  --bs-body-font-family:'Inter', sans-serif;
  --bs-border-radius:   3px;
  --bs-primary:         var(--earth);
  --bs-primary-rgb:     139,94,60;
  --bs-link-color:      var(--earth);
  --bs-link-hover-color:var(--deep);
}

/* ── BASE ──────────────────────────────── */
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
.text-sand  { color: var(--sand)!important; }
.text-earth { color: var(--earth)!important; }
.text-muted { color: var(--muted)!important; }
.bg-deep    { background: var(--deep)!important; }
.bg-cream   { background: var(--cream)!important; }
.bg-surface { background: var(--surface)!important; }

/* ── TYPOGRAPHY ────────────────────────── */
.font-display {
  font-family: 'Playfair Display', Georgia, serif;
}
h1,h2,h3,.h1,.h2,.h3 {
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -0.025em;
}

/* ── NAVBAR ────────────────────────────── */
.dk-navbar {
  background: rgba(247,240,227,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200,169,110,.22);
  padding: .9rem 0;
}
.dk-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 900;
  color: var(--earth)!important; letter-spacing: -.02em;
  text-decoration: none;
}
.dk-logo span { color: var(--sand); }

.dk-nav-link {
  font-size: .8rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted)!important; text-decoration: none;
  padding: .4rem .2rem!important;
  position: relative; transition: color .2s;
}
.dk-nav-link::after {
  content:''; position:absolute; bottom:-2px; left:0;
  width:0; height:1.5px; background:var(--sand);
  transition: width .3s cubic-bezier(.4,0,.2,1);
}
.dk-nav-link:hover,
.dk-nav-link.active { color: var(--earth)!important; }
.dk-nav-link:hover::after,
.dk-nav-link.active::after { width:100%; }

.dk-icon-btn {
  width:36px; height:36px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--muted); font-size:1rem; text-decoration:none;
  border:1.5px solid var(--sand-lt); transition:all .2s;
}
.dk-icon-btn:hover { color:var(--earth); border-color:var(--earth); }

.dk-cart-btn {
  display:flex; align-items:center; justify-content:center;
  width:40px; height:40px; border-radius:3px;
  background:var(--earth); color:var(--cream)!important;
  font-size:1.1rem; text-decoration:none; transition:background .2s;
}
.dk-cart-btn:hover { background:var(--deep); }
.dk-cart-badge {
  position:absolute; top:-6px; right:-6px;
  background:var(--sand); color:var(--deep);
  font-size:.62rem; font-weight:800;
  width:18px; height:18px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  line-height:1;
}

/* ── ALERTS ────────────────────────────── */
.dk-alert { border-radius:3px; border:none; border-left:3px solid var(--earth); }

/* ── BUTTONS ───────────────────────────── */
.btn-dk-primary {
  background:var(--earth); color:var(--cream)!important;
  border:none; border-radius:3px;
  font-weight:700; letter-spacing:.04em;
  padding:.75rem 1.6rem; transition:all .25s;
  position:relative; overflow:hidden;
}
.btn-dk-primary::before {
  content:''; position:absolute; inset:0;
  background:var(--sand); transform:translateX(-100%);
  transition:transform .35s cubic-bezier(.4,0,.2,1);
}
.btn-dk-primary:hover { transform:translateY(-2px); box-shadow:0 4px 16px rgba(139,94,60,.3); }
.btn-dk-primary:hover::before { transform:translateX(0); }
.btn-dk-primary span { position:relative; z-index:1; }

.btn-dk-outline {
  background:none; color:var(--muted);
  border:1.5px solid var(--sand-lt); border-radius:3px;
  font-weight:600; padding:.7rem 1.4rem; transition:all .2s;
}
.btn-dk-outline:hover { border-color:var(--earth); color:var(--earth); }

.btn-dk-dark {
  background:var(--deep); color:var(--cream)!important;
  border:none; border-radius:3px;
  font-weight:700; padding:.75rem 1.6rem; transition:all .2s;
}
.btn-dk-dark:hover { background:var(--earth); }

/* ── SECTION UTILS ─────────────────────── */
.section-eyebrow {
  display:inline-flex; align-items:center; gap:.6rem;
  font-size:.75rem; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; color:var(--sahel);
}
.section-eyebrow::before { content:''; width:22px; height:1.5px; background:var(--sahel); }

.section-title {
  font-family:'Playfair Display',serif;
  font-size:clamp(1.8rem,3.5vw,2.8rem);
  font-weight:900; line-height:1.15; letter-spacing:-.025em; color:var(--deep);
}
.section-title em { font-style:italic; color:var(--earth); }

/* ── CARD BASE ─────────────────────────── */
.dk-card {
  background:var(--surface);
  border:1.5px solid var(--sand-lt);
  border-radius:5px; overflow:hidden;
}
.dk-card-header {
  padding:1.1rem 1.4rem;
  border-bottom:1px solid var(--sand-lt);
  display:flex; align-items:center; justify-content:space-between;
}
.dk-card-title {
  font-family:'Playfair Display',serif;
  font-size:1.1rem; font-weight:700; color:var(--deep); margin:0;
}
.dk-card-body { padding:1.3rem 1.4rem; }

/* ── FORM FIELDS ───────────────────────── */
.dk-label {
  font-size:.74rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.09em; color:var(--deep); margin-bottom:.35rem; display:block;
}
.dk-label .req { color:var(--earth); margin-left:.1rem; }
.dk-input {
  width:100%; padding:.72rem 1rem;
  border:1.5px solid var(--sand-lt); border-radius:3px;
  background:var(--cream); font-family:inherit;
  font-size:.92rem; color:var(--deep); outline:none;
  transition:border-color .2s, box-shadow .2s;
}
.dk-input:focus { border-color:var(--earth); box-shadow:0 0 0 3px rgba(139,94,60,.08); }
.dk-input.is-invalid { border-color:var(--error)!important; }
.dk-input::placeholder { color:var(--muted); opacity:.65; }
.dk-hint  { font-size:.72rem; color:var(--muted); margin-top:.25rem; }
.dk-error { font-size:.72rem; color:var(--error); margin-top:.25rem; display:none; }
.dk-input.is-invalid ~ .dk-error { display:block; }

select.dk-input {
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B5744' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 1rem center; padding-right:2.5rem;
}
textarea.dk-input { resize:vertical; }

/* ── MARQUEE ───────────────────────────── */
.dk-marquee-wrap {
  background:var(--earth);
  border-top:2px solid var(--sand); border-bottom:2px solid var(--sand);
  overflow:hidden; padding:.7rem 0;
}
.dk-marquee-track {
  display:flex; gap:3rem; white-space:nowrap;
  animation:dk-marquee 22s linear infinite;
}
@keyframes dk-marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.dk-marquee-item {
  font-size:.78rem; font-weight:600; letter-spacing:.1em;
  text-transform:uppercase; color:var(--cream);
  display:inline-flex; align-items:center; gap:1rem;
}
.dk-marquee-item::after { content:'✦'; color:var(--sand); font-size:.65rem; }

/* ── PRODUCT CARD ──────────────────────── */
.dk-product-card {
  background:var(--cream); border-radius:4px; overflow:hidden;
  transition:transform .3s, box-shadow .3s; cursor:pointer;
  border:1.5px solid var(--sand-lt);
}
.dk-product-card:hover {
  transform:translateY(-5px);
  box-shadow:0 12px 32px rgba(26,18,9,.12);
}
.dk-product-img {
  height:220px; display:flex; align-items:center;
  justify-content:center; font-size:5.5rem;
  transition:transform .5s;
}
.dk-product-card:hover .dk-product-img { transform:scale(1.05); }
.dk-product-info { padding:1.2rem; }
.dk-product-name {
  font-family:'Playfair Display',serif; font-size:1.05rem;
  font-weight:700; color:var(--deep); margin-bottom:.2rem;
}
.dk-product-origin { font-size:.75rem; color:var(--muted); margin-bottom:.7rem; }
.dk-product-price { font-size:1rem; font-weight:700; color:var(--earth); }
.dk-product-old   { font-size:.8rem; color:var(--muted); text-decoration:line-through; }
.dk-add-btn {
  width:36px; height:36px; border-radius:50%;
  background:var(--deep); color:var(--cream); border:none;
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; transition:all .2s; flex-shrink:0;
}
.dk-add-btn:hover { background:var(--earth); transform:rotate(90deg) scale(1.1); }
.dk-badge {
  font-size:.65rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.08em; padding:.22rem .55rem; border-radius:10px;
}
.dk-badge-new    { background:var(--sand); color:var(--deep); }
.dk-badge-best   { background:var(--earth); color:var(--cream); }
.dk-badge-eco    { background:#E6F2EC; color:var(--sahel); }
.dk-badge-bundle { background:#E6F2EC; color:var(--sahel); }

/* ── HERO ──────────────────────────────── */
.dk-hero { min-height:100vh; overflow:hidden; }
.dk-hero-dark {
  background:linear-gradient(135deg,#2D1B0E 0%,#1A1209 60%,#0D0804 100%);
  position:relative; overflow:hidden;
}
.dk-hero-pattern {
  position:absolute; inset:0; opacity:.07;
  background-image:repeating-linear-gradient(45deg,var(--sand) 0,var(--sand) 1px,transparent 0,transparent 50%);
  background-size:18px 18px; pointer-events:none;
}
@keyframes dk-float {
  0%,100%{transform:translateY(0) rotate(-5deg)}
  50%    {transform:translateY(-16px) rotate(5deg)}
}
.dk-float { animation:dk-float 4s ease-in-out infinite; }
@keyframes dk-rotate { to{transform:rotate(360deg)} }
.dk-spin { animation:dk-rotate 20s linear infinite; }
.dk-spin-rev { animation:dk-rotate 15s linear infinite reverse; }

/* ── PROCESS STEP ──────────────────────── */
.dk-process-step { text-align:center; position:relative; }
.dk-process-icon {
  width:4.2rem; height:4.2rem; border-radius:50%;
  background:var(--sand-lt); margin:0 auto 1rem;
  display:flex; align-items:center; justify-content:center;
  font-size:1.7rem; transition:background .3s, transform .3s;
}
.dk-process-step:hover .dk-process-icon { background:var(--sand); transform:scale(1.08); }
.dk-process-connector {
  position:absolute; top:2.1rem;
  left:calc(50% + 2.5rem); right:calc(-50% + 2.5rem);
  height:1px; background:var(--sand-lt);
}

/* ── REVIEW CARD ───────────────────────── */
.dk-review-card {
  background:#fff; padding:1.6rem;
  border-left:3px solid var(--sand); border-radius:4px;
  transition:transform .3s, box-shadow .3s;
}
.dk-review-card:hover {
  transform:translateY(-4px);
  box-shadow:0 8px 28px rgba(26,18,9,.1);
}
.dk-stars { color:var(--sand); font-size:.9rem; }

/* ── ABOUT SECTION ─────────────────────── */
.dk-about { background:var(--deep); color:var(--cream); }
.dk-about .section-title em { color:var(--sand); }

/* ── CHECKOUT STEPPER ──────────────────── */
.dk-stepper {
  background:var(--surface); border-bottom:1px solid var(--sand-lt);
}
.dk-step {
  display:flex; align-items:center; gap:.5rem; flex:1; position:relative;
}
.dk-step:not(:last-child)::after {
  content:''; position:absolute;
  left:calc(1.4rem + .5rem); right:0; top:50%;
  height:1.5px; background:var(--sand-lt);
  transition:background .4s; z-index:0;
}
.dk-step.done:not(:last-child)::after { background:var(--earth); }
.dk-step-circle {
  width:2rem; height:2rem; border-radius:50%; flex-shrink:0; z-index:1;
  display:flex; align-items:center; justify-content:center;
  font-size:.78rem; font-weight:700;
  border:2px solid var(--sand-lt); background:var(--cream); color:var(--muted);
  transition:all .35s;
}
.dk-step.active .dk-step-circle { border-color:var(--earth); background:var(--earth); color:var(--cream); }
.dk-step.done  .dk-step-circle  { border-color:var(--sahel); background:var(--sahel); color:#fff; }
.dk-step-label {
  font-size:.72rem; font-weight:600; letter-spacing:.05em; text-transform:uppercase;
  color:var(--muted); white-space:nowrap; transition:color .3s;
}
.dk-step.active .dk-step-label { color:var(--earth); }
.dk-step.done   .dk-step-label { color:var(--sahel); }

/* ── CHECKOUT DELIVERY OPTS ────────────── */
.dk-delivery-opt {
  display:flex; align-items:center; gap:1rem;
  padding:1rem 1.1rem; border:1.5px solid var(--sand-lt);
  border-radius:4px; cursor:pointer; transition:all .2s;
  background:var(--cream);
}
.dk-delivery-opt:hover { border-color:var(--sand); }
.dk-delivery-opt.selected { border-color:var(--earth); background:#FBF4E8; }
.dk-radio {
  width:18px; height:18px; border-radius:50%;
  border:2px solid var(--sand-lt); flex-shrink:0;
  display:flex; align-items:center; justify-content:center; transition:border-color .2s;
}
.dk-delivery-opt.selected .dk-radio { border-color:var(--earth); }
.dk-radio-dot {
  width:8px; height:8px; border-radius:50%; background:var(--earth);
  transform:scale(0); transition:transform .2s;
}
.dk-delivery-opt.selected .dk-radio-dot { transform:scale(1); }

/* ── PAYMENT METHODS ───────────────────── */
.dk-pay-method {
  padding:1rem .8rem; border:1.5px solid var(--sand-lt); border-radius:4px;
  cursor:pointer; text-align:center; transition:all .2s; background:var(--cream);
}
.dk-pay-method:hover { border-color:var(--sand); }
.dk-pay-method.selected { border-color:var(--earth); background:#FBF4E8; }
.dk-pay-icon { font-size:1.7rem; margin-bottom:.3rem; }
.dk-pay-name { font-size:.82rem; font-weight:700; color:var(--deep); }
.dk-pay-sub  { font-size:.68rem; color:var(--muted); line-height:1.3; }

/* ── ORDER SUMMARY ─────────────────────── */
.dk-summary-thumb {
  width:42px; height:42px; border-radius:3px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:1.4rem;
}
.dk-sum-divider { height:1px; background:var(--sand-lt); margin:.5rem 0; }
.dk-sum-row {
  display:flex; justify-content:space-between;
  font-size:.85rem; color:var(--muted); padding:.2rem 0;
}
.dk-sum-total {
  font-family:'Playfair Display',serif; font-size:1.3rem;
  font-weight:900; color:var(--deep); padding:.4rem 0 0;
}
.dk-sum-total span:last-child { color:var(--earth); }
.dk-saving { color:var(--sahel)!important; font-weight:600; }

/* ── CART ITEMS ────────────────────────── */
.dk-cart-item {
  display:grid; grid-template-columns:64px 1fr auto;
  gap:.9rem; align-items:center;
  padding:1rem 0; border-bottom:1px solid var(--sand-lt);
  transition:opacity .3s, transform .3s;
}
.dk-cart-item:last-child { border-bottom:none; }
.dk-cart-thumb {
  width:64px; height:64px; border-radius:4px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:2rem;
}
.dk-qty-btn {
  width:26px; height:26px; border-radius:50%;
  border:1.5px solid var(--sand-lt); background:none;
  display:flex; align-items:center; justify-content:center;
  font-size:.9rem; color:var(--muted); transition:all .18s;
}
.dk-qty-btn:hover { border-color:var(--earth); color:var(--earth); }

/* ── BUNDLE SECTION ────────────────────── */
.dk-bundle { border:1.5px solid var(--sand-lt); border-radius:4px; overflow:hidden; }
.dk-bundle-header { background:var(--deep); color:var(--cream); padding:1rem 1.3rem; }
.dk-bundle-tier {
  flex:1; padding:.9rem .6rem; text-align:center; cursor:pointer;
  transition:background .2s; border-right:1px solid var(--sand-lt);
  position:relative;
}
.dk-bundle-tier:last-child { border-right:none; }
.dk-bundle-tier.active { background:#FBF4E8; }
.dk-bundle-tier.active::after {
  content:''; position:absolute; bottom:0; left:0; right:0;
  height:2.5px; background:var(--earth);
}
.dk-bundle-row {
  display:flex; align-items:center; gap:.9rem;
  padding:.7rem .8rem; border-radius:3px; background:var(--surface);
  border:1.5px solid transparent; transition:border-color .2s;
}
.dk-bundle-row.main   { border-color:var(--sand-lt); }
.dk-bundle-row.added  { border-color:var(--sahel); background:#F0F7F2; }
.dk-bundle-row.empty  { border:1.5px dashed var(--sand-lt); background:transparent; cursor:pointer; }
.dk-bundle-row.empty:hover { border-color:var(--earth); background:var(--surface); }
.dk-bundle-thumb {
  width:48px; height:48px; border-radius:3px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:1.7rem;
}
.dk-remove-btn {
  width:24px; height:24px; border-radius:50%;
  background:#FFF0F0; border:none; color:#C0392B;
  font-size:.75rem; display:flex; align-items:center; justify-content:center;
  transition:background .2s; flex-shrink:0;
}
.dk-remove-btn:hover { background:#FFD5D5; }

/* ── DIALOG (bottom sheet) ─────────────── */
.dk-dialog-backdrop {
  position:fixed; inset:0; background:rgba(26,18,9,.65);
  z-index:1055; display:flex; align-items:flex-end; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity .3s;
}
.dk-dialog-backdrop.open { opacity:1; pointer-events:all; }
.dk-dialog {
  background:var(--cream); width:100%; max-width:640px;
  border-radius:8px 8px 0 0; max-height:90vh;
  display:flex; flex-direction:column; overflow:hidden;
  transform:translateY(100%); transition:transform .4s cubic-bezier(.4,0,.2,1);
}
.dk-dialog-backdrop.open .dk-dialog { transform:translateY(0); }
.dk-picker-card {
  border:1.5px solid var(--sand-lt); border-radius:4px; overflow:hidden;
  cursor:pointer; transition:all .2s; background:var(--surface);
}
.dk-picker-card:hover { border-color:var(--earth); transform:translateY(-2px); }
.dk-picker-card.selected { border-color:var(--earth); background:#FBF4E8; }
.dk-picker-card.disabled { opacity:.4; pointer-events:none; }
.dk-picker-img {
  height:100px; display:flex; align-items:center;
  justify-content:center; font-size:3.5rem; position:relative;
}
.dk-picker-check {
  position:absolute; top:.4rem; right:.4rem;
  width:22px; height:22px; border-radius:50%;
  background:var(--earth); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:.7rem; opacity:0; transition:opacity .2s;
}
.dk-picker-card.selected .dk-picker-check { opacity:1; }

/* ── OTP ───────────────────────────────── */
.dk-otp-digit {
  width:42px; height:50px; border-radius:4px;
  border:1.5px solid var(--sand-lt); background:var(--cream);
  font-size:1.3rem; font-weight:700; text-align:center; outline:none;
  transition:border-color .2s;
}
.dk-otp-digit:focus { border-color:var(--earth); }

/* ── TRUST STRIP ───────────────────────── */
.dk-trust { background:var(--surface); border:1px solid var(--sand-lt); border-radius:3px; }
.dk-trust-item {
  display:flex; align-items:center; gap:.5rem;
  font-size:.75rem; color:var(--muted);
}

/* ── GALLERY ───────────────────────────── */
.dk-gallery-main {
  aspect-ratio:1; border-radius:4px; overflow:hidden;
  background:linear-gradient(145deg,#2D1B0E,#1A1209);
  display:flex; align-items:center; justify-content:center;
  font-size:9rem; position:relative;
}
.dk-gallery-pattern {
  position:absolute; inset:0;
  background-image:repeating-linear-gradient(45deg,rgba(200,169,110,.07) 0,rgba(200,169,110,.07) 1px,transparent 0,transparent 50%);
  background-size:18px 18px; pointer-events:none;
}
.dk-thumb {
  aspect-ratio:1; border-radius:3px; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  font-size:2rem; cursor:pointer;
  border:2px solid transparent; transition:all .2s;
  background:linear-gradient(135deg,#E8D5B0,#D4B896);
}
.dk-thumb.active { border-color:var(--earth); }
.dk-thumb:hover  { border-color:var(--sand); }

/* ── SIZE SELECTOR ─────────────────────── */
.dk-size-btn {
  width:44px; height:44px; border-radius:3px;
  border:1.5px solid var(--sand-lt); background:transparent;
  font-size:.83rem; font-weight:600; color:var(--muted); transition:all .18s;
}
.dk-size-btn:hover    { border-color:var(--earth); color:var(--earth); }
.dk-size-btn.active   { border-color:var(--earth); background:var(--earth); color:var(--cream); }
.dk-size-btn.unavail  { opacity:.3; cursor:not-allowed; text-decoration:line-through; }
.dk-color-swatch {
  width:28px; height:28px; border-radius:50%; cursor:pointer;
  box-shadow:inset 0 0 0 2px rgba(0,0,0,.1); position:relative;
  transition:transform .2s;
}
.dk-color-swatch:hover  { transform:scale(1.15); }
.dk-color-swatch.active::after {
  content:''; position:absolute; inset:-4px;
  border-radius:50%; border:2px solid var(--earth);
}

/* ── NEWSLETTER ────────────────────────── */
.dk-newsletter { background:var(--earth); color:var(--cream); }
.dk-newsletter-input {
  background:rgba(247,240,227,.1); border:1px solid rgba(247,240,227,.3);
  border-right:none; border-radius:3px 0 0 3px; color:var(--cream);
  padding:.75rem 1.1rem; font-family:inherit; outline:none; width:100%;
}
.dk-newsletter-input::placeholder { color:rgba(247,240,227,.45); }
.dk-newsletter-input:focus { border-color:var(--sand); }
.dk-newsletter-btn {
  background:var(--sand); color:var(--deep); border:none;
  padding:.75rem 1.3rem; border-radius:0 3px 3px 0;
  font-weight:700; font-size:.85rem; letter-spacing:.05em;
  text-transform:uppercase; white-space:nowrap; transition:background .2s;
}
.dk-newsletter-btn:hover { background:var(--cream); }

/* ── FOOTER ────────────────────────────── */
.dk-footer { background:var(--deep); color:rgba(247,240,227,.6); padding:3.5rem 0 0; }
.dk-footer-brand {
  font-family:'Playfair Display',serif; font-size:1.4rem;
  font-weight:900; color:var(--cream);
}
.dk-footer-brand span { color:var(--sand); }
.dk-footer-desc { font-size:.83rem; line-height:1.75; }
.dk-footer-heading {
  font-size:.75rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.1em; color:var(--cream); margin-bottom:.9rem;
}
.dk-footer-links {
  list-style:none; padding:0; margin:0;
  display:flex; flex-direction:column; gap:.4rem;
}
.dk-footer-links li { font-size:.83rem; }
.dk-footer-links a { color:rgba(247,240,227,.6); text-decoration:none; transition:color .2s; }
.dk-footer-links a:hover { color:var(--sand); }
.dk-social-btn {
  width:34px; height:34px; border-radius:3px;
  border:1px solid rgba(200,169,110,.3);
  display:flex; align-items:center; justify-content:center;
  color:rgba(247,240,227,.6); font-size:.9rem;
  text-decoration:none; transition:all .2s;
}
.dk-social-btn:hover { border-color:var(--sand); color:var(--sand); }
.dk-footer-bottom {
  border-top:1px solid rgba(200,169,110,.12); margin-top:2.5rem;
  padding:1.3rem 0; display:flex; justify-content:space-between;
  align-items:center; flex-wrap:wrap; gap:.5rem;
  font-size:.75rem;
}
.dk-footer-bottom a { color:var(--sand); text-decoration:none; }

/* ── CONFIRMATION PAGE ─────────────────── */
.dk-confirm-icon {
  width:88px; height:88px; border-radius:50%;
  background:var(--sahel); color:#fff; font-size:2.3rem;
  margin:0 auto 1.5rem;
  display:flex; align-items:center; justify-content:center;
  animation:dk-pop .5s cubic-bezier(.4,0,.2,1) both;
}
@keyframes dk-pop {
  from{transform:scale(.5);opacity:0} to{transform:scale(1);opacity:1}
}
.dk-conf-step {
  padding:1.2rem .8rem; background:var(--surface);
  border-radius:4px; border:1px solid var(--sand-lt); text-align:center;
}

/* ── LOADER ────────────────────────────── */
.dk-loader-overlay {
  position:fixed; inset:0; background:rgba(26,18,9,.75);
  z-index:2000; display:none; align-items:center; justify-content:center;
  flex-direction:column; gap:1.2rem;
}
.dk-loader-overlay.show { display:flex; }
.dk-spinner {
  width:50px; height:50px; border-radius:50%;
  border:3px solid rgba(200,169,110,.25); border-top-color:var(--sand);
  animation:dk-spin .8s linear infinite;
}
@keyframes dk-spin { to{transform:rotate(360deg)} }

/* ── TOAST ─────────────────────────────── */
.dk-toast {
  position:fixed; bottom:1.5rem; left:50%;
  transform:translateX(-50%) translateY(120px);
  background:var(--deep); color:var(--cream);
  padding:.7rem 1.3rem; border-radius:3px;
  font-size:.85rem; font-weight:500; white-space:nowrap;
  display:flex; align-items:center; gap:.5rem;
  z-index:3000; transition:transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow:0 4px 20px rgba(26,18,9,.25);
}
.dk-toast.show { transform:translateX(-50%) translateY(0); }

/* ── SECURE BANNER ─────────────────────── */
.dk-secure-banner {
  display:flex; align-items:flex-start; gap:.8rem;
  padding:.9rem 1rem; background:#F0F7F2;
  border:1px solid rgba(74,124,89,.2); border-radius:3px;
}

/* ── PAY TOTAL PILL ────────────────────── */
.dk-pay-pill {
  display:flex; align-items:center; justify-content:space-between;
  padding:1rem 1.3rem; background:var(--deep); border-radius:4px;
}
.dk-pill-label { font-size:.75rem; color:rgba(247,240,227,.55); letter-spacing:.08em; text-transform:uppercase; }
.dk-pill-amount {
  font-family:'Playfair Display',serif; font-size:1.5rem;
  font-weight:900; color:var(--sand);
}

/* ── PROMO ─────────────────────────────── */
.dk-promo-row { display:flex; gap:.5rem; }
.dk-promo-input {
  flex:1; padding:.65rem 1rem;
  border:1.5px solid var(--sand-lt); border-radius:3px 0 0 3px;
  background:var(--cream); font-size:.88rem; color:var(--deep); outline:none;
  transition:border-color .2s;
}
.dk-promo-input:focus { border-color:var(--earth); }
.dk-promo-input::placeholder { color:var(--muted); opacity:.65; }
.dk-promo-btn {
  padding:.65rem 1.1rem; background:var(--deep); color:var(--cream);
  border:none; border-radius:0 3px 3px 0; font-size:.85rem; font-weight:600;
  letter-spacing:.04em; transition:background .2s; white-space:nowrap;
}
.dk-promo-btn:hover { background:var(--earth); }

/* ── FADE-UP SCROLL ANIMATION ──────────── */
.fade-up {
  opacity:0; transform:translateY(28px);
  transition:opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.fade-up.visible { opacity:1; transform:none; }
.fade-up:nth-child(2){transition-delay:.1s}
.fade-up:nth-child(3){transition-delay:.2s}
.fade-up:nth-child(4){transition-delay:.3s}
.fade-up:nth-child(5){transition-delay:.4s}
.fade-up:nth-child(6){transition-delay:.5s}

/* ── RESPONSIVE HELPERS ────────────────── */
@media(max-width:991.98px){
  .dk-process-connector{display:none}
  .dk-step-label{display:none}
}
@media(max-width:575.98px){
  .dk-cart-item{grid-template-columns:52px 1fr}
  .dk-cart-item .item-right{grid-column:1/-1}
}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation:none!important;transition:none!important}
}
