:root {
  --ks-gold: #d4af37;
  --ks-gold-dark: #b8860b;
  --ks-blue-night: #1e293b;
  --ks-blanc-perle: #f8fafc;
  --ks-text: #0f172a;
  --ks-muted: #64748b;
  --ks-border: #e2e8f0;
  --ks-radius: 14px;
  --ks-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  --ks-shadow-soft: 0 8px 20px rgba(15, 23, 42, 0.06);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ks-text);
  background: var(--ks-blanc-perle);
  line-height: 1.6;
}

.font-playfair {
  font-family: 'Playfair Display', serif;
}

.font-amiri {
  font-family: 'Amiri', serif;
}

.font-inter {
  font-family: 'Inter', sans-serif;
}

.font-noto-arabic {
  font-family: 'Noto Sans Arabic', sans-serif;
}

.font-arabic {
  font-family: 'Tajawal', 'Noto Sans Arabic', sans-serif;
}

.font-tajawal {
  font-family: 'Tajawal', 'Noto Sans Arabic', sans-serif;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 0.5rem;
}

h1.font-arabic,
h2.font-arabic,
h3.font-arabic,
h4.font-arabic {
  font-family: 'Tajawal', 'Noto Sans Arabic', sans-serif;
}

[dir="rtl"] {
  font-family: 'Tajawal', 'Noto Sans Arabic', sans-serif;
}

[dir="rtl"] .font-playfair,
[dir="rtl"] .font-inter {
  font-family: 'Tajawal', 'Noto Sans Arabic', sans-serif !important;
}

p {
  margin: 0 0 1rem;
  color: var(--ks-muted);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: calc(var(--ks-radius) - 4px);
}

.ks-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .ks-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .ks-container {
    padding: 0 2rem;
  }
}

body.home .ks-main {
  padding-top: 0;
}

.ks-section {
  padding: 20px 0;
  background-color: white;
}
.ks-404 {
    padding: 40px 0;
    text-align: center;
}
.ks-section-muted {
  background: #ffffff;
}

.ks-shop-hero {
  background: #1e293b;
  border-bottom: 1px solid var(--ks-border);
}

.ks-shop-landing {
  background: #f9fafb;
  min-height: 100vh;
}

.ks-shop-landing-hero {
  background: var(--ks-blue-night);
  color: #fff;
  padding: 64px 16px;
  text-align: center;
}

.ks-shop-landing-title {
  color: var(--ks-gold);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.ks-shop-landing-subtitle {
  color: #d1d5db;
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 640px;
  margin: 0 auto;
}

.ks-shop-page {
  background: #f9fafb;
}

.ks-shop-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e5e7eb;
  padding: 36px 0;
}

.ks-shop-hero-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  min-height: 220px;
}

.ks-shop-hero-inner.is-rtl {
  flex-direction: row-reverse;
}

.ks-shop-hero-media {
  width: clamp(110px, 16vw, 220px);
  height: clamp(110px, 16vw, 220px);
  flex: 0 0 clamp(110px, 16vw, 220px);
  border-radius: 999px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.22);
  background: #e5e7eb;
}

.ks-shop-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ks-shop-hero-copy {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

.ks-shop-hero-inner.is-rtl .ks-shop-hero-copy {
  text-align: right;
}

.ks-shop-hero-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.2;
  color: #ffd700;
  margin: 0 0 12px;
}

.ks-shop-hero-subtitle {
  color: #ffd700;
  max-width: 980px;
  margin: 0;
  line-height: 1.6;
}

.ks-ampersand {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: inherit;
}

.ks-subcategory-carousel {
  position: relative;
  width: 100%;
}

.ks-subcat-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 4px 6px -1px rgba(15,23,42,0.12), 0 2px 4px -1px rgba(15,23,42,0.08);
}

@media (min-width: 768px) {
  .ks-subcat-nav {
    width: 40px;
    height: 40px;
  }
}

.ks-subcat-prev {
  left: 0;
}

.ks-subcat-next {
  right: 0;
}

.ks-subcat-track {
  overflow-x: auto;
  display: flex;
  gap: 16px;
  padding: 24px 40px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ks-subcat-track::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .ks-subcat-track {
    padding: 24px 48px;
  }
}

.ks-shop-page[dir="rtl"] .ks-subcat-track {
  flex-direction: row-reverse;
}

.ks-subcat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 100px;
  max-width: 140px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #f3f4f6;
  background: #fff;
  color: #374151;
  box-shadow: 0 1px 2px rgba(15,23,42,0.06);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.ks-subcat-item:hover {
  box-shadow: 0 4px 6px -1px rgba(15,23,42,0.12), 0 2px 4px -1px rgba(15,23,42,0.08);
  border-color: rgba(212,175,55,0.5);
}

.ks-subcat-item.is-active {
  transform: scale(1.05);
  border-color: var(--ks-gold);
  background: var(--ks-blue-night);
  color: #fff;
  box-shadow: 0 10px 20px rgba(15,23,42,0.15);
}

.ks-subcat-thumb {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid #f3f4f6;
}

.ks-subcat-item.is-active .ks-subcat-thumb {
  border-color: rgba(255,255,255,0.3);
}

.ks-subcat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ks-subcat-label {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
}

.ks-shop-content {
  padding: 24px 0 80px;
}

