/* KHUTWATEK | RAED THEME ENHANCEMENTS */
:root {
  --kh-navy: #001e4a;
  --kh-navy-dark: #00142f;
  --kh-gold: #c48600;
  --kh-gold-light: #dea83c;
  --kh-white: #ffffff;
  --kh-off-white: #f8f9fb;
  --kh-text: #14213a;
  --kh-muted: #667085;
  --kh-border: #e6e9ef;
  --kh-success: #0f8b6d;
  --kh-radius-sm: 14px;
  --kh-radius: 24px;
  --kh-radius-lg: 34px;
  --kh-shadow: 0 18px 55px rgba(0, 30, 74, 0.12);
  --kh-shadow-hover: 0 26px 75px rgba(0, 30, 74, 0.19);
  --kh-container: 1200px;
}

.kh-page,
.kh-page * {
  box-sizing: border-box;
}

.kh-page {
  direction: rtl;
  color: var(--kh-text);
  background: var(--kh-white);
  font-family: Tajawal, "IBM Plex Sans Arabic", "DIN Next Arabic", Arial, sans-serif;
  line-height: 1.75;
  overflow: hidden;
}

.kh-page img {
  display: block;
  max-width: 100%;
}

.kh-container {
  width: min(var(--kh-container), calc(100% - 40px));
  margin-inline: auto;
}

.kh-section {
  position: relative;
  padding: 96px 0;
}

.kh-section--soft {
  background: var(--kh-off-white);
}

.kh-section--navy {
  color: var(--kh-white);
  background:
    radial-gradient(circle at 12% 15%, rgba(222, 168, 60, 0.13), transparent 34%),
    linear-gradient(135deg, var(--kh-navy-dark), var(--kh-navy));
}

.kh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--kh-gold);
  font-size: 14px;
  font-weight: 800;
}

.kh-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.kh-section-head {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.kh-section-head h2,
.kh-content h2 {
  margin: 0 0 16px;
  color: var(--kh-navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.kh-section--navy .kh-section-head h2,
.kh-section--navy .kh-content h2 {
  color: var(--kh-white);
}

.kh-section-head p,
.kh-content p {
  margin: 0;
  color: var(--kh-muted);
  font-size: clamp(16px, 1.8vw, 19px);
}

.kh-section--navy .kh-section-head p,
.kh-section--navy .kh-content p {
  color: rgba(255, 255, 255, 0.78);
}

/* KHUTWATEK ANNOUNCEMENT */
.kh-announcement {
  padding: 10px 20px;
  color: var(--kh-white);
  background: var(--kh-navy-dark);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.kh-announcement strong {
  color: var(--kh-gold-light);
}

/* KHUTWATEK HEADER */
.kh-header {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid rgba(230, 233, 239, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.kh-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.kh-brand {
  flex: 0 0 auto;
  width: 238px;
}

.kh-brand img {
  width: 100%;
  height: auto;
}

.kh-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.kh-nav a {
  position: relative;
  color: var(--kh-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.kh-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--kh-gold);
  transform: scaleX(0);
  transition: transform 0.22s ease;
}

.kh-nav a:hover::after,
.kh-nav a:focus-visible::after {
  transform: scaleX(1);
}

.kh-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.kh-cart {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--kh-border);
  border-radius: 50%;
  color: var(--kh-navy);
  background: var(--kh-white);
  text-decoration: none;
}

.kh-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--kh-border);
  border-radius: 12px;
  color: var(--kh-navy);
  background: var(--kh-white);
  font-size: 22px;
  cursor: pointer;
}

.kh-menu-toggle:focus-visible,
.kh-cart:focus-visible,
.kh-nav a:focus-visible {
  outline: 3px solid rgba(201, 154, 58, 0.45);
  outline-offset: 3px;
}

/* KHUTWATEK BUTTONS */
.kh-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.kh-btn:hover,
.kh-btn:focus-visible {
  transform: translateY(-2px);
}

.kh-btn--gold {
  color: var(--kh-navy-dark);
  background: linear-gradient(135deg, var(--kh-gold-light), var(--kh-gold));
  box-shadow: 0 12px 30px rgba(196, 134, 0, 0.25);
}

.kh-btn--gold:hover,
.kh-btn--gold:focus-visible {
  box-shadow: 0 18px 42px rgba(196, 134, 0, 0.34);
}

.kh-btn--outline {
  color: var(--kh-white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.07);
}

.kh-btn--navy {
  color: var(--kh-white);
  background: var(--kh-navy);
  box-shadow: 0 12px 30px rgba(0, 30, 74, 0.2);
}

/* KHUTWATEK HERO */
.kh-hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  isolation: isolate;
  color: var(--kh-white);
  background: var(--kh-navy-dark);
}

.kh-hero-picture,
.kh-hero-picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.kh-hero-picture img {
  object-fit: cover;
}

.kh-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, transparent 35%, rgba(0, 20, 47, 0.25) 55%, rgba(0, 20, 47, 0.82) 100%);
}

.kh-hero-content {
  position: relative;
  z-index: 2;
  width: min(610px, 52%);
  margin-inline-start: auto;
  padding: 90px 0;
}

.kh-hero h1 {
  margin: 0 0 20px;
  color: var(--kh-white);
  font-size: clamp(40px, 5.4vw, 70px);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.kh-hero h1 span {
  color: var(--kh-gold-light);
}

.kh-hero-description {
  max-width: 570px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
}

.kh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.kh-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.kh-hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 800;
}

.kh-hero-points li::before {
  content: "✓";
  color: var(--kh-gold-light);
}

/* KHUTWATEK TRUST STRIP */
.kh-trust-wrap {
  position: relative;
  z-index: 5;
  margin-top: -34px;
}

.kh-trust {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--kh-border);
  border-radius: var(--kh-radius);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--kh-shadow);
}

.kh-trust-item {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px;
  border-radius: var(--kh-radius-sm);
  color: var(--kh-navy);
  background: var(--kh-off-white);
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.kh-trust-item img {
  width: 30px;
  height: 30px;
}

/* KHUTWATEK SPLIT SECTIONS */
.kh-split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 64px;
}

.kh-split--reverse .kh-media {
  order: 2;
}

.kh-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--kh-radius-lg);
  box-shadow: var(--kh-shadow);
}

.kh-media picture,
.kh-media img {
  width: 100%;
}

.kh-content p + p {
  margin-top: 16px;
}

