/* Wapas Karo ? Modern storefront shell */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  --wk-navy: #0B1F3A;
  --wk-navy-deep: #061526;
  --wk-teal: #1A8A8C;
  --wk-teal-light: #2BB3B5;
  --wk-gold: #C9A227;
  --wk-gold-soft: #E8D48B;
  --wk-bg: #F3F6F9;
  --wk-offwhite: #EEF2F6;
  --wk-charcoal: #2C3340;
  --wk-muted: #5D6374;
  --wk-radius: 14px;
  --wk-font: 'DM Sans', system-ui, sans-serif;
  --wk-display: 'Outfit', 'DM Sans', sans-serif;
  --wk-bottom-nav-h: 64px;
  --wk-header-h: 72px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--wk-font) !important;
  color: var(--wk-charcoal) !important;
  background: var(--wk-bg) !important;
  margin: 0;
}
h1,h2,h3,.wk-display { font-family: var(--wk-display) !important; letter-spacing: -0.02em; }

/* ??? Header ??? */
.wk-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(6, 21, 38, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wk-header-inner {
  min-height: var(--wk-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.wk-logo img { height: 42px; width: auto; display: block; }
.wk-nav { gap: 1.5rem; align-items: center; }
.wk-nav a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.wk-nav a:hover { color: var(--wk-gold-soft); }
.wk-header-actions { display: flex; align-items: center; gap: 0.65rem; }
.wk-link-login { color: rgba(255,255,255,0.9); text-decoration: none; font-weight: 500; margin-right: 0.25rem; }
.wk-btn-sm {
  background: var(--wk-gold);
  color: var(--wk-navy-deep) !important;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
}
.wk-icon-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}
.wk-icon-btn:hover { background: rgba(255,255,255,0.14); color: #fff; }
.wk-cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--wk-gold); color: var(--wk-navy-deep);
  font-size: 0.65rem; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
}

/* Drawer */
.wk-drawer { pointer-events: none; }
.wk-drawer-panel {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 88vw);
  background: var(--wk-navy-deep); z-index: 1100;
  transform: translateX(105%); transition: transform 0.28s ease;
  padding: 1rem 1.25rem; color: #fff;
}
.wk-drawer-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 1090;
  opacity: 0; transition: opacity 0.28s ease;
}
body.wk-nav-open { overflow: hidden; }
body.wk-nav-open .wk-drawer { pointer-events: auto; }
body.wk-nav-open .wk-drawer-panel { transform: none; }
body.wk-nav-open .wk-drawer-backdrop { opacity: 1; }
.wk-drawer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.wk-drawer-nav { display: flex; flex-direction: column; gap: 0.35rem; }
.wk-drawer-nav a {
  color: rgba(255,255,255,0.9); text-decoration: none;
  padding: 0.75rem 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-weight: 500;
}

/* ??? Slider ??? */
.wk-slider {
  position: relative;
  min-height: min(78vh, 640px);
  overflow: hidden;
  background: var(--wk-navy);
}
.wk-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s;
}
.wk-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.wk-slide-media {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg,
      rgba(3, 11, 20, 0.92) 0%,
      rgba(6, 21, 38, 0.78) 38%,
      rgba(6, 21, 38, 0.45) 68%,
      rgba(6, 21, 38, 0.28) 100%),
    var(--wk-slide-bg) center/cover no-repeat;
  animation: wkKen 12s ease-in-out infinite alternate;
}
.wk-slide-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3, 11, 20, 0.75) 0%, transparent 45%);
  pointer-events: none;
}
@keyframes wkKen {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.wk-slide-content {
  position: relative; z-index: 2;
  min-height: min(78vh, 640px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 4.5rem 1.5rem 3.5rem !important;
  color: #fff !important;
  max-width: 640px;
  width: 100%;
  margin-left: auto; margin-right: auto;
  box-sizing: border-box;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}
.wk-slide-eyebrow {
  color: var(--wk-gold-soft) !important;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.6rem;
}
.wk-slide-content h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 0.85rem;
  max-width: 16ch;
  color: #fff !important;
}
.wk-slide-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92) !important;
  max-width: 34rem;
  margin-bottom: 1.4rem;
}
.wk-slide-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.wk-slider-dots {
  position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; gap: 0.45rem;
}
.wk-dot {
  width: 9px; height: 9px; border-radius: 999px; border: 0;
  background: rgba(255,255,255,0.35); cursor: pointer; padding: 0;
}
.wk-dot.is-active { background: var(--wk-gold); width: 22px; }
.wk-slider-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(6,21,38,0.45); color: #fff; cursor: pointer;
}
.wk-slider-nav.prev { left: 1rem; }
.wk-slider-nav.next { right: 1rem; }
.wk-slider-nav:hover { background: rgba(26,138,140,0.7); }

/* Hero fallback */
.wk-hero {
  min-height: min(78vh, 640px);
  display: flex; align-items: flex-end;
  color: #fff;
  background: linear-gradient(135deg, var(--wk-navy) 0%, var(--wk-teal) 100%);
}
.wk-hero-inner { padding: 4rem 0 3rem; }
.wk-brand-hero {
  font-size: clamp(2.4rem, 7vw, 4rem); font-weight: 800; margin-bottom: 0.75rem;
}
.wk-brand-hero span { color: var(--wk-gold-soft); }
.wk-lead { max-width: 32rem; color: rgba(255,255,255,0.9); margin-bottom: 1.4rem; }
.wk-hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Buttons */
.wk-btn-gold, .btn.wk-btn-gold {
  background: var(--wk-gold) !important;
  border-color: var(--wk-gold) !important;
  color: var(--wk-navy-deep) !important;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.7rem 1.35rem;
}
.wk-btn-gold:hover { filter: brightness(1.08); transform: translateY(-1px); }
.wk-btn-teal, .btn.wk-btn-teal {
  background: var(--wk-teal) !important;
  border-color: var(--wk-teal) !important;
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
}
.wk-btn-ghost, .btn.wk-btn-ghost {
  background: transparent !important;
  border: 1.5px solid rgba(255,255,255,0.55) !important;
  color: #fff !important;
  border-radius: 999px;
  padding: 0.7rem 1.35rem;
  font-weight: 600;
}
.wk-btn-ghost:hover { background: rgba(255,255,255,0.1) !important; color: #fff !important; }
.btn-dark, .btn-primary {
  background: var(--wk-navy) !important;
  border-color: var(--wk-navy) !important;
  color: #fff !important;
}

/* Sections */
.wk-section { padding: 4rem 0; }
.wk-section-title {
  font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--wk-navy) !important; margin-bottom: 0.5rem;
}
.wk-section-sub { color: var(--wk-muted) !important; max-width: 36rem; margin-bottom: 2rem; }
.wk-trust {
  background: linear-gradient(180deg, #f4f7fa 0%, var(--wk-offwhite) 100%);
  border-top: 1px solid rgba(11,31,58,0.06);
  border-bottom: 1px solid rgba(11,31,58,0.06);
  padding: 1.75rem 0;
}
.wk-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 0.85rem;
  justify-content: center;
  align-items: stretch;
}
.wk-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--wk-navy) !important;
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.3;
  text-align: left;
  background: #fff;
  border: 1px solid rgba(11,31,58,0.08);
  border-radius: 999px;
  padding: 0.55rem 1rem 0.55rem 0.55rem;
  box-shadow: 0 6px 18px rgba(11,31,58,0.04);
  max-width: 100%;
}
.wk-trust-item i {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  color: var(--wk-teal) !important;
  background: rgba(26,138,140,0.12);
  font-size: 0.82rem;
}
@media (max-width: 767.98px) {
  .wk-trust { padding: 1.35rem 0; }
  .wk-trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }
  .wk-trust-item {
    width: 100%;
    border-radius: 14px;
    padding: 0.7rem 0.65rem 0.7rem 0.5rem;
    font-size: 0.78rem;
    align-items: flex-start;
    box-shadow: 0 4px 14px rgba(11,31,58,0.05);
  }
  .wk-trust-item i {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
    margin-top: 1px;
  }
}