.ks-shop-filter-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  box-shadow: 0 6px 12px rgba(15,23,42,0.05);
  margin-bottom: 24px;
}

.ks-shop-filter-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ks-shop-icon img {
  width: 18px;
  height: 18px;
}

.ks-hidden {
  display: none;
}

.ks-shop-filter-title h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
}

.ks-shop-count {
  font-size: 0.85rem;
  color: #9ca3af;
  background: #f3f4f6;
  padding: 4px 10px;
  border-radius: 999px;
}

.ks-shop-search {
  position: relative;
  max-width: 320px;
  width: 100%;
}

.ks-shop-search input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
}

.ks-shop-search img {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

.ks-shop-tools {
  display: flex;
  flex-direction: row;
  gap: 12px;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.ks-shop-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 8px 12px;
  min-width: 220px;
}

.ks-shop-sort-select {
  border: none;
  background: transparent;
  font-weight: 600;
  color: #111827;
  font-size: 0.9rem;
  outline: none;
  width: 100%;
}

.ks-shop-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .ks-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .ks-shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .ks-shop-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.ks-shop-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  padding-bottom: 32px;
  flex-wrap: wrap;
}

.ks-shop-page-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #374151;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.ks-shop-page-nav:hover {
  border-color: #d4af37;
  color: #111827;
  background: #fff;
}

.ks-shop-page-nav.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.ks-shop-page-icon {
  width: 16px;
  height: 16px;
}

.ks-shop-page-numbers {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.ks-shop-page-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #4b5563;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  background: transparent;
}

.ks-shop-page-btn:hover {
  color: #374151;
  border-color: #e5e7eb;
  background: #fff;
}

.ks-shop-page-btn.is-active {
  background: var(--ks-gold);
  border-color: var(--ks-gold);
  color: #fff;
  font-weight: 700;
}

.ks-shop-page-btn.dots {
  color: #9ca3af;
  width: auto;
  padding: 0 6px;
  pointer-events: none;
}

.navigation.pagination {
  margin-top: 32px;
}

.navigation.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.navigation.pagination .page-numbers {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: #4b5563;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.navigation.pagination a.page-numbers:hover {
  color: #374151;
  border-color: #e5e7eb;
  background: #fff;
}

.navigation.pagination .page-numbers.current {
  background: var(--ks-gold);
  border-color: var(--ks-gold);
  color: #fff;
}

.navigation.pagination .page-numbers.prev,
.navigation.pagination .page-numbers.next {
  width: auto;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #374151;
}

.navigation.pagination .page-numbers.dots {
  width: auto;
  border: 0;
  padding: 0 6px;
  color: #9ca3af;
}

.ks-shop-empty {
  text-align: center;
  padding: 48px 16px;
  background: #fff;
  border: 1px dashed #d1d5db;
  border-radius: 20px;
  margin-bottom: 24px;
}

.ks-shop-empty-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ks-shop-empty-icon img {
  width: 40px;
  height: 40px;
  opacity: 0.6;
}

.ks-product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid transparent;
  box-shadow: 0 8px 18px rgba(15,23,42,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ks-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(15,23,42,0.12);
  border-color: rgba(212,175,55,0.2);
}

.ks-product-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f3f4f6;
}

.ks-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.ks-product-card:hover .ks-product-media img {
  transform: scale(1.08);
}

.ks-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ks-gold);
  color: #111827;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.75rem;
}

.ks-product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ks-product-card:hover .ks-product-overlay {
  opacity: 1;
}

.ks-product-eye {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ks-product-eye img {
  width: 18px;
  height: 18px;
}

.ks-product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ks-product-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ks-product-desc {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 16px;
  min-height: 42px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ks-product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid #f3f4f6;
  padding-top: 10px;
}

.ks-product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ks-blue-night);
}

.ks-product-footer {
  padding: 0 20px 20px;
}

.ks-product-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #0f172a;
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  transition: background 0.3s ease, color 0.3s ease;
}

.ks-product-buy img {
  width: 16px;
  height: 16px;
}

.ks-product-buy:hover {
  background: var(--ks-gold);
  color: #111827;
}

.ks-product-buy-disabled {
  background: #e5e7eb;
  color: #9ca3af;
  justify-content: center;
}

.ks-product-detail {
  background: var(--ks-blanc-perle);
  padding: 96px 16px 48px;
}

.ks-product-detail-inner {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.ks-product-detail-back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  margin-bottom: 24px;
}

.ks-back-icon {
  width: 16px;
  height: 16px;
}

.ks-product-detail-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid #f3f4f6;
  box-shadow: 0 20px 40px rgba(15,23,42,0.12);
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.ks-product-detail-media {
  background: #f9fafb;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ks-product-detail-media img {
  max-height: 480px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.2);
}

.ks-product-detail-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.ks-product-detail-title {
  font-size: 2rem;
  color: var(--ks-blue-night);
  margin-bottom: 16px;
}

.ks-product-detail-price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.ks-product-detail-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ks-gold);
}

.ks-product-platform {
  background: #f3f4f6;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #6b7280;
}

.ks-product-detail-desc {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 24px;
}

.ks-product-detail-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid #f3f4f6;
}