.kh-check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.kh-check-list li {
  position: relative;
  padding-inline-start: 34px;
  color: var(--kh-text);
  font-weight: 700;
}

.kh-check-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  top: 1px;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--kh-white);
  background: var(--kh-gold);
  font-size: 13px;
}

/* KHUTWATEK PACKAGES */
.kh-packages-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.kh-package {
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--kh-border);
  border-radius: 28px;
  background: var(--kh-white);
  box-shadow: 0 13px 42px rgba(0, 30, 74, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.kh-package:hover {
  transform: translateY(-8px);
  border-color: rgba(196, 134, 0, 0.55);
  box-shadow: var(--kh-shadow-hover);
}

.kh-package:nth-child(4),
.kh-package:nth-child(5) {
  grid-column: span 6;
}

.kh-package--featured {
  border: 2px solid var(--kh-gold);
  box-shadow: 0 24px 70px rgba(196, 134, 0, 0.2);
}

.kh-package--executive {
  color: var(--kh-white);
  border-color: rgba(222, 168, 60, 0.6);
  background: linear-gradient(155deg, var(--kh-navy-dark), var(--kh-navy));
}

.kh-package-badges {
  position: absolute;
  z-index: 3;
  top: 14px;
  inset-inline-start: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.kh-badge {
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--kh-navy-dark);
  background: linear-gradient(135deg, var(--kh-gold-light), var(--kh-gold));
  font-size: 12px;
  font-weight: 900;
}

.kh-package-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--kh-navy-dark);
}

.kh-package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kh-package-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 25px;
}

.kh-package h3 {
  margin: 0 0 8px;
  color: var(--kh-navy);
  font-size: 25px;
  line-height: 1.3;
}

.kh-package--executive h3 {
  color: var(--kh-white);
}

.kh-package-subtitle {
  min-height: 56px;
  margin: 0 0 18px;
  color: var(--kh-muted);
  font-size: 14px;
}

.kh-package--executive .kh-package-subtitle {
  color: rgba(255, 255, 255, 0.72);
}

.kh-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.kh-price strong {
  color: var(--kh-navy);
  font-size: 34px;
}

.kh-package--executive .kh-price strong {
  color: var(--kh-gold-light);
}

.kh-price del {
  color: var(--kh-muted);
  font-size: 15px;
}

.kh-duration {
  margin-bottom: 18px;
  color: var(--kh-gold);
  font-size: 13px;
  font-weight: 900;
}

.kh-package-features {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.kh-package-features li {
  position: relative;
  padding-inline-start: 24px;
  font-size: 14px;
  font-weight: 700;
}

.kh-package-features li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--kh-gold);
  font-weight: 900;
}

.kh-package-body .kh-btn {
  width: 100%;
  margin-top: auto;
}

/* KHUTWATEK COMPARISON */
.kh-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--kh-border);
  border-radius: var(--kh-radius);
  background: var(--kh-white);
  box-shadow: var(--kh-shadow);
}

.kh-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.kh-table th,
.kh-table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--kh-border);
  text-align: center;
  font-size: 14px;
}

.kh-table th {
  color: var(--kh-white);
  background: var(--kh-navy);
  font-weight: 900;
}

.kh-table th:first-child,
.kh-table td:first-child {
  position: sticky;
  inset-inline-start: 0;
  z-index: 2;
  text-align: start;
}

.kh-table td:first-child {
  color: var(--kh-navy);
  background: var(--kh-off-white);
  font-weight: 900;
}

.kh-table .kh-yes {
  color: var(--kh-success);
  font-weight: 900;
}

.kh-table .kh-no {
  color: #a0a7b4;
}

/* KHUTWATEK FEATURES */
.kh-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.kh-feature {
  padding: 25px;
  border: 1px solid var(--kh-border);
  border-radius: var(--kh-radius);
  background: var(--kh-white);
  box-shadow: 0 10px 32px rgba(0, 30, 74, 0.07);
}

.kh-feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.kh-feature h3 {
  margin: 0 0 8px;
  color: var(--kh-navy);
  font-size: 18px;
}

.kh-feature p {
  margin: 0;
  color: var(--kh-muted);
  font-size: 14px;
}

/* KHUTWATEK STEPS */
.kh-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: kh-step;
}

.kh-step {
  position: relative;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--kh-radius);
  background: rgba(255, 255, 255, 0.06);
  counter-increment: kh-step;
}

.kh-step::before {
  content: counter(kh-step, decimal-leading-zero);
  display: block;
  margin-bottom: 18px;
  color: var(--kh-gold-light);
  font-size: 28px;
  font-weight: 900;
}

.kh-step h3 {
  margin: 0 0 8px;
  color: var(--kh-white);
  font-size: 19px;
}

.kh-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* KHUTWATEK BEFORE AFTER */
.kh-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.kh-ba-card {
  padding: 32px;
  border-radius: var(--kh-radius);
}

.kh-ba-card h3 {
  margin: 0 0 18px;
  font-size: 26px;
}

.kh-ba-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kh-ba-card li {
  position: relative;
  padding-inline-start: 26px;
  font-weight: 700;
}

.kh-ba-card--before {
  color: #4f5664;
  border: 1px solid #dfe3e9;
  background: #eef0f3;
}

.kh-ba-card--before li::before {
  content: "×";
  position: absolute;
  inset-inline-start: 0;
  color: #8b93a1;
}

.kh-ba-card--after {
  color: var(--kh-white);
  background: linear-gradient(145deg, var(--kh-navy-dark), var(--kh-navy));
  box-shadow: var(--kh-shadow);
}

.kh-ba-card--after h3,
.kh-ba-card--after li::before {
  color: var(--kh-gold-light);
}

.kh-ba-card--after li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
}

/* KHUTWATEK FAQ */
.kh-faq {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.kh-faq-item {
  overflow: hidden;
  border: 1px solid var(--kh-border);
  border-radius: 18px;
  background: var(--kh-white);
}

.kh-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 21px 23px;
  border: 0;
  color: var(--kh-navy);
  background: transparent;
  text-align: start;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.kh-faq-question::after {
  content: "+";
  color: var(--kh-gold);
  font-size: 25px;
  transition: transform 0.2s ease;
}

.kh-faq-answer {
  display: none;
  padding: 0 23px 22px;
  color: var(--kh-muted);
}

.kh-faq-item.is-open .kh-faq-answer {
  display: block;
}

.kh-faq-item.is-open .kh-faq-question::after {
  transform: rotate(45deg);
}

/* KHUTWATEK FINAL CTA */
.kh-final-cta {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  isolation: isolate;
  color: var(--kh-white);
  background: var(--kh-navy-dark);
}

.kh-final-cta picture,
.kh-final-cta picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.kh-final-cta picture img {
  object-fit: cover;
}

.kh-final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, transparent 30%, rgba(0, 20, 47, 0.3) 52%, rgba(0, 20, 47, 0.87) 100%);
}