/* How it works ? home / product (override theme conflicts) */
.wk-shell #how-it-works,
.wk-shell .wk-how {
  scroll-margin-top: calc(var(--wk-header-h) + 20px);
  padding: 4.25rem 0 4.5rem;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(26,138,140,0.08), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(201,162,39,0.08), transparent 50%),
    var(--wk-bg);
}
.wk-shell .wk-how .wk-section-title {
  color: var(--wk-navy) !important;
  font-family: var(--wk-display) !important;
}
.wk-shell .wk-how-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1.35rem !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}
@media (max-width: 991.98px) {
  .wk-shell .wk-how-grid { grid-template-columns: 1fr !important; }
}
.wk-shell .wk-how-card {
  display: flex !important;
  flex-direction: column !important;
  background: #fff !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  border: 1px solid rgba(11,31,58,0.08) !important;
  box-shadow: 0 14px 36px rgba(11,31,58,0.07) !important;
  height: 100%;
  margin: 0 !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wk-shell .wk-how-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(11,31,58,0.12) !important;
}
.wk-shell .wk-how-media {
  position: relative !important;
  aspect-ratio: 4 / 3;
  min-height: 180px;
  overflow: hidden !important;
  background: linear-gradient(160deg, #e8eef5, #d8e6ea) !important;
}
.wk-shell .wk-how-media img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.5s ease;
}
.wk-shell .wk-how-card:hover .wk-how-media img { transform: scale(1.04); }
.wk-shell .wk-how-num {
  position: absolute !important;
  left: 12px !important;
  bottom: 12px !important;
  z-index: 2;
  width: 2.5rem !important;
  height: 2.5rem !important;
  border-radius: 50% !important;
  background: var(--wk-navy) !important;
  color: var(--wk-gold-soft) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--wk-display);
  font-weight: 800 !important;
  font-size: 1rem !important;
  box-shadow: 0 6px 16px rgba(0,0,0,0.28);
  line-height: 1 !important;
}
.wk-shell .wk-how-body {
  padding: 1.15rem 1.2rem 1.35rem !important;
  flex: 1;
}
.wk-shell .wk-how-body h3 {
  font-size: 1.2rem !important;
  color: var(--wk-navy) !important;
  margin: 0 0 0.4rem !important;
  font-weight: 700 !important;
  font-family: var(--wk-display) !important;
}
.wk-shell .wk-how-body p {
  margin: 0 !important;
  color: var(--wk-muted) !important;
  font-size: 0.94rem !important;
  line-height: 1.55 !important;
}

.wk-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 767.98px) { .wk-steps { grid-template-columns: 1fr; } }
.wk-step-num {
  display: inline-flex; width: 2.25rem; height: 2.25rem;
  align-items: center; justify-content: center;
  border-radius: 50%; background: var(--wk-navy); color: var(--wk-gold-soft);
  font-weight: 700; margin-bottom: 0.85rem;
}
.wk-step h3 { font-size: 1.15rem; color: var(--wk-navy); margin-bottom: 0.35rem; }
.wk-step p { color: var(--wk-muted); margin: 0; font-size: 0.95rem; }

/* Products */
.wk-product-card {
  display: flex; flex-direction: column;
  text-decoration: none !important; color: inherit;
  background: #fff; border-radius: var(--wk-radius);
  overflow: hidden; border: 1px solid rgba(11,31,58,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}
.wk-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11,31,58,0.1);
}
.wk-product-media {
  aspect-ratio: 1; background: #e8eef5; overflow: hidden; position: relative;
  display: block; cursor: pointer; text-decoration: none !important;
}
.wk-product-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.45s ease; pointer-events: none;
}
.wk-product-card:hover .wk-product-media img { transform: scale(1.05); }
.wk-product-card h3,
.wk-product-card .wk-product-title {
  font-size: 1rem; color: var(--wk-navy) !important; margin: 0 !important;
  padding: 0 !important; font-weight: 600; text-align: left;
  text-decoration: none !important; display: block;
}
.wk-price {
  color: var(--wk-teal); font-weight: 700; margin: 0; font-size: 0.95rem;
}

/* Auth forms */
.wk-auth-wrap {
  min-height: calc(100vh - var(--wk-header-h) - 80px);
  display: flex; align-items: center; padding: 2.5rem 0;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(26,138,140,0.12), transparent 50%),
    radial-gradient(ellipse at 90% 100%, rgba(201,162,39,0.1), transparent 45%),
    var(--wk-bg);
}
.wk-auth-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem 1.75rem;
  box-shadow: 0 20px 50px rgba(11,31,58,0.08);
  border: 1px solid rgba(11,31,58,0.06);
  max-width: 440px;
  margin: 0 auto;
  width: 100%;
}
.wk-auth-card h1, .wk-auth-card h2 {
  font-size: 1.55rem; color: var(--wk-navy); margin-bottom: 0.35rem;
}
.wk-auth-card .wk-auth-sub { color: var(--wk-muted); margin-bottom: 1.5rem; font-size: 0.95rem; }
.wk-field { margin-bottom: 1rem; }
.wk-field label {
  display: block; font-weight: 600; font-size: 0.82rem;
  color: var(--wk-navy); margin-bottom: 0.35rem;
}
.wk-field input, .theme-input, .wk-auth-card input[type=email],
.wk-auth-card input[type=password], .wk-auth-card input[type=text],
.wk-auth-card input[type=number], .wk-auth-card input[type=tel] {
  width: 100%;
  border: 1.5px solid rgba(11,31,58,0.12) !important;
  border-radius: 10px !important;
  padding: 0.7rem 0.9rem !important;
  font-size: 0.95rem !important;
  background: #fff !important;
  color: var(--wk-charcoal) !important;
}
.wk-field input:focus, .theme-input:focus {
  outline: none; border-color: var(--wk-teal) !important;
  box-shadow: 0 0 0 3px rgba(26,138,140,0.15);
}
.wk-auth-actions { display: flex; justify-content: space-between; align-items: center; margin: 0.75rem 0 1.25rem; }
.wk-auth-actions a { color: var(--wk-teal); font-size: 0.88rem; text-decoration: none; font-weight: 500; }
.wk-auth-submit {
  width: 100%; border: 0; border-radius: 999px;
  background: var(--wk-navy); color: #fff;
  font-weight: 600; padding: 0.85rem 1rem; cursor: pointer;
}
.wk-auth-submit:hover { background: var(--wk-teal); }
.wk-auth-foot { text-align: center; margin-top: 1.25rem; font-size: 0.9rem; color: var(--wk-muted); }
.wk-auth-foot a { color: var(--wk-teal); font-weight: 600; text-decoration: none; }