.ks-product-detail-buy {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #0f172a;
  color: #fff;
  padding: 16px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.ks-product-detail-buy img {
  width: 18px;
  height: 18px;
}

.ks-product-detail-buy:hover {
  background: var(--ks-gold);
  color: #111827;
}

.ks-product-detail-share {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ks-product-detail-share-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.ks-product-detail-share-btn img {
  width: 16px;
  height: 16px;
  opacity: 0.72;
}

.ks-product-detail-share-btn:hover {
  border-color: rgba(212, 175, 55, 0.65);
}

.ks-product-detail-share-btn.is-copied {
  border-color: var(--ks-gold);
}

.ks-shop-stats {
  padding: 64px 0;
  background: #fff;
  border-top: 1px solid #f3f4f6;
}

.ks-shop-stats-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.ks-shop-stat-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(15,23,42,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ks-shop-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(15,23,42,0.12);
}

.ks-shop-stat-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 20px;
}

.ks-shop-stat-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ks-shop-stat-icon img {
  width: 32px;
  height: 32px;
}

.ks-icon-blue {
  filter: invert(32%) sepia(88%) saturate(1541%) hue-rotate(199deg) brightness(90%) contrast(92%);
}

.ks-icon-amber {
  filter: invert(64%) sepia(98%) saturate(640%) hue-rotate(2deg) brightness(102%) contrast(96%);
}

.ks-icon-rose {
  filter: invert(40%) sepia(78%) saturate(1483%) hue-rotate(316deg) brightness(95%) contrast(99%);
}

.ks-shop-stat-card h3 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.ks-shop-stat-card p {
  color: #6b7280;
}

@media (min-width: 768px) {
  .ks-shop-filter-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.ks-section-vip {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #f8fafc;
}

.ks-section-vip p {
  color: rgba(248, 250, 252, 0.75);
}

.ks-section-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.ks-header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  isolation: isolate;
  background: rgba(30, 41, 59, 0.95);
  color: #fff;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: visible;
}

.ks-header.is-scrolled {
  background: rgba(15, 23, 42, 0.98);
  box-shadow: var(--ks-shadow-soft);
}

.ks-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  overflow: visible;
}

.ks-logo-text {
  font-size: 1.4rem;
  font-weight: 700;
}

.ks-tagline {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.ks-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.ks-menu {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.ks-menu a {
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.ks-menu a:hover,
.ks-menu .current-menu-item a {
  color: var(--ks-gold);
}

.ks-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.ks-currency-switcher {
  position: relative;
  flex: 0 0 auto;
}

.ks-currency-switcher .ks-currency-form {
  display: block;
  margin: 0;
}

.ks-currency-select {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  width: auto;
  min-width: 76px;
  max-width: 92px;
  padding: 6px 24px 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  line-height: 1.2;
  cursor: pointer;
}

[dir='rtl'] .ks-currency-select {
  padding: 6px 10px 6px 24px;
}

.ks-currency-select:focus {
  outline: 2px solid var(--ks-gold);
  outline-offset: 2px;
}

.ks-currency-switcher::after {
  content: '▾';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

[dir='rtl'] .ks-currency-switcher::after {
  right: auto;
  left: 10px;
}

.ks-lang {
  position: relative;
  flex: 0 0 auto;
  z-index: 1000;
}

.ks-lang-switcher.ks-lang-dropdown {
  position: relative;
  display: block;
  z-index: 1000;
  overflow: visible;
}

.ks-lang-dropdown:hover,
.ks-lang-dropdown:focus-within {
  z-index: 1001;
}

.ks-lang-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  width: 48px;
  height: 12px;
}

[dir='rtl'] .ks-lang-dropdown::after {
  right: auto;
  left: 0;
}

.ks-lang-toggle {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ks-lang-toggle:hover,
.ks-lang-dropdown:focus-within .ks-lang-toggle {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
}

.ks-lang-toggle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ks-lang-menu {
  position: absolute;
  top: calc(100% + 2px);
  right: 0;
  width: 160px;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
  padding: 8px;
  z-index: 10020;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.18s ease;
  pointer-events: none;
}

[dir='rtl'] .ks-lang-menu {
  right: auto;
  left: 0;
}

.ks-lang-dropdown:hover .ks-lang-menu,
.ks-lang-dropdown:focus-within .ks-lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.ks-lang-option {
  display: block;
  width: 100%;
  padding: 8px 12px;
  border-radius: 8px;
  color: #1f2937;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  transition: background 0.15s ease, color 0.15s ease;
}

[dir='rtl'] .ks-lang-option {
  text-align: right;
}

.ks-lang-option:hover {
  background: #f8fafc;
}

.ks-lang-option.is-active {
  background: #f3f4f6;
  color: #0f172a;
  font-weight: 700;
}

.ks-lang-option[data-lang='ar'] {
  font-family: 'Noto Kufi Arabic', 'Tajawal', sans-serif;
}

.ks-lang-switcher:not(.ks-lang-dropdown) {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
}

.ks-lang-switcher:not(.ks-lang-dropdown) ul {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.ks-lang-switcher:not(.ks-lang-dropdown) a {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.ks-lang-switcher:not(.ks-lang-dropdown) .current-lang a,
.ks-lang-switcher:not(.ks-lang-dropdown) .is-active {
  background: var(--ks-gold);
  color: #1f2937;
}

.ks-icon-link {
  font-size: 0.9rem;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.ks-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.ks-btn-primary {
  background: var(--ks-gold);
  color: #1f2937;
}

.ks-btn-primary:hover {
  background: var(--ks-gold-dark);
  color: #fff;
}

.ks-btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
}

.ks-btn-outline:hover {
  border-color: var(--ks-gold);
  color: var(--ks-gold);
}

.ks-mobile-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 36px;
  height: 32px;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px;
}

.ks-mobile-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.ks-mobile-menu {
  display: none;
  padding: 24px 0;
  background: #0f172a;
}

.ks-mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0 5%;
  display: grid;
  gap: 12px;
  color: #fff;
}

.ks-mobile-nav a {
  font-weight: 600;
}

.ks-hero {
  background: linear-gradient(130deg, #0f172a 0%, #1e293b 45%, #0f172a 100%);
  color: #fff;
  padding: 140px 0 100px;
}

.ks-home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 80px;
  background: #0f172a;
  overflow: hidden;
}

.ks-hero-bg,
.ks-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  /* height: 100%; */
}

.ks-hero-bg img {
  object-fit: cover;
}

.ks-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.ks-hero-gradient-bottom {
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
}

.ks-hero-glows {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ks-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.8;
}

.ks-hero-glow-gold {
  width: 260px;
  height: 260px;
  background: rgba(212, 175, 55, 0.15);
  top: 80px;
  left: 60px;
}

.ks-hero-glow-blue {
  width: 320px;
  height: 320px;
  background: rgba(59, 130, 246, 0.15);
  bottom: 180px;
  right: 60px;
}

.ks-home-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.ks-home-hero-text {
  max-width: 760px;
  text-align: center;
  color: #fff;
}

.ks-home-hero-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
@media (max-width: 640px) {
  .ks-home-hero-title {
    font-size: 32px !important;
    margin-top: -180px !important;
  }
  .ks-logo-text {
    font-size: 16px !important;
  }
  .ks-home-hero {
    margin-bottom: -180px !important;
  }
}
.ks-home-hero-subtitle {
  display: block;
  margin-top: 12px;
  color: var(--ks-gold);
}

.ks-home-hero-description {
  margin: 24px auto 40px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.92);
  max-width: 600px;
}

.ks-hero-cta {
  padding: 16px 40px;
  font-size: 1.05rem;
  box-shadow: 0 10px 30px -10px rgba(212,175,55,0.6);
}

.ks-currency-bar {
  padding: 24px 0;
  background: #f8fafc;
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
}

.ks-currency-toggle {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ks-blue-night);
  box-shadow: var(--ks-shadow-soft);
  cursor: pointer;
}

.ks-currency-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #eff6ff;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.ks-currency-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.ks-currency-modal.is-open {
  display: flex;
}