.kh-final-content {
  position: relative;
  z-index: 2;
  width: min(620px, 54%);
  margin-inline-start: auto;
}

.kh-final-content h2 {
  margin: 0 0 16px;
  color: var(--kh-white);
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.2;
}

.kh-final-content p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

/* KHUTWATEK FOOTER */
.kh-footer {
  padding: 66px 0 26px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--kh-navy-dark);
}

.kh-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
}

.kh-footer-logo {
  width: 190px;
  margin-bottom: 18px;
}

.kh-footer h3 {
  margin: 0 0 16px;
  color: var(--kh-white);
  font-size: 17px;
}

.kh-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
}

.kh-footer-bottom {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 13px;
}

/* KHUTWATEK REVEAL */
.kh-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.kh-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* KHUTWATEK TABLET */
@media (max-width: 1050px) {
  .kh-header-inner {
    position: relative;
  }

  .kh-nav {
    display: none;
    position: absolute;
    z-index: 40;
    inset-inline: 0;
    top: calc(100% + 10px);
    padding: 14px;
    border: 1px solid var(--kh-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 18px 50px rgba(0, 30, 74, 0.16);
  }

  .kh-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .kh-nav a {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .kh-nav a:hover,
  .kh-nav a:focus-visible {
    background: var(--kh-soft);
  }

  .kh-nav a::after {
    display: none;
  }

  .kh-menu-toggle {
    display: grid;
    place-items: center;
  }

  .kh-menu-toggle[aria-expanded="true"] {
    color: var(--kh-white);
    border-color: var(--kh-navy);
    background: var(--kh-navy);
  }

  .kh-trust {
    grid-template-columns: repeat(3, 1fr);
  }

  .kh-split {
    gap: 38px;
  }

  .kh-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kh-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* KHUTWATEK MOBILE */
@media (max-width: 760px) {
  .kh-container {
    width: min(100% - 28px, var(--kh-container));
  }

  .kh-section {
    padding: 68px 0;
  }

  .kh-header-inner {
    min-height: 68px;
  }

  .kh-brand {
    width: 180px;
  }

  .kh-header-actions .kh-btn {
    display: none;
  }

  .kh-hero {
    min-height: 820px;
    align-items: flex-start;
  }

  .kh-hero::after {
    background: linear-gradient(180deg, rgba(0, 20, 47, 0.9) 0%, rgba(0, 20, 47, 0.35) 50%, transparent 78%);
  }

  .kh-hero-content {
    width: 100%;
    margin: 0;
    padding: 58px 0 0;
    text-align: center;
  }

  .kh-hero h1 {
    font-size: clamp(36px, 10.7vw, 52px);
  }

  .kh-hero-actions,
  .kh-hero-points {
    justify-content: center;
  }

  .kh-hero-actions .kh-btn {
    flex: 1 1 100%;
  }

  .kh-trust-wrap {
    margin-top: -24px;
  }

  .kh-trust {
    grid-template-columns: repeat(2, 1fr);
    padding: 12px;
  }

  .kh-trust-item {
    min-height: 76px;
    flex-direction: column;
  }

  .kh-split,
  .kh-before-after,
  .kh-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .kh-split--reverse .kh-media {
    order: initial;
  }

  .kh-content {
    text-align: center;
  }

  .kh-check-list {
    text-align: start;
  }

  .kh-packages-grid {
    grid-template-columns: 1fr;
  }

  .kh-package,
  .kh-package:nth-child(4),
  .kh-package:nth-child(5) {
    grid-column: auto;
  }

  .kh-feature-grid,
  .kh-steps {
    grid-template-columns: 1fr;
  }

  .kh-final-cta {
    min-height: 760px;
    align-items: flex-start;
  }

  .kh-final-cta::after {
    background: linear-gradient(180deg, rgba(0, 20, 47, 0.93), rgba(0, 20, 47, 0.32) 55%, transparent 82%);
  }

  .kh-final-content {
    width: 100%;
    margin: 0;
    padding-top: 60px;
    text-align: center;
  }

  .kh-final-content .kh-btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .kh-footer {
    text-align: center;
  }

  .kh-footer-logo {
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kh-page *,
  .kh-page *::before,
  .kh-page *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
  }

  .kh-reveal {
    opacity: 1;
    transform: none;
  }
}

/* KHUTWATEK | MOBILE HERO BANNERS — SHOW FULL IMAGE */
@media (max-width: 767px) {
  .s-block--hero-slider,
  .s-block--hero-slider .s-slider-container,
  .s-block--hero-slider .s-slider-swiper-wrapper {
    min-height: 0 !important;
  }

  .s-block--hero-slider .swiper-slide {
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 15 / 8;
  }

  .s-block--hero-slider .swiper-slide > .absolute.inset-0 {
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #f7f4ed;
  }

  .s-block--hero-slider .home-slider__content {
    min-height: 0 !important;
    height: 100% !important;
    padding-block: 0 !important;
  }
}


/* KHUTWATEK | GLOBAL POLISH V1 */
:root {
  --kw-navy:#071d3f;
  --kw-navy-2:#0d3268;
  --kw-gold:#c7a254;
  --kw-gold-hover:#ad8736;
  --kw-cream:#f8f6f1;
  --kw-ink:#15243a;
  --kw-muted:#667085;
  --kw-border:rgba(7,29,63,.11);
  --kw-shadow:0 16px 42px rgba(7,29,63,.10);
  --kw-radius:22px;
}
body{color:var(--kw-ink);background:#fff;}
:where(a,button,input,select,textarea):focus-visible{outline:3px solid rgba(199,162,84,.55);outline-offset:3px;}
.store-header{background:rgba(255,255,255,.96);border-bottom:1px solid var(--kw-border);box-shadow:0 8px 28px rgba(7,29,63,.07);-webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);}
.store-header .top-navbar{background:#f8fafc;border-bottom:1px solid rgba(7,29,63,.07);}
.store-header .main-nav-container{min-height:72px;}
.store-header .s-search-input{min-height:44px;background:#f8fafc;border:1px solid var(--kw-border);border-radius:14px;}
.store-header :is(a,button){transition:color .2s ease,background-color .2s ease,border-color .2s ease,transform .2s ease;}
.store-header :is(a,button):hover{color:var(--kw-gold-hover);}
.s-products-list-wrapper.s-products-list-vertical-cards{gap:clamp(14px,2vw,24px)!important;}
.s-products-list-wrapper .s-product-card-entry{height:100%;overflow:hidden;background:#fff;border:1px solid var(--kw-border)!important;border-radius:var(--kw-radius)!important;box-shadow:0 8px 26px rgba(7,29,63,.07);transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;}
.s-products-list-wrapper .s-product-card-image{overflow:hidden;background:var(--kw-cream);}
.s-products-list-wrapper .s-product-card-image-cover{transition:transform .4s ease;}
.s-products-list-wrapper .s-product-card-content-footer :is(button,.s-button-element){width:100%;min-height:46px;color:#fff!important;background:var(--kw-navy)!important;border-color:var(--kw-navy)!important;border-radius:13px!important;font-weight:700;}
.s-products-list-wrapper .s-product-card-content-footer :is(button,.s-button-element):hover{color:var(--kw-navy)!important;background:var(--kw-gold)!important;border-color:var(--kw-gold)!important;}
@media(hover:hover){
 .s-products-list-wrapper .s-product-card-entry:hover{transform:translateY(-5px);border-color:rgba(199,162,84,.48)!important;box-shadow:var(--kw-shadow);}
 .s-products-list-wrapper .s-product-card-entry:hover .s-product-card-image-cover{transform:scale(1.035);}
}
@media(max-width:767px){
 .s-products-list-wrapper.s-products-list-vertical-cards>custom-salla-product-card:last-child:nth-child(odd){grid-column:1/-1;justify-self:center;width:clamp(165px,48%,220px);}
}
.s-block--fixed-banner .banner--fixed{overflow:hidden;border:1px solid rgba(199,162,84,.20);border-radius:28px;box-shadow:var(--kw-shadow);}
.s-block--fixed-banner .banner--fixed img{display:block;width:100%;height:auto;}
@media(max-width:767px){.s-block--fixed-banner .banner--fixed{border-radius:18px;}}
.store-footer{color:#dbe4f1;background:linear-gradient(145deg,#051733 0%,#0a2857 100%);}
.store-footer__inner{padding-block:clamp(44px,6vw,72px);background:transparent;border-top:1px solid rgba(255,255,255,.08);}
.store-footer h3{color:#fff;font-weight:800;}
.store-footer .s-menu-footer-item a,.store-footer .s-contacts-item{color:#dbe4f1;}
.store-footer .s-menu-footer-item a{display:inline-flex;align-items:center;min-height:38px;transition:color .2s ease,transform .2s ease;}
.store-footer .s-menu-footer-item a:hover{color:var(--kw-gold);transform:translateX(-3px);}
.store-footer .s-trust-badges-wrapper,.store-footer .s-payments-list{padding:8px;background:rgba(255,255,255,.96);border-radius:14px;}
.store-footer__copyright{color:#b9c7da;background:#031126;border-top:1px solid rgba(255,255,255,.07);}
@media(prefers-reduced-motion:reduce){
 .store-header *,.s-products-list-wrapper *,.store-footer *{scroll-behavior:auto!important;transition-duration:.01ms!important;animation-duration:.01ms!important;}
}



/* KHUTWATEK | GLOBAL POLISH V1.1 FIXES */
@media(max-width:767px){
 .s-products-list-wrapper.s-products-list-vertical-cards > custom-salla-product-card:nth-of-type(odd):last-of-type{
   grid-column:1/-1;
   justify-self:center;
   width:calc(50% - clamp(7px,1vw,12px));
   max-width:none;
 }
}
.store-footer a.s-menu-footer-item{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  color:#dbe4f1!important;
  transition:color .2s ease,transform .2s ease;
}
.store-footer a.s-menu-footer-item:hover{color:var(--kw-gold)!important;transform:translateX(-3px);}
.store-footer a.flex.items-center{color:#fff!important;}
.store-footer__copyright a{color:var(--kw-gold)!important;}
.s-products-list-wrapper .s-product-card-content-footer :is(button,.s-button-element)[disabled],
.s-products-list-wrapper .s-product-card-content-footer :is(button,.s-button-element).is-disabled{
  opacity:.55;
  cursor:not-allowed;
  transform:none!important;
}


/* =========================================================
   KHUTWATEK | PREMIUM VISUAL SYSTEM V2
   Header, surfaces, motion and high-contrast footer
   ========================================================= */

:root {
  --kw-navy: #061a39;
  --kw-navy-2: #0a326a;
  --kw-navy-3: #124a8c;
  --kw-navy-deep: #020b1b;
  --kw-gold: #d3ad59;
  --kw-gold-bright: #f0d48e;
  --kw-gold-dark: #916718;
  --kw-page: #f1f4f8;
  --kw-cream: #faf7f0;
  --kw-surface: #ffffff;
  --kw-ink: #12223a;
  --kw-muted: #536174;
  --kw-footer-text: #f7f9fc;
  --kw-footer-muted: #d9e3f0;
  --kw-border: rgba(6, 26, 57, .12);
  --kw-shadow-sm: 0 8px 24px rgba(6, 26, 57, .08);
  --kw-shadow-md: 0 18px 48px rgba(6, 26, 57, .13);
  --kw-motion: cubic-bezier(.22, 1, .36, 1);
}

html,
body {
  background-color: var(--kw-page) !important;
}

main {
  background-color: var(--kw-page) !important;
  background-image:
    radial-gradient(70rem 34rem at 105% 2%, rgba(211, 173, 89, .16), transparent 58%),
    radial-gradient(60rem 32rem at -5% 34%, rgba(18, 74, 140, .10), transparent 60%),
    linear-gradient(180deg, #fbfaf7 0%, #f1f4f8 52%, #f8f5ee 100%) !important;
}

/* Premium layered header */
.store-header {
  isolation: isolate;
  color: var(--kw-navy);
  background: transparent !important;
  border-bottom: 0 !important;
  box-shadow: 0 14px 40px rgba(6, 26, 57, .14) !important;
  -webkit-backdrop-filter: blur(12px) saturate(125%);
  backdrop-filter: blur(12px) saturate(125%);
}

.store-header .top-navbar {
  color: #f7f9fc !important;
  background:
    radial-gradient(circle at 84% 0, rgba(211, 173, 89, .24), transparent 18rem),
    linear-gradient(100deg, #031127 0%, var(--kw-navy) 48%, var(--kw-navy-2) 100%) !important;
  border-bottom: 1px solid rgba(240, 212, 142, .25) !important;
}

.store-header .top-navbar :is(a, button, span) {
  color: #f7f9fc !important;
  opacity: 1 !important;
}

.store-header .top-navbar :is(a, button):hover {
  color: var(--kw-gold-bright) !important;
}

.store-header .top-navbar .s-search-input {
  min-height: 46px;
  color: #fff !important;
  caret-color: var(--kw-gold-bright);
  background: rgba(255, 255, 255, .10) !important;
  border: 1px solid rgba(240, 212, 142, .34) !important;
  border-radius: 15px !important;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, .10),
    0 8px 22px rgba(0, 0, 0, .10);
  transition: border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.store-header .top-navbar .s-search-input::placeholder {
  color: rgba(255, 255, 255, .72) !important;
}

.store-header .top-navbar .s-search-input:focus {
  background: rgba(255, 255, 255, .15) !important;
  border-color: var(--kw-gold-bright) !important;
  box-shadow:
    0 0 0 4px rgba(240, 212, 142, .16),
    0 10px 26px rgba(0, 0, 0, .14);
}

#mainnav.main-nav-container {
  position: relative;
  min-height: 82px !important;
  color: var(--kw-navy) !important;
  background:
    radial-gradient(circle at 10% 0, rgba(211, 173, 89, .17), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, .99), rgba(248, 246, 239, .98)) !important;
  border-bottom: 1px solid rgba(211, 173, 89, .42) !important;
  box-shadow: 0 12px 30px rgba(6, 26, 57, .09) !important;
}

#mainnav.main-nav-container::after {
  content: "";
  position: absolute;
  inset-inline: clamp(18px, 4vw, 72px);
  bottom: 0;
  height: 3px;
  z-index: 2;
  pointer-events: none;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--kw-gold) 22%,
    var(--kw-navy-3) 50%,
    var(--kw-gold) 78%,
    transparent
  );
  transform-origin: center;
}

#mainnav .navbar-brand {
  padding: 7px 11px;
  border: 1px solid rgba(211, 173, 89, .28);
  border-radius: 16px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 8px 22px rgba(6, 26, 57, .08);
}

#mainnav .navbar-brand img {
  filter: drop-shadow(0 5px 12px rgba(6, 26, 57, .12));
  transition: transform .25s var(--kw-motion), filter .25s ease;
}

#mainnav nav a,
#mainnav .main-menu li.root-level > a {
  position: relative;
  color: var(--kw-navy) !important;
  padding: 11px 13px !important;
  border-radius: 12px;
  font-weight: 750 !important;
  background-image: linear-gradient(90deg, var(--kw-gold), var(--kw-gold));
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: 0 2px;
  transition:
    color .2s ease,
    background-color .2s ease,
    background-size .25s var(--kw-motion),
    transform .2s var(--kw-motion);
}

#mainnav nav a:hover,
#mainnav .main-menu li.root-level > a:hover {
  color: var(--kw-navy-2) !important;
  background-color: rgba(211, 173, 89, .12);
  background-size: 62% 2px;
  transform: translateY(-1px);
}

#mainnav :is(.s-user-menu-login-btn, .s-cart-summary-wrapper) {
  min-width: 44px;
  min-height: 44px;
  padding-inline: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--kw-navy) !important;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(6, 26, 57, .12);
  border-radius: 14px;
  box-shadow: 0 7px 18px rgba(6, 26, 57, .08);
  transition:
    transform .2s var(--kw-motion),
    border-color .2s ease,
    box-shadow .2s ease,
    background-color .2s ease;
}

/* Page and section hierarchy */
body.index main > section.s-block.container {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-block: clamp(30px, 5vw, 68px) !important;
  padding: clamp(24px, 4vw, 54px) !important;
  background:
    radial-gradient(circle at 100% 0, rgba(211, 173, 89, .16), transparent 24rem),
    linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(248, 246, 239, .92)) !important;
  border: 1px solid rgba(211, 173, 89, .28);
  border-radius: 30px;
  box-shadow:
    0 20px 52px rgba(6, 26, 57, .10),
    inset 0 1px rgba(255, 255, 255, .90);
}

body.index main > .s-block--bundle-store-features {
  padding-block: clamp(54px, 7vw, 92px) !important;
  background:
    radial-gradient(circle at 8% 20%, rgba(211, 173, 89, .13), transparent 25rem),
    linear-gradient(135deg, rgba(250, 247, 240, .96), rgba(238, 243, 248, .96)) !important;
  border-block: 1px solid rgba(6, 26, 57, .07);
}

body.index main > .s-block--bundle-features-list {
  padding-block: clamp(56px, 7vw, 96px) !important;
  background:
    radial-gradient(circle at 94% 10%, rgba(18, 74, 140, .10), transparent 27rem),
    linear-gradient(145deg, rgba(255, 255, 255, .90), rgba(250, 247, 240, .94)) !important;
  border-block: 1px solid rgba(211, 173, 89, .16);
}

body.index main > .s-block--bundle-text-content {
  padding-block: clamp(30px, 4vw, 58px) !important;
  background: linear-gradient(180deg, rgba(241, 244, 248, .72), rgba(250, 247, 240, .72)) !important;
}

body.index main > .s-block--bundle-text-content > salla-text-content-5arujr {
  display: block;
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  overflow: hidden;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(6, 26, 57, .09);
  border-radius: 26px;
  box-shadow: 0 14px 38px rgba(6, 26, 57, .08);
}

body.index main > .s-block--bundle-faq {
  padding-block: clamp(22px, 3.5vw, 46px) !important;
  background: linear-gradient(180deg, rgba(250, 247, 240, .78), rgba(241, 244, 248, .78)) !important;
}

body.index main > .s-block--bundle-faq > salla-faq-yczc5h {
  display: block;
  width: min(1040px, calc(100% - 32px));
  margin-inline: auto;
  overflow: hidden;
  padding: clamp(14px, 2vw, 24px);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(6, 26, 57, .10);
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(6, 26, 57, .07);
}

.s-block__title h2,
.s-block__title h3,
section .section-title {
  color: var(--kw-navy);
  font-weight: 850;
  letter-spacing: -.018em;
  line-height: 1.45;
}

.s-block__title h2::after,
.s-block__title h3::after {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--kw-gold), var(--kw-gold-bright));
  box-shadow: 0 4px 14px rgba(211, 173, 89, .25);
}