/* Footer */
.wk-footer {
  background: linear-gradient(180deg, var(--wk-navy-deep) 0%, #030b14 100%);
  color: rgba(255,255,255,0.85);
  padding-top: 3.5rem;
  margin-top: 2rem;
}
.wk-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 991.98px) {
  .wk-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575.98px) {
  .wk-footer-grid { grid-template-columns: 1fr; }
}
.wk-footer h5 {
  color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 1rem;
}
.wk-footer ul { list-style: none; padding: 0; margin: 0; }
.wk-footer li { margin-bottom: 0.45rem; }
.wk-footer a { color: rgba(255,255,255,0.78); text-decoration: none; }
.wk-footer a:hover { color: var(--wk-gold-soft); }
.wk-footer-brand p { font-size: 0.92rem; opacity: 0.85; max-width: 28rem; }
.wk-newsletter { display: flex; gap: 0.4rem; }
.wk-newsletter input {
  flex: 1; border-radius: 999px; border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06); color: #fff; padding: 0.55rem 0.9rem;
}
.wk-newsletter button {
  border: 0; border-radius: 999px; background: var(--wk-teal); color: #fff;
  font-weight: 600; padding: 0.55rem 1rem; cursor: pointer;
}
.wk-social { display: flex; gap: 0.75rem; }
.wk-social a {
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); color: #fff !important;
}
.wk-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 0 1.25rem;
  font-size: 0.85rem;
}
.wk-footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Mobile bottom nav ? always on screen (< md) */
.wk-mobile-nav {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 1080 !important;
  height: var(--wk-bottom-nav-h);
  min-height: 64px;
  padding-bottom: env(safe-area-inset-bottom, 0);
  background: #fff !important;
  border-top: 1px solid rgba(11,31,58,0.1) !important;
  box-shadow: 0 -8px 28px rgba(11,31,58,0.12) !important;
  display: none !important;
  align-items: stretch;
  justify-content: space-around;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100vw !important;
  box-sizing: border-box !important;
}
@media (max-width: 991.98px) {
  .wk-mobile-nav {
    display: flex !important;
  }
  body, .wk-shell {
    padding-bottom: calc(var(--wk-bottom-nav-h) + env(safe-area-inset-bottom, 0px) + 8px) !important;
  }
}
.wk-mobile-nav a {
  flex: 1;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--wk-muted) !important;
  text-decoration: none !important;
  font-size: 0.65rem;
  font-weight: 600;
  gap: 2px;
  position: relative;
  min-width: 0;
  padding: 0.35rem 0.15rem;
  background: transparent !important;
}
.wk-mobile-nav a span {
  color: inherit !important;
  line-height: 1.1;
}
.wk-mobile-nav a i {
  font-size: 1.15rem;
  color: inherit !important;
}
.wk-mobile-nav a.active,
.wk-mobile-nav a:hover {
  color: var(--wk-teal) !important;
}
.wk-mobile-nav em {
  position: absolute;
  top: 4px;
  right: calc(50% - 18px);
  background: var(--wk-gold);
  color: var(--wk-navy);
  font-style: normal;
  font-size: 0.6rem;
  min-width: 14px;
  height: 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .wk-section { padding: 2.5rem 0; }
  .wk-slider-nav { display: none; }
  .wk-slide-content {
    padding: 3.25rem 1.25rem 3.5rem !important;
    max-width: 100%;
  }
  .wk-slide-content h1 {
    max-width: none;
    font-size: clamp(1.75rem, 7.5vw, 2.4rem);
  }
  .wk-slide-lead {
    font-size: 0.98rem;
    margin-right: 0;
  }
  .wk-slider-dots { bottom: 1rem; }
}

a, button, .btn {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

/* ??? Contrast fixes: dark bg = light text ??? */
.wk-header a,
.wk-header .wk-link-login,
.wk-header .wk-nav a,
.wk-drawer-nav a {
  color: rgba(255,255,255,0.92) !important;
}
.wk-header a:hover,
.wk-header .wk-link-login:hover,
.wk-header .wk-nav a:hover,
.wk-drawer-nav a:hover {
  color: var(--wk-gold-soft) !important;
  background: transparent !important;
}
.wk-btn-sm,
.wk-btn-sm:hover,
.wk-btn-sm:focus {
  color: var(--wk-navy-deep) !important;
}
.wk-footer,
.wk-footer a,
.wk-footer p,
.wk-footer h5,
.wk-footer span,
.wk-slide-content,
.wk-slide-content h1,
.wk-slide-content h2,
.wk-slide-content p,
.wk-slide-lead {
  color: #fff !important;
}
.wk-slide-eyebrow {
  color: var(--wk-gold-soft) !important;
}
.wk-hero,
.wk-hero a,
.wk-hero p,
.wk-brand-hero {
  color: inherit;
}
.wk-footer a { color: rgba(255,255,255,0.8) !important; }
.wk-footer a:hover { color: var(--wk-gold-soft) !important; }

.wk-logo img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  background: transparent !important;
  mix-blend-mode: normal;
}

/* Outline button */
.wk-btn-outline, .btn.wk-btn-outline {
  background: transparent !important;
  border: 1.5px solid var(--wk-navy) !important;
  color: var(--wk-navy) !important;
  border-radius: 999px;
  font-weight: 600;
  padding: 0.7rem 1.25rem;
}
.wk-btn-outline:hover {
  background: var(--wk-navy) !important;
  color: #fff !important;
}

/* Panels / forms shared */
.wk-panel {
  background: #fff;
  border-radius: 16px;
  padding: 1.35rem 1.4rem;
  border: 1px solid rgba(11,31,58,0.06);
  box-shadow: 0 12px 32px rgba(11,31,58,0.06);
}
.wk-panel h2 { font-size: 1.15rem; color: var(--wk-navy); margin-bottom: 1rem; font-weight: 700; }
.wk-panel-note { font-size: 0.9rem; color: var(--wk-muted); margin-bottom: 1rem; }
.wk-panel .wk-field label,
.wk-checkout label { color: var(--wk-navy); }
.wk-field input, .wk-field select, .wk-field textarea,
.wk-checkout input, .wk-checkout select, .wk-checkout textarea {
  width: 100%;
  border: 1.5px solid rgba(11,31,58,0.12);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  background: #fff;
  color: var(--wk-charcoal);
}
.wk-field { margin-bottom: 0.9rem; }
.wk-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.wk-field-row3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.85rem; }
@media (max-width: 767.98px) {
  .wk-field-row, .wk-field-row3 { grid-template-columns: 1fr; }
}
.wk-phone { display: flex; align-items: stretch; }
.wk-phone span {
  display: flex; align-items: center; padding: 0 0.85rem;
  background: var(--wk-offwhite); border: 1.5px solid rgba(11,31,58,0.12);
  border-right: 0; border-radius: 10px 0 0 10px; color: var(--wk-navy); font-weight: 600;
}
.wk-phone input { border-radius: 0 10px 10px 0 !important; }

.wk-cod-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: #E8F6F6; color: var(--wk-teal) !important;
  font-weight: 600; font-size: 0.82rem; padding: 0.35rem 0.75rem; border-radius: 999px;
}
.sticky-lg { position: sticky; top: calc(var(--wk-header-h) + 12px); }

/* Product detail */
.wk-pd { padding: 1.5rem 0 2.5rem; }
.wk-breadcrumb {
  display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center;
  font-size: 0.85rem; color: var(--wk-muted); margin-bottom: 1.25rem;
}
.wk-breadcrumb a { color: var(--wk-teal); text-decoration: none; }
.wk-pd-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 2rem; align-items: start;
}
@media (max-width: 991.98px) { .wk-pd-grid { grid-template-columns: 1fr; } }
.wk-pd-main {
  position: relative; background: #fff; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(11,31,58,0.06); aspect-ratio: 1;
}
.wk-pd-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wk-pd-sale {
  position: absolute; top: 12px; left: 12px;
  background: var(--wk-navy); color: var(--wk-gold-soft);
  font-weight: 700; font-size: 0.75rem; padding: 0.35rem 0.65rem; border-radius: 999px;
}
.wk-pd-thumbs { display: flex; gap: 0.5rem; margin-top: 0.75rem; flex-wrap: wrap; }
.wk-pd-thumb {
  width: 72px; height: 72px; padding: 0; border-radius: 10px; overflow: hidden;
  border: 2px solid transparent; background: #fff; cursor: pointer;
}
.wk-pd-thumb.is-active, .wk-pd-thumb:hover { border-color: var(--wk-teal); }
.wk-pd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wk-pd-info h1 {
  font-size: clamp(1.5rem, 3vw, 2rem); color: var(--wk-navy); font-weight: 800; margin: 0.25rem 0 0.75rem;
}
.wk-pd-tags { color: var(--wk-muted); font-size: 0.85rem; margin: 0; text-transform: uppercase; letter-spacing: 0.04em; }