.ks-currency-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
}

.ks-currency-dialog {
  position: relative;
  z-index: 2;
  width: min(900px, 92%);
}

.ks-currency-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 25px 60px rgba(15,23,42,0.25);
}

.ks-currency-close {
  position: absolute;
  top: -16px;
  right: 0;
  background: #fff;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
}

.ks-currency-header h3 {
  margin: 0 0 8px;
}

.ks-currency-header p {
  margin: 0 0 20px;
}

.ks-currency-form {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: end;
}

.ks-currency-field label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: #475569;
  font-weight: 600;
}

.ks-currency-field input,
.ks-currency-field select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  font-size: 0.95rem;
}

.ks-currency-result {
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  padding: 16px;
  display: grid;
  gap: 6px;
}

.ks-currency-result strong {
  font-size: 1.6rem;
  color: #1e3a8a;
}

.ks-currency-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 16px;
  flex-wrap: wrap;
}

.ks-niches {
  background: #fff;
  padding: 48px 0;
  margin-top: -32px;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
  position: relative;
  z-index: 20;
}

.ks-niche-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.ks-niche-card {
  position: relative;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(15,23,42,0.12), 0 2px 4px -1px rgba(15,23,42,0.08);
  background: #f3f4f6;
  color: #fff;
  transition: box-shadow 0.3s ease;
}

.ks-niche-card:hover {
  box-shadow: 0 20px 25px -5px rgba(15,23,42,0.25), 0 10px 10px -5px rgba(15,23,42,0.1);
}

.ks-niche-bg {
  position: absolute;
  inset: 0;
}

.ks-niche-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.ks-niche-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3), transparent);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.ks-niche-card:hover .ks-niche-overlay {
  opacity: 0.7;
}

.ks-niche-content {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 1;
}

.ks-niche-content-inner {
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.ks-niche-card:hover .ks-niche-content-inner {
  transform: translateY(-8px);
}

.ks-niche-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.ks-niche-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.2);
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ks-gold);
  font-weight: 700;
}

.ks-niche-heading h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.ks-icon-img,
.ks-icon-arrow {
  width: 20px;
  height: 20px;
  display: inline-block;
  filter: invert(78%) sepia(28%) saturate(600%) hue-rotate(5deg) brightness(95%) contrast(90%);
}

.ks-icon-arrow {
  margin-left: 6px;
}

.ks-mission-icon .ks-icon-img {
  width: 24px;
  height: 24px;
  border-radius: 0;
}

.ks-arrow-icon {
  width: 20px;
  height: 20px;
  margin-left: 8px;
  filter: invert(100%);
  transition: transform 0.3s ease;
}

.ks-mission-cta:hover .ks-arrow-icon {
  transform: translateX(4px);
}

.ks-niche-content p {
  color: #e5e7eb;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  transition-delay: 0.075s;
}