/* Product cards and primary actions */
.s-products-list-wrapper .s-product-card-entry {
  position: relative;
  background:
    linear-gradient(90deg, var(--kw-gold), var(--kw-navy-3)) top / 100% 3px no-repeat,
    linear-gradient(180deg, #fff 0%, #fcfbf8 100%) padding-box !important;
  border: 1px solid rgba(6, 26, 57, .11) !important;
  border-radius: 23px !important;
  box-shadow:
    0 10px 30px rgba(6, 26, 57, .08),
    0 1px 0 rgba(255, 255, 255, .90) inset;
  transition:
    transform .26s var(--kw-motion),
    border-color .26s ease,
    box-shadow .26s ease;
}

.s-products-list-wrapper .s-product-card-image {
  background:
    radial-gradient(circle at 50% 15%, rgba(211, 173, 89, .14), transparent 58%),
    var(--kw-cream) !important;
}

.s-products-list-wrapper :is(
  .s-product-card-content-title,
  .s-product-card-content-title a
) {
  color: var(--kw-navy) !important;
  font-weight: 800;
}

.s-products-list-wrapper .s-product-card-price {
  color: var(--kw-navy-2) !important;
  font-weight: 850;
}

:is(
  a.s-button-primary,
  button.s-button-primary,
  a.btn--primary,
  button.btn--primary,
  .s-products-list-wrapper .s-product-card-content-footer .s-button-element
) {
  color: #fff !important;
  background-image:
    linear-gradient(110deg, var(--kw-navy) 0%, var(--kw-navy-2) 45%, var(--kw-navy-3) 70%, var(--kw-navy) 100%) !important;
  background-size: 190% 100% !important;
  background-position: 0 50%;
  border: 1px solid rgba(211, 173, 89, .48) !important;
  border-radius: 14px !important;
  font-weight: 800;
  box-shadow:
    0 12px 26px rgba(6, 26, 57, .19),
    inset 0 1px rgba(255, 255, 255, .14);
  transition:
    background-position .42s ease,
    transform .2s var(--kw-motion),
    box-shadow .2s ease !important;
}

:is(
  button.s-button-primary,
  .s-products-list-wrapper .s-product-card-content-footer .s-button-element
):is([disabled], .is-disabled) {
  opacity: .52;
  transform: none !important;
  box-shadow: none !important;
}

.s-block-trust-store-features__item {
  background: linear-gradient(145deg, #fff, #faf8f3);
  border: 1px solid rgba(6, 26, 57, .10);
  border-radius: 21px;
  padding: clamp(20px, 2.4vw, 28px);
  box-shadow: var(--kw-shadow-sm);
  transition:
    transform .25s var(--kw-motion),
    box-shadow .25s ease,
    border-color .25s ease;
}

.s-block-trust-store-features__media {
  color: var(--kw-navy) !important;
  background: linear-gradient(145deg, var(--kw-gold-bright), var(--kw-gold)) !important;
  border: 1px solid rgba(145, 103, 24, .25);
  box-shadow: 0 9px 20px rgba(211, 173, 89, .22);
}

.s-block-trust-store-features__title {
  color: var(--kw-navy);
  font-weight: 850;
}

.s-block-trust-store-features__subtitle {
  color: var(--kw-muted);
  line-height: 1.85;
}

.s-block--fixed-banner .banner--fixed {
  border: 1px solid rgba(211, 173, 89, .38) !important;
  box-shadow:
    0 20px 54px rgba(6, 26, 57, .15),
    0 0 0 5px rgba(255, 255, 255, .55);
  transition: box-shadow .28s ease, transform .28s var(--kw-motion);
}

.s-block--hero-slider .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(6, 26, 57, .34);
  opacity: 1;
  transition: width .25s ease, background-color .25s ease;
}

.s-block--hero-slider .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 999px;
  background: var(--kw-gold);
}