/* Star rating (shared) */
.wk-shell .wk-star-rating,
.wk-star-rating {
  position: relative !important;
  display: inline-block !important;
  font-size: 0.95rem;
  line-height: 1 !important;
  letter-spacing: 0.08em;
  vertical-align: middle;
  white-space: nowrap !important;
}
.wk-shell .wk-star-rating-base,
.wk-star-rating-base {
  color: #d5dbe3 !important;
  display: block !important;
}
.wk-shell .wk-star-rating-fill,
.wk-star-rating-fill {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  height: 100% !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  color: var(--wk-gold) !important;
  pointer-events: none;
}
.wk-stars-sm { font-size: 0.78rem; letter-spacing: 0.04em; }
.wk-stars-lg { font-size: 1.15rem; letter-spacing: 0.1em; }

.wk-pd-rating-inline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  margin: -0.15rem 0 0.85rem;
}
.wk-pd-rating-inline .wk-pd-rating-n {
  color: var(--wk-navy);
  font-size: 0.95rem;
  font-weight: 700;
}
.wk-pd-rating-inline .wk-pd-rating-link {
  color: var(--wk-teal) !important;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}
.wk-pd-rating-inline .wk-pd-rating-link:hover { text-decoration: underline; }

.wk-pd-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  align-items: center;
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  background: #fff;
  border: 1px solid rgba(11,31,58,0.07);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(11,31,58,0.04);
}
.wk-reviews-breakdown {
  margin: 0.35rem 0 1.35rem;
}
.wk-pd-rating-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.wk-pd-rating-score {
  font-family: var(--wk-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--wk-navy);
  line-height: 1;
}
.wk-pd-rating-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.wk-pd-rating-count-txt {
  color: var(--wk-muted);
  font-size: 0.88rem;
}
.wk-pd-rating-link {
  color: var(--wk-teal) !important;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}
.wk-pd-rating-link:hover { text-decoration: underline; }
.wk-pd-rating-bars {
  flex: 1 1 180px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}
.wk-pd-rating-row {
  display: grid;
  grid-template-columns: 14px 1fr 22px;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.72rem;
  color: var(--wk-muted);
}
.wk-pd-rating-track {
  height: 6px;
  border-radius: 999px;
  background: #e8edf2;
  overflow: hidden;
}
.wk-pd-rating-track i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--wk-gold), #e0b84a);
  border-radius: 999px;
}
.wk-pd-rating-row em { font-style: normal; text-align: right; }
.wk-pd-rating-empty {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--wk-muted);
  font-size: 0.9rem;
}
.wk-pd-rating-empty a { color: var(--wk-teal); font-weight: 600; }

.wk-reviews-summary {
  margin-bottom: 1.25rem;
}
.wk-reviews-summary-score {
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
  background: #fff;
  border: 1px solid rgba(11,31,58,0.07);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 22px rgba(11,31,58,0.04);
}
.wk-reviews-summary-score strong {
  font-family: var(--wk-display);
  font-size: 2rem;
  color: var(--wk-navy);
  line-height: 1;
}
.wk-reviews-summary-score span {
  color: var(--wk-muted);
  font-size: 0.88rem;
}

.wk-card-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.15rem 0 0.35rem;
  min-height: 1.1rem;
}
.wk-card-rating-score {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--wk-navy);
}
.wk-card-rating-count {
  font-size: 0.78rem;
  color: var(--wk-muted);
}
.wk-card-rating-muted { font-weight: 500; }