.ks-niche-card:hover .ks-niche-content p,
.ks-niche-card:hover .ks-niche-action {
  opacity: 1;
}

.ks-niche-action {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ks-gold);
  opacity: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease;
  transition-delay: 0.1s;
}

.ks-niche-card:hover .ks-niche-action .ks-icon-arrow {
  transform: translateX(4px);
}

@media (min-width: 640px) {
  .ks-niche-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .ks-niche-heading h3 {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .ks-niche-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.ks-why {
  background: #f4e7bd;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.ks-why-header {
  text-align: center;
  margin-bottom: 48px;
}

.ks-why-title {
  font-size: 1.875rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--ks-blue-night);
  margin-bottom: 16px;
}

.ks-why-divider {
  display: inline-block;
  width: 80px;
  height: 4px;
  background: var(--ks-gold);
  border-radius: 999px;
  margin: 0 auto 24px;
}

.ks-why-subtitle {
  color: #475569;
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
}

.ks-why-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  max-width: 80rem;
  margin: 0 auto;
}

.ks-why-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ks-why-card:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(15,23,42,0.25);
}

.ks-why-image {
  position: relative;
  height: 224px;
  overflow: hidden;
  background: #e2e8f0;
}

.ks-why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.7s ease;
}

.ks-why-card:hover .ks-why-image img {
  transform: scale(1.1);
}

.ks-why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ks-why-card:hover .ks-why-overlay {
  opacity: 1;
}

.ks-why-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.ks-why-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: #0f172a;
  margin: 0 0 12px;
}

.ks-why-card:hover .ks-why-card-title {
  color: #2563eb;
}

.ks-why-card-text {
  color: #475569;
  flex-grow: 1;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.ks-why-link {
  margin-top: 24px;
  color: #2563eb;
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

[dir="rtl"] .ks-why-link {
  flex-direction: row-reverse;
}

.ks-why-arrow {
  display: inline-block;
  animation: ks-wcu-arrow 1.5s ease-in-out infinite alternate;
}

@keyframes ks-wcu-arrow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(4px);
  }
}

@keyframes ks-wcu-arrow-rtl {
  from {
    transform: translateX(0) rotate(180deg);
  }
  to {
    transform: translateX(-4px) rotate(180deg);
  }
}

[dir="rtl"] .ks-why-arrow {
  animation-name: ks-wcu-arrow-rtl;
}

.ks-mission {
  background: #fff;
  padding: 48px 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.ks-mission-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.ks-mission-copy {
  display: grid;
  gap: 0;
  text-align: center;
}

.ks-mission-subtitle {
  color: var(--ks-gold);
  font-weight: 500;
  font-size: 1.125rem;
  margin: 0 0 24px;
}

.ks-mission-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--ks-blue-night);
  margin: 0 0 16px;
}

.ks-mission-description {
  color: #374151;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 32px;
}

.ks-btn-dark {
  background: var(--ks-blue-night);
  color: #fff;
}

.ks-mission-cta {
  padding: 24px 32px;
  border-radius: 999px;
  font-size: 1.125rem;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 10px 15px -3px rgba(15,23,42,0.2), 0 4px 6px -2px rgba(15,23,42,0.12);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.ks-mission-cta:hover {
  background: rgba(30,41,59,0.9);
  box-shadow: 0 20px 25px -5px rgba(15,23,42,0.25), 0 10px 10px -5px rgba(15,23,42,0.15);
}

.ks-btn-dark .ks-arrow {
  margin-left: 8px;
}

.ks-mission-points {
  display: grid;
  gap: 24px;
}

.ks-mission-point {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  align-items: flex-start;
  transition: background 0.3s ease;
}

.ks-mission-point:hover {
  background: #f9fafb;
}

.ks-mission-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(212,175,55,0.1);
  color: var(--ks-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,175,55,0.2);
}

.ks-mission-point-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ks-blue-night);
  margin-bottom: 8px;
}

.ks-mission-point-text {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .ks-why-title {
    font-size: 2.25rem;
  }

  .ks-why-header {
    margin-bottom: 80px;
  }

  .ks-why-subtitle {
    font-size: 1.125rem;
  }

  .ks-why-image {
    height: 256px;
  }

  .ks-why-body {
    padding: 32px;
  }

  .ks-why-card-text {
    font-size: 1rem;
  }

  .ks-mission-subtitle {
    font-size: 1.25rem;
  }

  .ks-mission-title {
    font-size: 2.25rem;
  }

  .ks-mission-description {
    font-size: 1.125rem;
  }

  .ks-mission-points {
    gap: 32px;
  }

  .ks-mission-icon {
    width: 56px;
    height: 56px;
  }

  .ks-mission-icon .ks-icon-img {
    width: 28px;
    height: 28px;
  }

  .ks-mission-point-title {
    font-size: 1.25rem;
  }

  .ks-mission-point-text {
    font-size: 1rem;
  }

  .ks-mission-cta {
    width: fit-content;
  }
}

@media (min-width: 768px) {
  .ks-why {
    padding: 96px 0;
  }

  .ks-why-title {
    font-size: 3rem;
  }

  .ks-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ks-why-body {
    text-align: left;
  }

  .ks-why-link {
    justify-content: flex-start;
  }

  .ks-why-body.ks-rtl-text {
    text-align: right;
  }

  .ks-mission {
    padding: 80px 0;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  }

  .ks-mission-title {
    font-size: 3rem;
  }

  .ks-mission-copy {
    text-align: left;
  }

  .ks-mission-copy.ks-rtl-text {
    text-align: right;
  }

}