.s-block--hero-slider :is(.swiper-button-next, .swiper-button-prev) {
  color: var(--kw-navy);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(211, 173, 89, .42);
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(6, 26, 57, .14);
}

/* High-contrast branded footer */
.store-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--kw-footer-text) !important;
  background:
    radial-gradient(circle at 12% 10%, rgba(211, 173, 89, .21), transparent 20rem),
    radial-gradient(circle at 92% 74%, rgba(18, 74, 140, .56), transparent 28rem),
    linear-gradient(135deg, #020b1b 0%, #061a39 45%, #0b2f63 100%) !important;
  border-top: 2px solid rgba(240, 212, 142, .74) !important;
}

.store-footer::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -110px;
  inset-inline-end: -100px;
  width: 330px;
  height: 330px;
  pointer-events: none;
  border: 1px solid rgba(240, 212, 142, .16);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(211, 173, 89, .035),
    0 0 0 86px rgba(211, 173, 89, .025);
}

.store-footer::after {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 6%;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    var(--kw-gold),
    var(--kw-gold-bright),
    var(--kw-gold),
    transparent
  );
}

.store-footer__inner {
  position: relative;
  color: var(--kw-footer-text) !important;
  background:
    linear-gradient(135deg, rgba(2, 11, 27, .98), rgba(11, 47, 99, .96)) !important;
  border-top: 0 !important;
}