.wk-pd-price { display: flex; flex-wrap: wrap; align-items: center; gap: 0.65rem; margin-bottom: 0.75rem; }
.wk-pd-now { font-size: 1.55rem; font-weight: 800; color: var(--wk-teal); }
.wk-pd-was { text-decoration: line-through; color: var(--wk-muted); font-size: 1rem; }
.wk-pd-stock { font-size: 0.9rem; margin-bottom: 1.1rem; }
.wk-pd-stock.ok { color: #1F8A5B; }
.wk-pd-stock.out { color: #C0392B; }
.wk-pd-perks { list-style: none; padding: 0; margin: 1.25rem 0; }
.wk-pd-perks li {
  display: flex; gap: 0.55rem; align-items: center;
  color: var(--wk-charcoal); font-size: 0.92rem; margin-bottom: 0.45rem;
}
.wk-pd-perks i { color: var(--wk-teal); width: 1.1rem; }
.wk-pd-desc h2 { font-size: 1.1rem; color: var(--wk-navy); margin-bottom: 0.5rem; }
.wk-pd-desc-body { color: var(--wk-muted); line-height: 1.65; }
.wk-pd-desc-body p { color: var(--wk-muted); }
.wk-pd-how { background: var(--wk-offwhite); }
.wk-review { border-bottom: 1px solid rgba(11,31,58,0.06); padding: 1rem 0; }
.wk-review-top { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: 0.35rem; }
.wk-stars { color: var(--wk-gold); letter-spacing: 1px; }
.wk-review-form { margin-top: 1.5rem; background: #fff; border-radius: 14px; padding: 1.25rem; border: 1px solid rgba(11,31,58,0.06); }
.wk-sticky-buy {
  position: fixed; left: 0; right: 0; bottom: var(--wk-bottom-nav-h); z-index: 1020;
  background: #fff; border-top: 1px solid rgba(11,31,58,.08); box-shadow: 0 -6px 20px rgba(11,31,58,.08);
}
.wk-pd-actions-compact .wk-qty-row { display: none; }
.wk-pd-actions-compact .wk-cart-btns { display: flex; gap: 0.4rem; }
.wk-pd-actions-compact .btn { padding: 0.55rem 0.9rem; font-size: 0.85rem; white-space: nowrap; }

/* Cart form controls */
.wk-qty-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.wk-qty-label { font-weight: 600; color: var(--wk-navy); font-size: 0.9rem; }
.wk-qty {
  display: inline-flex; align-items: center; border: 1.5px solid rgba(11,31,58,0.12); border-radius: 999px; overflow: hidden;
}
.wk-qty-btn {
  width: 36px; height: 36px; border: 0; background: transparent; color: var(--wk-navy); font-size: 1.1rem; cursor: pointer;
}
.wk-qty-num { min-width: 28px; text-align: center; font-weight: 700; color: var(--wk-navy); }
.wk-cart-btns { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.wk-cart-btns .btn { flex: 1; min-width: 140px; }

/* Shop page polish ? hide legacy double-image hover stacks */
.image-container .hover-image,
.vertical-product-card .hover-image { display: none !important; }
.wk-product-media img + img { display: none !important; }

/* Checkout */
.wk-checkout { padding: 1.75rem 0 3rem; }
.wk-checkout-head {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
}
.wk-checkout-head h1 { font-size: 1.75rem; color: var(--wk-navy); margin: 0; font-weight: 800; }
.wk-checkout-head p { margin: 0.2rem 0 0; color: var(--wk-muted); }
.wk-checkout-layout { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 1.25rem; }
@media (max-width: 991.98px) { .wk-checkout-layout { grid-template-columns: 1fr; } }
.wk-checkout-main .wk-panel { margin-bottom: 1rem; }
.wk-sum-line {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 0.75rem; align-items: center;
  margin-bottom: 0.85rem;
}
.wk-sum-line img { width: 56px; height: 56px; object-fit: cover; border-radius: 10px; background: #eee; }
.wk-sum-line strong { display: block; font-size: 0.9rem; color: var(--wk-navy); }
.wk-sum-line small { color: var(--wk-muted); }
.wk-total-row { display: flex; justify-content: space-between; margin: 0.4rem 0; color: var(--wk-charcoal); }
.wk-total-final { border-top: 1px solid rgba(11,31,58,0.08); padding-top: 0.85rem; margin-top: 0.75rem; }
.wk-total-final strong { color: var(--wk-teal); font-size: 1.1rem; }
.wk-coupon { display: flex; gap: 0.4rem; margin: 0.75rem 0; }
.wk-coupon input { flex: 1; border-radius: 999px; border: 1.5px solid rgba(11,31,58,0.12); padding: 0.55rem 0.9rem; }
.wk-coupon button {
  border: 0; border-radius: 999px; background: var(--wk-navy); color: #fff; font-weight: 600; padding: 0.55rem 1rem; cursor: pointer;
}
.wk-coupon-ok { background: #E8F6F6; border-radius: 10px; padding: 0.6rem 0.85rem; margin: 0.75rem 0; font-size: 0.9rem; }
.wk-checkout-links { text-align: center; margin-top: 0.85rem; font-size: 0.85rem; color: var(--wk-muted); }
.wk-checkout-links a { color: var(--wk-teal); }

/* Cart page */
.wk-cart-page { padding: 1.75rem 0 3rem; }
.wk-cart-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.wk-cart-head h1 { font-size: 1.75rem; color: var(--wk-navy); margin: 0; font-weight: 800; }
.wk-link-danger { background: none; border: 0; color: #C0392B; cursor: pointer; font-size: 0.88rem; padding: 0; text-decoration: none; }
.wk-cart-layout { display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 1.25rem; }
@media (max-width: 991.98px) { .wk-cart-layout { grid-template-columns: 1fr; } }
.wk-cart-item {
  display: grid; grid-template-columns: 96px 1fr auto auto; gap: 1rem; align-items: center;
  background: #fff; border-radius: 14px; padding: 1rem; margin-bottom: 0.75rem;
  border: 1px solid rgba(11,31,58,0.06);
}
@media (max-width: 575.98px) {
  .wk-cart-item { grid-template-columns: 72px 1fr; }
  .wk-cart-qty, .wk-cart-line { grid-column: 2; }
}
.wk-cart-img img { width: 96px; height: 96px; object-fit: cover; border-radius: 10px; display: block; }
.wk-cart-meta h2 { font-size: 1rem; margin: 0 0 0.25rem; color: var(--wk-navy); }
.wk-cart-meta a { text-decoration: none; }
.wk-cart-meta p { margin: 0 0 0.35rem; color: var(--wk-muted); font-size: 0.88rem; }
.wk-cart-line { font-weight: 700; color: var(--wk-teal); }

/* Account / profile */
.wk-account { padding: 1.75rem 0 3rem; }
.wk-account-hero {
  display: flex; align-items: center; gap: 1rem; background: linear-gradient(135deg, #061526, #0B1F3A 60%, #145a5c);
  color: #fff; border-radius: 18px; padding: 1.4rem 1.5rem; margin-bottom: 1.25rem;
}
.wk-account-hero h1 { margin: 0; font-size: 1.45rem; color: #fff !important; }
.wk-account-hero p { margin: 0.35rem 0 0; display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; opacity: 0.88; color: rgba(255,255,255,0.9) !important; }
.wk-account-hero a { color: var(--wk-gold-soft) !important; }
.wk-account-avatar {
  width: 64px; height: 64px; border-radius: 50%; background: var(--wk-gold); color: var(--wk-navy);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.35rem; flex-shrink: 0;
  overflow: hidden; border: 2px solid rgba(255,255,255,0.25);
}
.wk-account-avatar.has-photo { background: transparent; padding: 0; }
.wk-account-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.wk-edit-stack { display: flex; flex-direction: column; gap: 1rem; }
.wk-edit-panel h2.wk-edit-heading,
.wk-edit-heading { font-size: 1.1rem; color: var(--wk-navy); margin: 0 0 0.25rem; font-weight: 700; }
.wk-edit-sub { color: var(--wk-muted); font-size: 0.88rem; margin: 0 0 1rem; }
.wk-edit-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem 1rem;
}
@media (max-width: 575.98px) { .wk-edit-grid { grid-template-columns: 1fr; } }
.wk-edit-field { display: flex; flex-direction: column; gap: 0.35rem; }
.wk-edit-field-full { grid-column: 1 / -1; }
.wk-edit-field label {
  font-size: 0.8rem; font-weight: 600; color: var(--wk-charcoal); margin: 0;
}
.wk-edit-field label span { font-weight: 500; color: var(--wk-muted); }
.wk-edit-field small { color: var(--wk-muted); font-size: 0.75rem; }
.wk-edit-field input {
  border: 1px solid rgba(11,31,58,0.12); border-radius: 10px; padding: 0.65rem 0.8rem;
  font-size: 0.95rem; background: #fff; color: var(--wk-charcoal);
}
.wk-edit-field input:focus {
  outline: none; border-color: var(--wk-teal); box-shadow: 0 0 0 3px rgba(26,138,140,0.12);
}
.wk-edit-field input[readonly] { background: #f4f6f8; color: var(--wk-muted); }
.wk-edit-photo-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem;
}
.wk-edit-photo-preview {
  width: 96px; height: 96px; border-radius: 50%; overflow: hidden;
  border: 3px solid rgba(11,31,58,0.08); background: #eef2f6; flex-shrink: 0;
}
.wk-edit-photo-preview img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wk-edit-photo-form { display: flex; flex-wrap: wrap; align-items: center; gap: 0.65rem; }
.wk-edit-file-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 0.9rem; border-radius: 10px; cursor: pointer;
  border: 1px dashed rgba(11,31,58,0.2); background: #f8fafb; font-weight: 600; font-size: 0.88rem;
  color: var(--wk-navy); margin: 0;
}
.wk-edit-file-btn input { display: none; }
.wk-edit-file-btn:hover { border-color: var(--wk-teal); color: var(--wk-teal); }
.btn.wk-btn-navy {
  background: var(--wk-navy) !important; color: #fff !important; border: none;
  border-radius: 10px; padding: 0.55rem 1.1rem; font-weight: 600;
}
.btn.wk-btn-navy:hover { opacity: 0.92; color: #fff !important; }

.wk-account-layout { display: grid; grid-template-columns: 240px 1fr; gap: 1.25rem; }
@media (max-width: 991.98px) { .wk-account-layout { grid-template-columns: 1fr; } }
.wk-account-nav { display: flex; flex-direction: column; gap: 0.25rem; padding: 1rem !important; height: fit-content; }
.wk-account-nav h2 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--wk-muted); margin-bottom: 0.5rem; }
.wk-account-nav a {
  display: flex; align-items: center; gap: 0.65rem; padding: 0.7rem 0.75rem; border-radius: 10px;
  color: var(--wk-charcoal) !important; text-decoration: none; font-weight: 500;
}
.wk-account-nav a:hover, .wk-account-nav a.is-active {
  background: rgba(26,138,140,0.1); color: var(--wk-teal) !important;
}
.wk-account-nav .wk-logout { color: #C0392B !important; margin-top: 0.5rem; }
.wk-account-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.85rem; }
@media (max-width: 991.98px) { .wk-account-cards { grid-template-columns: 1fr 1fr; } }
.wk-dash-card {
  background: #fff; border-radius: 14px; padding: 1.15rem; text-decoration: none !important;
  border: 1px solid rgba(11,31,58,0.06); box-shadow: 0 8px 24px rgba(11,31,58,0.05);
  display: flex; flex-direction: column; gap: 0.25rem; transition: transform 0.2s ease;
}
.wk-dash-card:hover { transform: translateY(-3px); }
.wk-dash-card i { color: var(--wk-teal); font-size: 1.25rem; margin-bottom: 0.35rem; }
.wk-dash-card strong { color: var(--wk-navy); }
.wk-dash-card span { color: var(--wk-muted); font-size: 0.82rem; }
.wk-table { width: 100%; border-collapse: collapse; }
.wk-table th, .wk-table td { padding: 0.7rem 0.4rem; border-bottom: 1px solid rgba(11,31,58,0.06); text-align: left; font-size: 0.9rem; }
.wk-table th { color: var(--wk-muted); font-weight: 600; font-size: 0.78rem; text-transform: uppercase; }
.wk-table a { color: var(--wk-teal); }

/* Kill theme Poppins / dark-link-on-dark overrides inside our shell */
.wk-shell .wk-header a:hover { color: var(--wk-gold-soft) !important; }
.wk-shell .gshop-navmenu a:hover { color: var(--wk-gold-soft) !important; }

/* ??? FAQ page ??? */
.wk-faq-page { padding-bottom: 3.5rem; }
.wk-faq-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 70% at 85% 20%, rgba(26,138,140,0.45), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(201,162,39,0.18), transparent 50%),
    linear-gradient(145deg, #061526 0%, #0B1F3A 48%, #0e4a4c 100%);
  color: #fff;
  padding: 3.25rem 0 3.5rem;
}
.wk-faq-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--wk-bg));
  pointer-events: none;
}
.wk-faq-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.wk-faq-brand {
  margin: 0 0 0.65rem;
  font-family: var(--wk-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wk-gold-soft);
}
.wk-faq-hero h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 800;
  color: #fff !important;
  line-height: 1.15;
}
.wk-faq-lead {
  margin: 0 0 1.35rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 34rem;
}
.wk-faq-hero-actions,
.wk-faq-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.wk-faq-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  background: var(--wk-gold);
  color: var(--wk-navy-deep) !important;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wk-faq-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201,162,39,0.35);
  color: var(--wk-navy-deep) !important;
}
.wk-faq-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none !important;
  background: rgba(255,255,255,0.06);
  transition: background 0.2s ease;
}
.wk-faq-btn-ghost:hover { background: rgba(255,255,255,0.14); color: #fff !important; }
.wk-faq-btn-dark {
  border-color: rgba(11,31,58,0.18);
  color: var(--wk-navy) !important;
  background: #fff;
}
.wk-faq-btn-dark:hover { background: var(--wk-offwhite); color: var(--wk-navy) !important; }

.wk-faq-body { margin-top: -0.5rem; position: relative; z-index: 2; }
.wk-faq-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.wk-faq-search {
  flex: 1 1 260px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #fff;
  border: 1px solid rgba(11,31,58,0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  box-shadow: 0 10px 28px rgba(11,31,58,0.05);
}
.wk-faq-search i { color: var(--wk-teal); }
.wk-faq-search input {
  border: 0;
  outline: 0;
  width: 100%;
  font: inherit;
  background: transparent;
  color: var(--wk-charcoal);
}
.wk-faq-search input::placeholder { color: var(--wk-muted); }
.wk-faq-count {
  margin: 0;
  color: var(--wk-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.wk-faq-list {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(11,31,58,0.07);
  box-shadow: 0 14px 36px rgba(11,31,58,0.06);
  overflow: hidden;
}
.wk-faq-item {
  border-bottom: 1px solid rgba(11,31,58,0.07);
  transition: background 0.2s ease;
}
.wk-faq-item:last-child { border-bottom: 0; }
.wk-faq-item[open] { background: rgba(26,138,140,0.04); }
.wk-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  user-select: none;
}
.wk-faq-item summary::-webkit-details-marker { display: none; }
.wk-faq-q {
  font-family: var(--wk-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--wk-navy);
  line-height: 1.4;
}
.wk-faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(11,31,58,0.06);
  color: var(--wk-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}
.wk-faq-item[open] .wk-faq-icon {
  background: var(--wk-teal);
  color: #fff;
  transform: rotate(45deg);
}
.wk-faq-a {
  padding: 0 1.25rem 1.25rem;
  color: var(--wk-muted);
  font-size: 0.96rem;
  line-height: 1.65;
  max-width: 52rem;
  animation: wkFaqIn 0.28s ease;
}
.wk-faq-a p { margin: 0 0 0.65rem; }
.wk-faq-a p:last-child { margin-bottom: 0; }
.wk-faq-a a { color: var(--wk-teal); font-weight: 600; }
@keyframes wkFaqIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.wk-faq-empty,
.wk-faq-none {
  text-align: center;
  padding: 2.5rem 1.25rem;
  color: var(--wk-muted);
  background: #fff;
  border-radius: 16px;
  border: 1px dashed rgba(11,31,58,0.15);
}
.wk-faq-none p { margin: 0 0 1rem; }

.wk-faq-cta {
  margin-top: 2rem;
  padding: 1.5rem 1.5rem;
  border-radius: 16px;
  background: linear-gradient(120deg, #EEF2F6 0%, #e6f4f4 100%);
  border: 1px solid rgba(26,138,140,0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.wk-faq-cta h2 {
  margin: 0 0 0.3rem;
  font-size: 1.25rem;
  color: var(--wk-navy);
}
.wk-faq-cta p {
  margin: 0;
  color: var(--wk-muted);
  font-size: 0.95rem;
}
@media (max-width: 575.98px) {
  .wk-faq-hero { padding: 2.4rem 0 2.75rem; }
  .wk-faq-item summary { padding: 1rem; }
  .wk-faq-a { padding: 0 1rem 1rem; }
}


/* How it works block kept near .wk-section (earlier in file) for theme override priority */

/* ??? Product cards ??? */
.wk-product-card {
  display: flex; flex-direction: column;
  text-decoration: none !important; color: inherit;
  background: #fff; border-radius: 16px;
  overflow: hidden; border: 1px solid rgba(11,31,58,0.07);
  box-shadow: 0 10px 28px rgba(11,31,58,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}
.wk-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(11,31,58,0.12);
}
.wk-product-media {
  aspect-ratio: 1; background: linear-gradient(160deg, #eef3f7, #e2eaf1);
  overflow: hidden; position: relative;
  display: block !important;
  cursor: pointer;
  text-decoration: none !important;
  color: inherit !important;
}
.wk-product-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.45s ease;
  pointer-events: none;
}
.wk-product-card:hover .wk-product-media img { transform: scale(1.06); }
.wk-chip {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-size: 0.68rem; font-weight: 700; padding: 0.3rem 0.55rem;
  border-radius: 999px; letter-spacing: 0.02em;
  pointer-events: none;
}
.wk-chip-sale { background: var(--wk-navy); color: var(--wk-gold-soft); }
.wk-chip-danger { background: #C0392B; color: #fff; }
.wk-card-qr {
  position: absolute; right: 10px; bottom: 10px; z-index: 2;
  background: rgba(6,21,38,0.78); color: #fff;
  font-size: 0.68rem; font-weight: 600; padding: 0.3rem 0.55rem;
  border-radius: 999px; backdrop-filter: blur(4px);
  pointer-events: none;
}
.wk-product-body {
  padding: 0.85rem 0.9rem 1rem !important;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  text-align: left !important;
  align-items: stretch;
}
.wk-product-title {
  font-size: 0.98rem !important;
  color: var(--wk-navy) !important;
  margin: 0 !important;
  padding: 0 !important;
  font-weight: 600 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.35;
  text-align: left !important;
  text-decoration: none !important;
  display: block !important;
  width: 100%;
}
.wk-product-title:hover { color: var(--wk-teal) !important; }
.wk-card-rating { justify-content: flex-start; }
.wk-product-meta {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: baseline;
  gap: 0.4rem;
  justify-content: flex-start;
  white-space: nowrap !important;
  min-width: 0;
  width: 100%;
  overflow: hidden;
}
.wk-price {
  color: var(--wk-teal);
  font-weight: 800;
  margin: 0 !important;
  font-size: 1rem;
  white-space: nowrap !important;
  flex-shrink: 0;
}
.wk-price-was {
  color: var(--wk-muted);
  text-decoration: line-through;
  font-size: 0.82rem;
  white-space: nowrap !important;
  flex-shrink: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 575.98px) {
  .wk-product-body { padding: 0.7rem 0.65rem 0.85rem !important; }
  .wk-price { font-size: 0.88rem !important; }
  .wk-price-was { font-size: 0.72rem !important; }
  .wk-product-meta { gap: 0.3rem; }
}
.wk-card-cta {
  margin-top: auto; padding-top: 0.35rem;
  font-size: 0.78rem; font-weight: 600; color: var(--wk-navy) !important;
  opacity: 0.7; transition: opacity 0.2s ease;
  text-decoration: none !important; display: inline-flex; align-items: center; gap: 0.35rem;
}
.wk-product-card:hover .wk-card-cta { opacity: 1; color: var(--wk-teal) !important; }

/* ??? Story video loop ??? */
.wk-eyebrow {
  color: var(--wk-teal); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.4rem;
}
.wk-story-layout {
  display: grid; grid-template-columns: 0.9fr 1.2fr; gap: 2rem; align-items: center;
}
@media (max-width: 991.98px) { .wk-story-layout { grid-template-columns: 1fr; } }
.wk-story-bullets { list-style: none; padding: 0; margin: 0; }
.wk-story-bullets li {
  position: relative; padding-left: 1.2rem; margin-bottom: 0.45rem;
  color: var(--wk-charcoal); font-size: 0.95rem;
}
.wk-story-bullets li::before {
  content: ''; position: absolute; left: 0; top: 0.5rem;
  width: 7px; height: 7px; border-radius: 50%; background: var(--wk-gold);
}
.wk-story-player {
  position: relative; border-radius: 18px; overflow: hidden;
  aspect-ratio: 16/9; background: #061526;
  box-shadow: 0 24px 50px rgba(6,21,38,0.28);
}
.wk-story-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 1;
}
.wk-story-frame {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.7s ease; display: block;
}
.wk-story-frame.is-active { opacity: 1; z-index: 1; }
.wk-story-overlay {
  position: absolute; left: 12px; top: 12px; z-index: 3;
}
.wk-story-live {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(6,21,38,0.7); color: #fff; font-size: 0.72rem; font-weight: 600;
  padding: 0.35rem 0.65rem; border-radius: 999px; backdrop-filter: blur(6px);
}
.wk-story-live i { color: #ff4d4d; font-size: 0.45rem; animation: wkPulse 1.2s ease infinite; }
@keyframes wkPulse { 50% { opacity: 0.35; } }
.wk-story-bar {
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px; z-index: 4;
  background: rgba(255,255,255,0.2);
}
.wk-story-bar span {
  display: block; height: 100%; width: 0; background: var(--wk-gold);
}

/* ??? Stats / Testimonials / CTA ??? */
.wk-stats { padding: 2rem 0; background: var(--wk-navy); }
.wk-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center;
}
@media (max-width: 767.98px) { .wk-stats-grid { grid-template-columns: 1fr 1fr; } }
.wk-stats-grid strong {
  display: block; color: var(--wk-gold-soft); font-size: clamp(1.3rem, 3vw, 1.85rem);
  font-family: var(--wk-display); font-weight: 800;
}
.wk-stats-grid span { color: rgba(255,255,255,0.78); font-size: 0.88rem; }

.wk-testimonials .wk-section-sub { margin-bottom: 0; }
.wk-testi-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
  flex-wrap: wrap;
}
.wk-testi-controls { display: flex; gap: 0.5rem; }
.wk-testi-nav {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(11,31,58,0.12);
  background: #fff; color: var(--wk-navy);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.wk-testi-nav:hover {
  background: var(--wk-navy); color: #fff; border-color: var(--wk-navy);
}
.wk-testi-slider { position: relative; }
.wk-testi-viewport {
  overflow: hidden;
  margin: 0 -0.15rem;
  padding: 0.15rem;
}
.wk-testi-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.wk-testi-card {
  flex: 0 0 100%;
  max-width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem 1.2rem 1.35rem;
  border: 1px solid rgba(11,31,58,0.06);
  box-shadow: 0 12px 30px rgba(11,31,58,0.06);
  box-sizing: border-box;
  min-height: 180px;
}
@media (min-width: 768px) {
  .wk-testi-card { flex-basis: calc((100% - 1rem) / 2); max-width: calc((100% - 1rem) / 2); }
}
@media (min-width: 1100px) {
  .wk-testi-card { flex-basis: calc((100% - 2rem) / 3); max-width: calc((100% - 2rem) / 3); }
}
.wk-testi-top { display: flex; gap: 0.85rem; align-items: center; margin-bottom: 0.85rem; }
.wk-testi-top img {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--wk-gold-soft); flex-shrink: 0;
}
.wk-testi-top strong { display: block; color: var(--wk-navy); font-size: 0.98rem; }
.wk-testi-top span { display: block; color: var(--wk-muted); font-size: 0.8rem; }
.wk-testi-card p { margin: 0; color: var(--wk-charcoal); font-size: 0.94rem; line-height: 1.55; }
.wk-testi-card .wk-stars { color: var(--wk-gold); font-size: 0.82rem; letter-spacing: 0.04em; margin-top: 0.2rem; }
.wk-testi-dots {
  display: flex; justify-content: center; gap: 0.4rem;
  margin-top: 1.15rem;
}
.wk-testi-dot {
  width: 8px; height: 8px; border-radius: 999px; border: 0;
  background: rgba(11,31,58,0.18); cursor: pointer; padding: 0;
  transition: width 0.2s ease, background 0.2s ease;
}
.wk-testi-dot.is-active { width: 22px; background: var(--wk-teal); }
@media (max-width: 575.98px) {
  .wk-testi-nav { width: 38px; height: 38px; }
  .wk-testi-card { min-height: 160px; padding: 1.1rem; }
}

.wk-cta-band {
  background: linear-gradient(120deg, #061526 0%, #0B1F3A 45%, #145a5c 100%);
  padding: 2.75rem 0;
}
.wk-cta-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 1.25rem; flex-wrap: wrap;
}
.wk-cta-band h2 { color: #fff !important; margin: 0 0 0.35rem; font-size: 1.55rem; }
.wk-cta-band p { color: rgba(255,255,255,0.85) !important; margin: 0; }

.wk-qr-item {
  background: var(--wk-offwhite);
  border: 1px solid rgba(11,31,58,0.06);
  border-radius: 12px;
  padding: 1rem;
  height: 100%;
}
.wk-qr-item strong { color: var(--wk-navy); }
.wk-account-nav a.is-active {
  background: rgba(26,138,140,0.12) !important;
  color: var(--wk-teal) !important;
  font-weight: 600;
}

/* ??? Shop page ??? */
.wk-shop-banner {
  position: relative;
  min-height: min(42vw, 320px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(3,11,20,0.92) 0%, rgba(6,21,38,0.72) 45%, rgba(6,21,38,0.35) 100%),
    var(--wk-shop-banner) center/cover no-repeat;
  overflow: hidden;
}
.wk-shop-banner-inner {
  position: relative;
  z-index: 1;
  padding: 2.75rem 0 2.25rem;
  max-width: 36rem;
}
.wk-shop-banner h1 {
  color: #fff !important;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
}
.wk-shop-banner p { color: rgba(255,255,255,0.9) !important; margin: 0; max-width: 32rem; }

.wk-shop { padding: 1.75rem 0 3rem; }
.wk-shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 991.98px) {
  .wk-shop-layout { grid-template-columns: 1fr; }
}

.wk-shop-filters {
  position: sticky;
  top: calc(var(--wk-header-h) + 12px);
}
.wk-filter-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid rgba(11,31,58,0.1);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-weight: 600;
  color: var(--wk-navy);
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(11,31,58,0.06);
}
.wk-filter-toggle .wk-filter-chevron { transition: transform 0.25s ease; color: var(--wk-muted); }
.wk-filter-toggle.is-open .wk-filter-chevron { transform: rotate(180deg); }

.wk-filter-panel {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(11,31,58,0.07);
  box-shadow: 0 12px 32px rgba(11,31,58,0.06);
  padding: 1.1rem 1.15rem 1.25rem;
}
@media (max-width: 991.98px) {
  .wk-shop-filters { position: static; }
  .wk-filter-panel {
    display: none;
    margin-top: 0.65rem;
  }
  .wk-filter-panel.is-open { display: block; }
}
@media (min-width: 992px) {
  .wk-filter-toggle { display: none !important; }
  .wk-filter-panel { display: block !important; }
}

.wk-filter-block { margin-bottom: 1.15rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(11,31,58,0.06); }
.wk-filter-block:last-of-type { border-bottom: 0; margin-bottom: 0.75rem; padding-bottom: 0; }
.wk-filter-block h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--wk-muted);
  margin: 0 0 0.65rem;
  font-weight: 700;
}
.wk-filter-input {
  width: 100%;
  border: 1.5px solid rgba(11,31,58,0.12);
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  background: #fff;
  color: var(--wk-charcoal);
  font-size: 0.92rem;
}
.wk-filter-cats { display: flex; flex-direction: column; gap: 0.25rem; }
.wk-filter-cat {
  display: block;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  color: var(--wk-charcoal) !important;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}
.wk-filter-cat:hover,
.wk-filter-cat.is-active {
  background: rgba(26,138,140,0.1);
  color: var(--wk-teal) !important;
}
.wk-price-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.4rem;
  align-items: center;
}
.wk-price-row span { color: var(--wk-muted); }
.wk-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--wk-charcoal);
  margin-bottom: 0.45rem;
  cursor: pointer;
}
.wk-filter-actions { margin-top: 0.5rem; }