@media (min-width: 1024px) {
  .ks-why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ks-testimonials {
  background: #fff;
  padding: 48px 0;
  border-top: 1px solid #f1f5f9;
}

.ks-testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}

.ks-testimonials-header h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-family: 'Playfair Display', serif;
  color: var(--ks-blue-night);
  margin-bottom: 12px;
}

.ks-testimonials-header p {
  color: #64748b;
}

.ks-testimonial-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.ks-testimonial-card {
  background: #f8fafc;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 8px 16px rgba(15,23,42,0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.3s ease;
}

.ks-testimonial-card:hover {
  box-shadow: 0 12px 20px rgba(15,23,42,0.12);
}

.ks-quote {
  font-size: 2rem;
  color: rgba(212,175,55,0.4);
}

.ks-testimonial-text {
  color: #475569;
  font-style: italic;
}

.ks-testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.ks-stars span {
  color: var(--ks-gold);
}
.ks-hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.ks-hero-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.ks-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: rgba(212, 175, 55, 0.8);
  margin-bottom: 16px;
}

.ks-hero-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.ks-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.ks-hero-visual {
  display: grid;
  gap: 16px;
}

.ks-hero-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: var(--ks-radius);
  box-shadow: var(--ks-shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ks-hero-card-alt {
  background: rgba(212, 175, 55, 0.15);
}

.ks-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.2);
  color: var(--ks-gold);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ks-grid {
  display: grid;
  gap: 24px;
}

.ks-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.ks-card {
  background: #fff;
  border-radius: var(--ks-radius);
  border: 1px solid var(--ks-border);
  box-shadow: var(--ks-shadow-soft);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ks-card-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.ks-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ks-shadow);
}

.ks-card-body {
  padding: 20px;
}

.ks-card-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.ks-card-text {
  font-size: 0.95rem;
}

.ks-card-actions {
  margin-top: 12px;
}

.ks-link {
  color: var(--ks-gold-dark);
  font-weight: 600;
}

.ks-product-grid,
.products {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.ks-product-card .button,
.woocommerce .button {
  background: var(--ks-blue-night);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
}

.ks-product-card .ks-card-body {
  display: grid;
  gap: 8px;
}

.ks-footer {
  background: #111827;
  color: #fff;
  padding: 80px 0 40px;
}

.ks-footer-logo {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.ks-footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 32px;
}

.ks-footer-widget-area {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ks-footer-menu-vertical {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,0.8);
}

.ks-footer-menu-vertical a {
  color: rgba(255,255,255,0.8);
  transition: color 0.2s ease;
}

.ks-footer-menu-vertical a:hover {
  color: #fff;
}

.ks-footer-widget h4,
.ks-footer-title {
  margin-bottom: 12px;
  font-size: 1rem;
}

.ks-footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.ks-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

.ks-footer-menu {
  list-style: none;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.ks-vip-teaser {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.ks-vip-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--ks-radius);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ks-vip-card ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.ks-post-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.ks-blog-page {
  background: var(--ks-blanc-perle);
  padding: 10px 0 64px;
  min-height: 100vh;
}

.ks-blog-header {
  text-align: center;
  margin-bottom: 48px;
}

.ks-blog-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ks-blue-night);
  margin-bottom: 12px;
}

.ks-blog-subtitle {
  color: #4b5563;
  font-size: 1.125rem;
  max-width: 720px;
  margin: 0 auto;
}

.ks-blog-layout {
  display: grid;
  gap: 32px;
}

.ks-blog-main {
  min-width: 0;
}

.ks-blog-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

.ks-blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ks-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

.ks-blog-card-media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.ks-blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.5s ease;
}

.ks-blog-card:hover .ks-blog-card-media img {
  transform: scale(1.05);
}

.ks-blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ks-blog-card-meta {
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 12px;
}

.ks-blog-card-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ks-blog-card-date img {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

.ks-blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ks-blue-night);
  margin: 0 0 12px;
  line-height: 1.35;
}

.ks-blog-card-title a {
  color: inherit;
  transition: color 0.3s ease;
}

.ks-blog-card-title a:hover {
  color: var(--ks-gold);
}

.ks-blog-card-excerpt {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ks-blog-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ks-blog-card-author {
  font-size: 0.75rem;
  color: #9ca3af;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ks-blog-card-author img {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

.ks-blog-card-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ks-blue-night);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.ks-blog-card:hover .ks-blog-card-link {
  transform: translateX(4px);
  color: var(--ks-gold);
}

.ks-blog-card-link.is-rtl {
  flex-direction: row-reverse;
}

.ks-blog-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.ks-blog-page-link {
  min-width: 36px;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  color: #374151;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.ks-blog-page-link.is-active {
  background: var(--ks-gold);
  border-color: var(--ks-gold);
  color: #fff;
}

.ks-blog-sidebar {
  display: grid;
  gap: 24px;
}

.ks-blog-sidebar-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  padding: 24px;
}

.ks-blog-sidebar-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ks-blue-night);
  margin: 0 0 16px;
}

.ks-blog-search {
  position: relative;
}