.store-footer :is(h2, h3, h4, .footer-list-title) {
  color: #fff !important;
  opacity: 1 !important;
  font-weight: 850;
}

.store-footer :is(p, li, .s-contacts-item, .s-menu-footer-item) {
  color: #e2e9f3 !important;
  opacity: 1 !important;
}

.store-footer a {
  color: #f4f7fb !important;
  opacity: 1 !important;
  text-decoration-color: rgba(211, 173, 89, .45);
  text-underline-offset: 5px;
}

.store-footer a.s-menu-footer-item,
.store-footer .s-contacts-item a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  font-weight: 650;
  transition: color .2s ease, transform .2s var(--kw-motion);
}

.store-footer .s-contacts-item {
  padding: 8px 10px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(240, 212, 142, .14);
  border-radius: 12px;
}

.store-footer :is(.social-link, .s-social-list a) {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  min-height: 42px;
  color: #fff !important;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(240, 212, 142, .25);
  border-radius: 13px;
}

.store-footer :is(.s-trust-badges-wrapper, .s-payments-list) {
  padding: 10px;
  background: rgba(255, 255, 255, .97) !important;
  border: 1px solid rgba(211, 173, 89, .25);
  border-radius: 15px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .14);
}

.store-footer__copyright,
.store-footer > .md\:flex.items-center.justify-between.py-4.container.text-center {
  color: #d0d9e6 !important;
  background: rgba(1, 7, 18, .86) !important;
  border-top: 1px solid rgba(240, 212, 142, .18) !important;
}