.wk-shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.15rem;
  flex-wrap: wrap;
}
.wk-shop-toolbar strong { color: var(--wk-navy); }
.wk-shop-toolbar-sort .wk-filter-input { min-width: 180px; width: auto; }

.wk-shop-results .template-pagination a,
.wk-shop-results .template-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 0.6rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(11,31,58,0.08);
  color: var(--wk-navy);
  text-decoration: none;
  font-size: 0.88rem;
}
.wk-shop-results .template-pagination .active span,
.wk-shop-results .template-pagination strong {
  background: var(--wk-navy);
  color: #fff;
  border-color: var(--wk-navy);
}

.wk-review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 767.98px) { .wk-review-grid { grid-template-columns: 1fr; } }
.wk-review-card {
  background: #fff;
  border: 1px solid rgba(11,31,58,0.06);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 22px rgba(11,31,58,0.05);
}
.wk-review-card .wk-review-top {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}
.wk-review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--wk-teal), var(--wk-navy));
  color: #fff; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wk-review-card strong { display: block; color: var(--wk-navy); font-size: 0.95rem; }
.wk-review-city { display: block; color: var(--wk-muted); font-size: 0.78rem; margin-top: 0.1rem; }
.wk-review-card p { margin: 0 0 0.4rem; color: var(--wk-charcoal); font-size: 0.92rem; line-height: 1.55; }