.ks-blog-search-input {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 12px 10px 40px;
  font-size: 0.95rem;
  background: #fff;
}

.ks-blog-search-button {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.ks-blog-search-button img {
  width: 18px;
  height: 18px;
  opacity: 0.5;
}

.ks-blog-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.ks-blog-cat-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #4b5563;
  font-weight: 500;
  transition: color 0.3s ease;
}

.ks-blog-cat-button:hover {
  color: var(--ks-gold);
}

.ks-blog-cat-button.is-active {
  color: var(--ks-gold);
  font-weight: 700;
}

.ks-blog-cat-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ks-gold);
  display: inline-block;
}

.ks-blog-popular-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.ks-blog-popular-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.ks-blog-popular-item img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  background: #f3f4f6;
}

.ks-blog-popular-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ks-blue-night);
  margin: 0 0 4px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ks-blog-popular-item:hover .ks-blog-popular-title {
  color: var(--ks-gold);
}

.ks-blog-popular-date {
  font-size: 0.75rem;
  color: #9ca3af;
  margin: 0;
}

.ks-blog-vip {
  background: var(--ks-blue-night);
  color: #fff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(15,23,42,0.2);
}

.ks-blog-vip img {
  width: 40px;
  height: 40px;
  display: block;
  margin: 0 auto 12px;
  filter: invert(74%) sepia(17%) saturate(1094%) hue-rotate(5deg) brightness(98%) contrast(92%);
}

.ks-blog-vip-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.ks-blog-vip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ks-gold);
  color: var(--ks-blue-night);
  font-weight: 700;
}

.ks-blog-empty {
  text-align: center;
  padding: 48px 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  box-shadow: 0 8px 16px rgba(15,23,42,0.08);
}

.ks-blog-empty-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.ks-blog-empty-icon img {
  width: 28px;
  height: 28px;
  opacity: 0.5;
}

.ks-blog-empty-text {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 16px;
}

.ks-blog-empty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--ks-blue-night);
  font-weight: 600;
}

.ks-blog-article {
  background: var(--ks-blanc-perle);
  min-height: 100vh;
}

.ks-blog-article-hero {
  position: relative;
  background: #0a0a0a;
  color: #fff;
  padding: 64px 0 96px;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ks-blog-article-hero-bg {
  position: absolute;
  inset: 0;
}

.ks-blog-article-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.ks-blog-article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.4), rgba(10,10,10,0.4), transparent);
}

.ks-blog-article-hero-content {
  position: relative;
  z-index: 2;
}

.ks-blog-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d1d5db;
  font-size: 0.9rem;
  margin-bottom: 24px;
  transition: color 0.3s ease;
}

.ks-blog-back img {
  width: 16px;
  height: 16px;
}

.ks-blog-back:hover {
  color: var(--ks-gold);
}

.ks-blog-article-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d4af37;
  font-weight: 500;
  margin-bottom: 16px;
}

.ks-blog-article-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #d1d5db;
  font-size: 0.9rem;
}

.ks-blog-article-date img {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.ks-blog-article-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
}

.ks-blog-article-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.ks-blog-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--ks-gold);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.ks-blog-author-label {
  font-size: 0.8rem;
  color: #9ca3af;
  margin: 0;
}

.ks-blog-author-name {
  font-weight: 600;
  margin: 0;
}

.ks-blog-article-body {
  padding: 48px 0 64px;
}

.ks-blog-article-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: stretch;
}

.ks-blog-article-toc {
  display: none;
}

.ks-blog-toc {
  background: rgba(243,244,246,0.85);
  border: 1px solid rgba(229,231,235,0.8);
  border-radius: 12px;
  padding: 24px;
  position: sticky;
  top: 96px;
}

.ks-blog-toc-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ks-blue-night);
  margin-bottom: 16px;
}

.ks-blog-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.ks-blog-toc-item {
  margin: 0;
}

.ks-blog-toc a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: #4b5563;
  transition: color 0.3s ease;
}

.ks-blog-toc-level-h3 a {
  padding-left: 16px;
  font-size: 0.8rem;
  color: #6b7280;
}

.ks-blog-toc-level-h3 .ks-blog-toc-dot {
  opacity: 0.6;
}

.ks-blog-toc a:hover {
  color: var(--ks-gold);
}

.ks-blog-toc-dot {
  color: var(--ks-gold);
  margin-top: 2px;
}

.ks-blog-article-content {
  flex: 1;
}

.ks-blog-article-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  box-shadow: 0 4px 10px rgba(15,23,42,0.06);
  padding: 24px;
}

.ks-blog-article-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ks-blue-night);
  margin: 32px 0 16px;
  scroll-margin-top: 120px;
}

.ks-blog-article-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ks-blue-night);
  margin: 24px 0 12px;
  scroll-margin-top: 120px;
}

.ks-blog-article-card p {
  color: #374151;
  line-height: 1.7;
}

.ks-blog-article-card ul,
.ks-blog-article-card ol {
  margin: 0 0 16px 20px;
  color: #374151;
}

.ks-blog-article-card img {
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(15,23,42,0.1);
  margin: 24px auto;
}

.ks-blog-article-card a {
  color: var(--ks-gold);
  font-weight: 600;
}