.store-footer__copyright *,
.store-footer > .md\:flex.items-center.justify-between.py-4.container.text-center * {
  color: #d0d9e6 !important;
}

.store-footer__copyright a,
.store-footer > .md\:flex.items-center.justify-between.py-4.container.text-center a {
  color: var(--kw-gold-bright) !important;
  font-weight: 750;
}

/* Motion and interaction */
@keyframes kw-accent-in {
  from { opacity: 0; transform: scaleX(.15); }
  to { opacity: 1; transform: scaleX(1); }
}

@keyframes kw-hero-enter {
  from { opacity: .72; transform: translate3d(0, 10px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes kw-view-enter {
  from { opacity: .34; transform: translate3d(0, 18px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@media (prefers-reduced-motion: no-preference) {
  #mainnav.main-nav-container::after {
    animation: kw-accent-in .9s var(--kw-motion) both;
  }

  .s-block--hero-slider {
    animation: kw-hero-enter .7s var(--kw-motion) both;
  }
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .s-block__title,
    .s-products-list-wrapper .s-product-card-entry,
    .s-block--fixed-banner .banner--fixed,
    body.index main > .s-block--bundle-store-features > *,
    body.index main > .s-block--bundle-features-list > *,
    body.index main > .s-block--bundle-text-content > *,
    body.index main > .s-block--bundle-faq > * {
      animation: kw-view-enter linear both;
      animation-timeline: view();
      animation-range: entry 4% cover 24%;
    }
  }
}

/* Keyboard and hover polish */
:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--kw-gold-dark);
  outline-offset: 3px;
}

.store-footer :where(a, button):focus-visible,
.store-header .top-navbar :where(a, button, input):focus-visible {
  outline-color: var(--kw-gold-bright);
}

@media (hover: hover) and (pointer: fine) {
  #mainnav .navbar-brand:hover img {
    transform: translateY(-2px) scale(1.025);
    filter: drop-shadow(0 8px 16px rgba(6, 26, 57, .18));
  }

  #mainnav :is(.s-user-menu-login-btn, .s-cart-summary-wrapper):hover {
    transform: translateY(-2px);
    background: #fff;
    border-color: rgba(211, 173, 89, .55);
    box-shadow: 0 12px 24px rgba(6, 26, 57, .13);
  }

  :is(
    a.s-button-primary,
    button.s-button-primary,
    a.btn--primary,
    button.btn--primary,
    .s-products-list-wrapper .s-product-card-content-footer .s-button-element
  ):not([disabled], .is-disabled):hover {
    color: #fff !important;
    background-position: 100% 50% !important;
    transform: translateY(-2px);
    box-shadow:
      0 17px 34px rgba(6, 26, 57, .25),
      0 0 0 3px rgba(211, 173, 89, .12);
  }

  .s-products-list-wrapper .s-product-card-entry:hover {
    transform: translateY(-7px);
    border-color: rgba(211, 173, 89, .58) !important;
    box-shadow:
      0 24px 52px rgba(6, 26, 57, .15),
      0 0 0 1px rgba(211, 173, 89, .12);
  }

  .s-block-trust-store-features__item:hover {
    transform: translateY(-5px);
    border-color: rgba(211, 173, 89, .50);
    box-shadow: var(--kw-shadow-md);
  }

  .s-block--fixed-banner .banner--fixed:hover {
    transform: translateY(-3px);
    box-shadow:
      0 27px 66px rgba(6, 26, 57, .20),
      0 0 0 5px rgba(211, 173, 89, .10);
  }

  .store-footer a.s-menu-footer-item:hover,
  .store-footer .s-contacts-item a:hover {
    color: var(--kw-gold-bright) !important;
    transform: translateY(-1px);
    text-decoration-color: currentColor;
  }

  .store-footer :is(.social-link, .s-social-list a):hover {
    color: var(--kw-navy) !important;
    background: var(--kw-gold);
    border-color: var(--kw-gold);
    transform: translateY(-2px);
  }
}

@media (max-width: 767px) {
  #mainnav.main-nav-container {
    min-height: 68px !important;
  }

  #mainnav .navbar-brand {
    padding: 5px 8px;
    border-radius: 13px;
  }

  body.index main > section.s-block.container {
    width: calc(100% - 24px);
    margin-inline: auto;
    padding: 20px 12px !important;
    border-radius: 22px;
  }

  body.index main > .s-block--bundle-text-content > salla-text-content-5arujr,
  body.index main > .s-block--bundle-faq > salla-faq-yczc5h {
    width: calc(100% - 24px);
    border-radius: 20px;
  }

  .store-footer::before {
    width: 230px;
    height: 230px;
  }

  .s-block__title h2::after,
  .s-block__title h3::after {
    width: 44px;
    height: 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  #mainnav.main-nav-container::after,
  .s-block--hero-slider,
  .s-products-list-wrapper .s-product-card-entry,
  .s-block--fixed-banner .banner--fixed,
  .s-block-trust-store-features__item {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}



/* =========================================================
   KHUTWATEK | PREMIUM VISUAL SYSTEM V2.1 QA FIXES
   Clear content, tighter rhythm and a five-package grid
   ========================================================= */

/* Keep scroll reveals visible at every stage; motion uses transform only. */
@keyframes kw-view-enter {
  from { transform: translate3d(0, 16px, 0); }
  to { transform: translate3d(0, 0, 0); }
}

/* Dynamic custom-element tags: style their host through the section wrapper. */
body.index main > .s-block--bundle-store-features > :first-child,
body.index main > .s-block--bundle-features-list > :first-child,
body.index main > .s-block--bundle-text-content > :first-child,
body.index main > .s-block--bundle-faq > :first-child {
  display: block;
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(211, 173, 89, .10), transparent 20rem),
    rgba(255, 255, 255, .90);
  border: 1px solid rgba(6, 26, 57, .10);
  border-radius: 26px;
  box-shadow:
    0 14px 38px rgba(6, 26, 57, .085),
    inset 0 1px rgba(255, 255, 255, .92);
}