/* ??? Reseller home + detail ??? */
.wk-shell .wk-reseller-home { scroll-margin-top: calc(var(--wk-header-h) + 16px); }
.wk-reseller-home-grid {
  display: grid !important;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 991.98px) {
  .wk-reseller-home-grid { grid-template-columns: 1fr !important; }
}
.wk-reseller-home-photos {
  display: grid !important;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  min-height: 280px;
}
.wk-reseller-home-photo {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, #e8eef5, #d5e4e6);
  border: 1px solid rgba(11,31,58,0.06);
}
.wk-reseller-home-photo.is-main { grid-row: 1 / span 2; }
.wk-reseller-home-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  min-height: 120px;
}
.wk-reseller-home-ph {
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--wk-muted);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 1rem;
}
.wk-reseller-home-ph i { color: var(--wk-teal); font-size: 1.4rem; margin-bottom: 0.35rem; }

.wk-reseller-page { padding-bottom: 3rem; }
.wk-reseller-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 3.4rem 0 3.6rem;
  background:
    linear-gradient(120deg, rgba(6,21,38,0.94) 0%, rgba(11,31,58,0.84) 48%, rgba(20,90,92,0.78) 100%),
    var(--wk-rs-hero, none) center/cover no-repeat,
    linear-gradient(145deg, #061526, #0B1F3A 50%, #0e4a4c);
}
.wk-reseller-hero::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 44px;
  background: linear-gradient(to bottom, transparent, var(--wk-bg));
  pointer-events: none;
}
.wk-reseller-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.wk-reseller-hero h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  font-weight: 800;
  color: #fff !important;
  line-height: 1.15;
}
.wk-reseller-lead {
  margin: 0 0 1.35rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.84);
  max-width: 36rem;
}
.wk-reseller-body { margin-top: 0.25rem; position: relative; z-index: 2; }
.wk-reseller-intro {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(11,31,58,0.07);
  box-shadow: 0 12px 30px rgba(11,31,58,0.05);
  padding: 1.35rem 1.4rem;
  margin-bottom: 2rem;
  color: var(--wk-muted);
  line-height: 1.65;
}
.wk-reseller-intro p { margin: 0; }
.wk-reseller-sec { margin-bottom: 2.4rem; }
.wk-reseller-sec h2 {
  color: var(--wk-navy) !important;
  font-size: 1.45rem;
  margin: 0 0 1rem;
}
.wk-reseller-cards {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 991.98px) {
  .wk-reseller-cards { grid-template-columns: 1fr !important; }
}
.wk-reseller-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(11,31,58,0.07);
  box-shadow: 0 12px 30px rgba(11,31,58,0.05);
  padding: 1.2rem;
  overflow: hidden;
}
.wk-reseller-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.85rem;
  display: block;
}
.wk-reseller-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(26,138,140,0.12); color: var(--wk-teal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem; font-size: 1.1rem;
}
.wk-reseller-card h3 {
  margin: 0 0 0.4rem;
  color: var(--wk-navy) !important;
  font-size: 1.08rem;
}
.wk-reseller-card p { margin: 0; color: var(--wk-muted); font-size: 0.94rem; line-height: 1.55; }