.ks-blog-article-share {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ks-blog-share-actions {
  display: flex;
  gap: 8px;
}

.ks-blog-share-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.ks-blog-share-btn img {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

@media (min-width: 768px) {
  .ks-blog-page {
    padding: 10px 0 80px;
  }

  .ks-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ks-blog-article-card {
    padding: 32px;
  }
}

@media (min-width: 1024px) {
  .ks-blog-layout {
    grid-template-columns: 3fr 1fr;
    gap: 48px;
  }

  .ks-blog-article-layout {
    flex-direction: row;
    gap: 48px;
  }

  .ks-blog-article-toc {
    display: block;
    flex: 0 0 260px;
  }

  .ks-blog-article-content {
    flex: 1;
  }
}

@media (min-width: 1280px) {
  .ks-blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ks-accordion {
  display: grid;
  gap: 16px;
}

.ks-accordion-item {
  background: #fff;
  border-radius: var(--ks-radius);
  padding: 20px;
  border: 1px solid var(--ks-border);
}

.ks-chatbot-placeholder {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
}

.ks-chatbot-toggle {
  background: var(--ks-blue-night);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  box-shadow: var(--ks-shadow);
}

.ks-chatbot-panel {
  display: none;
  background: #fff;
  color: var(--ks-text);
  border-radius: var(--ks-radius);
  box-shadow: var(--ks-shadow);
  margin-top: 12px;
  min-width: 260px;
  overflow: hidden;
}

.ks-chatbot-header {
  background: var(--ks-blue-night);
  color: #fff;
  padding: 12px 16px;
  font-weight: 600;
}

.ks-chatbot-body {
  padding: 16px;
  color: var(--ks-muted);
}

.ks-chatbot-placeholder.is-open .ks-chatbot-panel {
  display: block;
}

.ks-page-title {
  margin-bottom: 24px;
}

.ks-page-title-react {
  font-size: 2.25rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--ks-blue-night);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .ks-page-title-react {
    font-size: 3rem;
  }
}

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

.mb-12 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 1.2;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1.2;
}

.font-bold {
  font-weight: 700;
}

.text-blue-night {
  color: var(--ks-blue-night);
}

.w-24 {
  width: 6rem;
}

.h-1 {
  height: 0.25rem;
}

.bg-gold {
  background: var(--ks-gold);
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .md\\:mb-16 {
    margin-bottom: 4rem;
  }

  .md\\:text-5xl {
    font-size: 3rem;
    line-height: 1.2;
  }
}

.ks-page-content {
  /* max-width: 800px; */
}
.ks-page-content p {
  margin-top:20px;
}
.ks-vip-gate-card {
  background: #ffffff;
  color: var(--ks-text);
  text-align: center;
  padding: 32px;
}

.ks-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.ks-meta {
  color: var(--ks-muted);
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  .ks-shop-hero {
    padding: 28px 0;
  }
  .ks-shop-hero-inner {
    gap: 16px;
    min-height: 0;
  }
  .ks-shop-hero-media {
    width: 128px;
    height: 128px;
    flex-basis: 128px;
  }
  .ks-shop-hero-subtitle {
    font-size: 0.96rem;
  }
  .ks-nav {
    display: none;
  }
  .ks-mobile-toggle {
    display: flex;
  }
  .ks-mobile-menu.is-open {
    display: block;
  }
}

@media (max-width: 640px) {
  .ks-header-inner {
    height: 72px;
  }
  .ks-shop-hero {
    padding: 20px 0;
  }
  .ks-shop-hero-inner {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .ks-shop-hero-inner.is-rtl {
    flex-direction: column;
    align-items: center;
  }
  .ks-shop-hero-media {
    order: 1;
    width: 90px;
    height: 90px;
    flex-basis: 90px;
    border-width: 3px;
  }
  .ks-shop-hero-copy {
    order: 2;
    width: 100%;
    text-align: center;
  }
  .ks-shop-hero-inner.is-rtl .ks-shop-hero-copy {
    text-align: center;
  }
  .ks-shop-hero-title {
    font-size: clamp(1.35rem, 7vw, 1.9rem);
    margin-bottom: 6px;
  }
  .ks-shop-hero-subtitle {
    font-size: 0.88rem;
    line-height: 1.5;
  }
  .ks-product-detail-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .ks-product-detail-buy {
    width: 100%;
    flex: none;
  }
  .ks-product-detail-share {
    width: 100%;
    justify-content: center;
    flex-wrap: nowrap;
  }
  .ks-product-detail-share-btn {
    width: 42px;
    height: 42px;
  }
  .ks-currency-select {
    min-width: 68px;
    max-width: 82px;
    font-size: 0.8rem;
    padding: 5px 20px 5px 8px;
  }
  [dir='rtl'] .ks-currency-select {
    padding: 5px 8px 5px 20px;
  }
  .ks-hero {
    padding-top: 120px;
  }
  .ks-section {
    padding: 20px 0;
  }
  .ks-mission-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 640px) {
  .ks-why-image {
    height: 256px;
  }
}

@media (max-width: 768px) {
  .ks-home-hero {
    align-items: center;
    padding-top: 140px;
    padding-bottom: 60px;
  }
}

@media (min-width: 768px) {
  .ks-why {
    padding: 96px 0;
  }
  .ks-mission,
  .ks-testimonials {
    padding: 80px 0;
  }
  .ks-why-body {
    text-align: left;
    align-items: flex-start;
  }
  .ks-mission {
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(15,23,42,0.12);
  }
}