body.index main > .s-block--bundle-faq > :first-child {
  width: min(1040px, calc(100% - 32px));
  border-radius: 22px;
}

/* Reduce excess whitespace while retaining premium breathing room. */
body.index main > .s-block--bundle-store-features,
body.index main > .s-block--bundle-features-list {
  padding-block: clamp(34px, 4vw, 56px) !important;
}

body.index main > .s-block--bundle-text-content {
  padding-block: clamp(22px, 2.6vw, 38px) !important;
}

body.index main > .s-block--bundle-faq {
  padding-block: clamp(18px, 2.2vw, 30px) !important;
}

/* Present all five packages on one intentional row on wide screens. */
@media (min-width: 1280px) {
  .s-products-list-wrapper.s-products-list-vertical-cards {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }
}

/* Mobile host surfaces stay edge-safe and never touch the viewport. */
@media (max-width: 767px) {
  body.index main > .s-block--bundle-store-features > :first-child,
  body.index main > .s-block--bundle-features-list > :first-child,
  body.index main > .s-block--bundle-text-content > :first-child,
  body.index main > .s-block--bundle-faq > :first-child {
    width: calc(100% - 24px);
    border-radius: 20px;
  }

  body.index main > .s-block--bundle-store-features,
  body.index main > .s-block--bundle-features-list {
    padding-block: 28px !important;
  }

  body.index main > .s-block--bundle-text-content,
  body.index main > .s-block--bundle-faq {
    padding-block: 18px !important;
  }
}

/* KHUTWATEK | PREMIUM VISUAL SYSTEM V2.2 MOBILE FOOTER */
@media (max-width: 767px) {
  .store-footer__inner {
    padding-block: 42px 28px !important;
  }

  .store-footer__inner > .container {
    gap: 16px !important;
    padding-inline: 16px !important;
  }

  .store-footer__inner > .container > div {
    padding: 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 18px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
    box-shadow: 0 14px 34px rgba(0, 8, 24, 0.18);
  }

  .store-footer__inner h3 {
    margin-bottom: 13px !important;
    color: #ffffff !important;
    font-size: 18px !important;
    line-height: 1.45 !important;
  }

  .store-footer__inner .s-menu-footer-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px !important;
  }

  .store-footer__inner .s-menu-footer-item {
    display: flex !important;
    align-items: center;
    width: 100% !important;
    min-height: 42px;
    margin: 0 !important;
    padding: 8px 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 13px !important;
    line-height: 1.35;
  }

  .store-footer__inner .s-menu-footer-item:hover,
  .store-footer__inner .s-menu-footer-item:focus-visible {
    border-color: rgba(232, 195, 112, 0.5);
    background: rgba(232, 195, 112, 0.12);
    color: #ffffff !important;
  }

  .store-footer__inner a[href^="tel:"],
  .store-footer__inner a[href*="wa.me"] {
    width: 100% !important;
    min-height: 48px;
    justify-content: space-between !important;
  }

  .store-footer > .container,
  .store-footer .md\:flex.items-center.justify-between {
    padding-inline: 16px !important;
  }
}

@media (max-width: 380px) {
  .store-footer__inner .s-menu-footer-list {
    grid-template-columns: 1fr;
  }
}

/* Add custom CSS styles below */

/* KHUTWATEK — mobile account-menu overlap fix — 2026-07-22
 * Salla's mobile account sheet is position: fixed. A backdrop-filter on
 * .store-header creates a containing block and anchors the sheet to the
 * short header instead of the viewport, pushing "حسابي" behind search.
 */
@media (max-width: 767px) {
  .store-header {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .store-header .s-user-menu-dropdown {
    z-index: 130 !important;
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .store-header .s-user-menu-toggler.opened::before {
    z-index: 120 !important;
  }
}

/* KHUTWATEK — definitive mobile account-menu viewport and layering fix — 2026-07-22 */
@media (max-width: 1024px) {
  .store-header {
    position: relative !important;
    z-index: 1000 !important;
    overflow: visible !important;
    isolation: isolate !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .store-header:has(.s-user-menu-toggler.opened) {
    z-index: 10000 !important;
  }

  .store-header #mainnav,
  .store-header #mainnav > .inner,
  .store-header #mainnav > .inner > .container,
  .store-header #mainnav > .inner > .container > .relative,
  .store-header salla-user-menu,
  .store-header .s-user-menu-wrapper,
  .store-header .s-user-menu-toggler {
    overflow: visible !important;
  }

  .store-header #mainnav {
    position: relative !important;
    z-index: 1001 !important;
  }

  .store-header #mainnav > .inner {
    position: relative !important;
    z-index: 1002 !important;
  }

  .store-header:has(.s-user-menu-toggler.opened) #mainnav > .inner {
    transform: none !important;
  }

  .store-header salla-user-menu,
  .store-header .s-user-menu-wrapper,
  .store-header .s-user-menu-toggler {
    position: relative !important;
    z-index: 1020 !important;
  }

  .store-header .s-user-menu-toggler.opened::before {
    position: fixed !important;
    inset: 0 !important;
    z-index: 1029 !important;
    pointer-events: auto !important;
  }

  .store-header .s-user-menu-toggler.opened .s-user-menu-dropdown {
    position: fixed !important;
    inset-inline: 0 !important;
    top: auto !important;
    bottom: 0 !important;
    width: auto !important;
    max-width: none !important;
    max-height: calc(100vh - 16px) !important;
    max-height: calc(100dvh - 16px) !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    z-index: 1030 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  .store-header .s-user-menu-dropdown,
  .store-header .s-user-menu-dropdown * {
    pointer-events: auto !important;
  }

  .store-header .s-user-menu-dropdown-item,
  .store-header .s-user-menu-dropdown-item-link {
    position: relative !important;
    z-index: 1 !important;
  }

  body:has(.s-user-menu-toggler.opened) #khutwatek-whatsapp-float {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}