.wk-reseller-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.wk-reseller-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.9rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(11,31,58,0.07);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 10px 26px rgba(11,31,58,0.04);
}
.wk-reseller-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--wk-navy); color: var(--wk-gold-soft);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: var(--wk-display);
}
.wk-reseller-steps h3 {
  margin: 0 0 0.35rem;
  color: var(--wk-navy) !important;
  font-size: 1.05rem;
}
.wk-reseller-steps p { margin: 0; color: var(--wk-muted); font-size: 0.94rem; line-height: 1.55; }
.wk-reseller-step-img {
  margin-top: 0.75rem;
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.wk-reseller-req {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 991.98px) {
  .wk-reseller-req { grid-template-columns: 1fr !important; }
}
.wk-reseller-req article {
  background: #fff;
  border-radius: 16px;
  padding: 1.15rem;
  border: 1px solid rgba(11,31,58,0.07);
}
.wk-reseller-req h3 { margin: 0 0 0.4rem; color: var(--wk-navy) !important; font-size: 1.02rem; }
.wk-reseller-req p { margin: 0; color: var(--wk-muted); font-size: 0.93rem; line-height: 1.55; }

.wk-reseller-notes { display: grid; gap: 0.75rem; }
.wk-reseller-note {
  background: linear-gradient(120deg, #EEF2F6, #e6f4f4);
  border-radius: 14px;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(26,138,140,0.12);
}
.wk-reseller-note strong { display: block; color: var(--wk-navy); margin-bottom: 0.3rem; }
.wk-reseller-note p { margin: 0; color: var(--wk-muted); font-size: 0.93rem; }

.wk-reseller-gallery {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
@media (max-width: 767.98px) {
  .wk-reseller-gallery { grid-template-columns: 1fr 1fr !important; }
}
.wk-reseller-gallery figure { margin: 0; }
.wk-reseller-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
.wk-reseller-gallery figcaption {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--wk-muted);
}

.wk-reseller-cta {
  margin-top: 0.5rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: linear-gradient(120deg, #061526, #0B1F3A 55%, #145a5c);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.wk-reseller-cta h2 { margin: 0 0 0.35rem; color: #fff !important; font-size: 1.35rem; }
.wk-reseller-cta p { margin: 0; color: rgba(255,255,255,0.85); max-width: 36rem; }
.wk-reseller-contact {
  list-style: none; margin: 0.75rem 0 0; padding: 0;
  color: rgba(255,255,255,0.88); font-size: 0.92rem;
}
.wk-reseller-contact a { color: var(--wk-gold-soft) !important; }
