/**
 * Jewel Al-Basem - Main Stylesheet
 * 
 * @package Jewel_Albasem
 */

:root {
  /* Brand Colors */
  --color-primary: #c01826;        /* Exact Jewel Red */
  --color-primary-hover: #a0121e;
  --color-black: #000000;
  --color-dark: #1a1a1a;
  
  /* Neutral Palette */
  --color-white: #ffffff;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f1f3f5;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;

  /* Typography */
  --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-arabic: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Tahoma, sans-serif;

  /* Layout */
  --container-max-width: 1360px;
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s ease;
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

/* Default / LTR (English) */
html[dir="ltr"] body,
body.ltr,
body:not(.rtl) {
  direction: ltr;
  text-align: left;
  font-family: var(--font-primary);
  color: var(--color-dark);
  background-color: var(--color-white);
  line-height: 1.5;
  min-height: 100vh;
}

/* RTL (Arabic) */
html[dir="rtl"] body,
body.rtl {
  direction: rtl;
  text-align: right;
  font-family: var(--font-arabic);
  color: var(--color-dark);
  background-color: var(--color-white);
  line-height: 1.5;
  min-height: 100vh;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Grid System */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Utility Helpers */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.items-stretch { align-items: stretch; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.flex-grow { flex-grow: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-x-0 { left: 0; right: 0; }
.top-0 { top: 0; }
.top-3 { top: 0.75rem; }
.right-0 { right: 0; }
.right-3 { right: 0.75rem; }
.left-0 { left: 0; }
.left-3 { left: 0.75rem; }
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.top-full { top: 100%; }
.z-0 { z-index: 0; }
.z-5 { z-index: 5; }
.z-10 { z-index: 10; }
.z-15 { z-index: 15; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.w-full { width: 100%; }
.w-auto { width: auto; }
.w-3 { width: 0.75rem; }
.w-3\.5 { width: 0.875rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-32 { width: 8rem; }
.w-36 { width: 9rem; }
.w-44 { width: 11rem; }
.w-48 { width: 12rem; }
.w-52 { width: 13rem; }
.w-56 { width: 14rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 38rem; }
.max-w-2xl { max-width: 42rem; }
.min-h-screen { min-height: 100vh; }
.h-full { height: 100%; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.aspect-square { aspect-ratio: 1 / 1; }

.p-1 { padding: 0.25rem; }
.p-1\.5 { padding: 0.375rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pt-2 { padding-top: 0.5rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-8 { margin-left: 2rem; margin-right: 2rem; }
.mr-1 { margin-right: 0.25rem; }
.ml-1 { margin-left: 0.25rem; }
.mt-auto { margin-top: auto; }
.mt-1 { margin-top: 0.25rem; }
.mt-2\.5 { margin-top: 0.625rem; }
.mt-3 { margin-top: 0.75rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-2\.5 { margin-bottom: 0.625rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-7 { margin-bottom: 1.75rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }

.bg-black { background-color: var(--color-black); }
.bg-white { background-color: var(--color-white); }
.bg-gray-50 { background-color: var(--color-gray-50); }
.bg-gray-100 { background-color: var(--color-gray-100); }
.text-white { color: var(--color-white); }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-700 { color: var(--color-gray-700); }
.text-gray-800 { color: var(--color-dark); }
.text-gray-900 { color: #111827; }
.text-red-600 { color: var(--color-primary); }

.border-b { border-bottom-width: 1px; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }

.rounded-md { border-radius: 0.375rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 12px; }
.rounded-full { border-radius: 9999px; }
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.45rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-center { text-align: center; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.7; }
.cursor-pointer { cursor: pointer; }
.select-none { user-select: none; }
.rotate-180 { transform: rotate(180deg); }
.tabular-nums { font-variant-numeric: tabular-nums; }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }
.scroll-smooth { scroll-behavior: smooth; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.transition-all { transition: var(--transition-normal); }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease; }
.transition-transform { transition: transform 0.3s ease; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }

/* Line Clamp */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Hide Scrollbar */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Multiply Blending */
.mix-multiply {
  mix-blend-mode: multiply;
  background-color: transparent !important;
}

/* Links & Buttons */
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ---------------------------------------------------- */
/* TOP BAR MARQUEE / TICKER                             */
/* ---------------------------------------------------- */
.jewel-top-bar {
  height: 38px;
  display: flex;
  align-items: center;
}

.jewel-marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  width: 100%;
}

.jewel-marquee-track {
  display: flex;
  flex-shrink: 0;
  min-width: 100%;
  animation: jewelMarqueeLTR 35s linear infinite;
}

body.rtl .jewel-marquee-track,
html[dir="rtl"] .jewel-marquee-track {
  animation: jewelMarqueeRTL 35s linear infinite;
}

.jewel-marquee-container:hover .jewel-marquee-track {
  animation-play-state: paused;
}

@keyframes jewelMarqueeLTR {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@keyframes jewelMarqueeRTL {
  from { transform: translateX(0); }
  to { transform: translateX(100%); }
}

/* ---------------------------------------------------- */
/* MAIN HEADER & LOGO                                   */
/* ---------------------------------------------------- */
.jewel-header-main {
  background: #ffffff;
}

.jewel-logo-wrapper img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ---------------------------------------------------- */
/* SEARCH BAR                                           */
/* ---------------------------------------------------- */
.jewel-search-wrapper {
  max-width: 580px;
}

.jewel-search-wrapper .jewel-search-input,
.jewel-mobile-search-wrapper .jewel-search-input {
  width: 100%;
  height: 44px;
  background-color: #f1f3f5;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #1f2937;
  outline: none;
  transition: all 0.2s ease;
}

.jewel-search-wrapper .jewel-search-input::placeholder,
.jewel-mobile-search-wrapper .jewel-search-input::placeholder {
  color: #888888;
  font-size: 0.85rem;
}

.jewel-search-wrapper .jewel-search-input:focus,
.jewel-mobile-search-wrapper .jewel-search-input:focus {
  background-color: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 0 0 2px rgba(192, 24, 38, 0.1);
}

body.rtl .jewel-search-input,
html[dir="rtl"] .jewel-search-input {
  padding-right: 1.25rem;
  padding-left: 2.75rem;
  text-align: right;
}

body.rtl .jewel-search-submit,
html[dir="rtl"] .jewel-search-submit {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  right: auto;
  transform: translateY(-50%);
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}

body.ltr .jewel-search-input,
body:not(.rtl) .jewel-search-input,
html[dir="ltr"] .jewel-search-input {
  padding-left: 1.25rem;
  padding-right: 2.75rem;
  text-align: left;
}

body.ltr .jewel-search-submit,
body:not(.rtl) .jewel-search-submit,
html[dir="ltr"] .jewel-search-submit {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  left: auto;
  transform: translateY(-50%);
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}

.jewel-search-submit:hover {
  color: var(--color-primary);
}

/* ---------------------------------------------------- */
/* ACTIONS & ICONS                                      */
/* ---------------------------------------------------- */
.jewel-header-actions {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}

.jewel-header-actions a {
  color: #1a1a1a;
  display: flex;
  align-items: center;
}

.jewel-header-actions a:hover {
  color: var(--color-primary);
}

.jewel-cart-count,
.jewel-wishlist-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 9999px;
  min-width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

body.rtl .jewel-cart-count,
body.rtl .jewel-wishlist-count,
html[dir="rtl"] .jewel-cart-count,
html[dir="rtl"] .jewel-wishlist-count {
  right: -8px;
  left: auto;
}

/* Language Dropdown */
.jewel-lang-switcher {
  position: relative;
}

.jewel-lang-dropdown {
  position: absolute;
  top: 100%;
  min-width: 8rem;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border: 1px solid #f1f3f5;
  border-radius: 6px;
  padding: 0.35rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s ease;
  z-index: 60;
}

body.rtl .jewel-lang-dropdown,
html[dir="rtl"] .jewel-lang-dropdown {
  left: 0;
  right: auto;
}

body.ltr .jewel-lang-dropdown,
body:not(.rtl) .jewel-lang-dropdown,
html[dir="ltr"] .jewel-lang-dropdown {
  right: 0;
  left: auto;
}

.jewel-lang-switcher:hover .jewel-lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.jewel-lang-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  color: #374151;
}

.jewel-lang-dropdown a:hover {
  background-color: #f8fafc;
  color: var(--color-primary);
}

/* ---------------------------------------------------- */
/* NAVIGATION BAR                                       */
/* ---------------------------------------------------- */
.jewel-main-navigation {
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

.jewel-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.jewel-nav-list li {
  position: relative;
}

.jewel-nav-list li a,
.jewel-nav-list li.menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 0.25rem;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.jewel-nav-list li a:hover {
  color: var(--color-primary);
}

.jewel-nav-list li.current-menu-item > a,
.jewel-nav-list a.active-link {
  color: var(--color-primary) !important;
  font-weight: 700;
}

.nav-chevron {
  color: #6b7280;
  transition: transform 0.2s ease, color 0.2s ease;
}

.jewel-nav-list li:hover .nav-chevron {
  color: var(--color-primary);
  transform: rotate(180deg);
}

.jewel-nav-list .sub-menu {
  list-style: none;
  min-width: 12.5rem;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border: 1px solid #f1f3f5;
  border-radius: 6px;
  padding: 0.5rem 0;
  position: absolute;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 50;
}

body.rtl .jewel-nav-list .sub-menu,
html[dir="rtl"] .jewel-nav-list .sub-menu {
  right: 0;
  left: auto;
}

body.ltr .jewel-nav-list .sub-menu,
body:not(.rtl) .jewel-nav-list .sub-menu,
html[dir="ltr"] .jewel-nav-list .sub-menu {
  left: 0;
  right: auto;
}

.jewel-nav-list li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.jewel-nav-list .sub-menu li a {
  padding: 0.5rem 1rem;
  font-size: 0.825rem;
  font-weight: 500;
  color: #4b5563;
  display: block;
}

.jewel-nav-list .sub-menu li a:hover {
  background-color: #f8fafc;
  color: var(--color-primary);
}

/* ---------------------------------------------------- */
/* HERO SECTION & SLIDER                                */
/* ---------------------------------------------------- */
.jewel-hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  user-select: none;
  background-color: #8c0314;
}

.jewel-hero-slides {
  position: relative;
  width: 100%;
  height: 560px;
  min-height: 560px;
}

.jewel-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s ease;
}

.jewel-hero-slide.active-slide {
  opacity: 1;
  visibility: visible;
  z-index: 10;
  pointer-events: auto;
}

.jewel-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.jewel-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.rtl .jewel-hero-bg img,
html[dir="rtl"] .jewel-hero-bg img {
  object-position: left center;
}

body.ltr .jewel-hero-bg img,
html[dir="ltr"] .jewel-hero-bg img {
  object-position: right center;
  transform: scaleX(-1);
}

.jewel-hero-content-box {
  position: relative;
  z-index: 15;
  max-width: 580px;
}

body.rtl .jewel-hero-content-box,
html[dir="rtl"] .jewel-hero-content-box {
  margin-right: 0;
  margin-left: auto;
  text-align: right;
}

body.ltr .jewel-hero-content-box,
html[dir="ltr"] .jewel-hero-content-box {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.hero-heading {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}

.text-light { color: #ffffff; }
.text-light-muted { color: rgba(255, 255, 255, 0.9); }
.text-dark { color: #111827; }
.text-dark-muted { color: #374151; }

.jewel-hero-btn {
  font-weight: 700;
  font-size: 1rem;
  border-radius: 6px;
  padding: 0.8rem 2.4rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.jewel-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.28);
}

/* ---------------------------------------------------- */
/* DUAL MODEL SLIDE (SLIDE 3)                           */
/* ---------------------------------------------------- */
.jewel-slide-type-dual-model {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #fbf8f3;
}

.jewel-model-left {
  position: absolute;
  bottom: 0;
  left: 3%;
  height: 94%;
  max-height: 525px;
  z-index: 5;
  pointer-events: none;
}

.jewel-model-left img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom left;
  display: block;
}

.jewel-model-right {
  position: absolute;
  bottom: 0;
  right: 3%;
  height: 94%;
  max-height: 525px;
  z-index: 5;
  pointer-events: none;
}

.jewel-model-right img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
  display: block;
}

.jewel-hero-content-center {
  position: relative;
  z-index: 15;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.jewel-hero-content-center .hero-heading {
  text-align: center;
}

.jewel-hero-content-center .hero-desc {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Dots Indicator */
.jewel-hero-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  z-index: 25;
}

.jewel-dot {
  width: 9px;
  height: 9px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.jewel-dot:hover {
  background-color: rgba(255, 255, 255, 0.75);
}

.jewel-dot.active-dot {
  background-color: #ffffff;
  transform: scale(1.35);
  box-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

/* ---------------------------------------------------- */
/* CATEGORIES SECTION                                   */
/* ---------------------------------------------------- */
.jewel-categories-section {
  background-color: #ffffff;
}

.jewel-cat-arrow {
  background: none;
  border: none;
  cursor: pointer;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.jewel-cat-arrow:hover {
  color: var(--color-primary);
  transform: scale(1.15);
}

.jewel-cat-img-box {
  background-color: #fff5f2;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.jewel-cat-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  background: transparent !important;
  transition: transform 0.35s ease;
}

.jewel-category-card:hover .jewel-cat-img-box {
  background-color: #fef0eb;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.jewel-category-card:hover .jewel-cat-img-box img {
  transform: scale(1.06);
}

.jewel-cat-title {
  color: #111827;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.jewel-category-card:hover .jewel-cat-title {
  color: var(--color-primary);
}

/* ---------------------------------------------------- */
/* FLASH DEALS COUNTDOWN BANNER                         */
/* ---------------------------------------------------- */
.jewel-deals-banner {
  background-color: #111317;
  color: #ffffff;
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.jewel-deals-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

body.ltr .jewel-deals-content,
html[dir="ltr"] .jewel-deals-content {
  text-align: left;
}

body.rtl .jewel-deals-content,
html[dir="rtl"] .jewel-deals-content {
  text-align: right;
}

@media (max-width: 1023px) {
  .jewel-deals-row {
    flex-direction: column;
    text-align: center;
  }
  .jewel-deals-content {
    text-align: center !important;
  }
}

.jewel-countdown-box {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.jewel-time-unit {
  text-align: center;
  padding: 0 0.5rem;
}

.jewel-time-num {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.jewel-time-label {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-top: 0.4rem;
  display: block;
}

.jewel-time-divider {
  height: 44px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.jewel-deals-btn {
  background-color: #ffffff;
  color: #111317;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.65rem 1.75rem;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.jewel-deals-btn:hover {
  background-color: #f3f4f6;
  transform: translateY(-1px);
  color: #000000;
}

/* ---------------------------------------------------- */
/* LATEST PRODUCTS GRID SECTION                         */
/* ---------------------------------------------------- */
.jewel-latest-products-section {
  background-color: #ffffff;
}

.jewel-product-card {
  position: relative;
}

.jewel-prod-img-box {
  position: relative !important;
  background-color: #ffffff !important;
  border-radius: 0 !important;
  overflow: hidden;
  width: 100%;
}

.jewel-prod-img-box .jewel-wishlist-btn {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  left: auto !important;
  bottom: auto !important;
  z-index: 20 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  height: 28px !important;
  padding: 0 !important;
  color: #9ca3af !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
}

.jewel-prod-img-box .jewel-wishlist-btn:hover {
  color: var(--color-primary) !important;
}

.jewel-prod-img-box .jewel-wishlist-btn:hover svg {
  fill: var(--color-primary) !important;
  color: var(--color-primary) !important;
}

.jewel-add-to-cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.jewel-add-to-cart-btn:hover {
  color: var(--color-primary);
  transform: scale(1.15);
}

.jewel-discount-badge {
  position: absolute !important;
  top: 10px !important;
  left: 10px !important;
  right: auto !important;
  background-color: #8c0314 !important;
  color: #ffffff !important;
  font-size: 0.725rem !important;
  font-weight: 700 !important;
  padding: 0.15rem 0.5rem !important;
  border-radius: 4px !important;
  z-index: 15 !important;
  line-height: 1.3 !important;
}

body.rtl .jewel-discount-badge,
html[dir="rtl"] .jewel-discount-badge {
  left: 10px !important;
  right: auto !important;
}

body.ltr .jewel-discount-badge,
html[dir="ltr"] .jewel-discount-badge {
  left: 10px !important;
  right: auto !important;
}

.jewel-deals-products-section {
  background-color: #ffffff;
}

.jewel-product-price {
  display: flex !important;
  align-items: baseline !important;
  gap: 0.4rem !important;
  color: var(--color-primary);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none !important;
}

.jewel-product-price ins,
.jewel-product-card ins,
.price ins,
ins {
  text-decoration: none !important;
  color: var(--color-primary) !important;
  font-weight: 800 !important;
  font-size: 1.05rem !important;
  order: 1 !important;
}

.jewel-product-price del,
.jewel-product-card del,
.price del {
  color: #9ca3af !important;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
  text-decoration: line-through !important;
  order: 2 !important;
  opacity: 0.75;
}

.jewel-product-price .amount,
.jewel-product-price span,
.jewel-product-price a {
  text-decoration: none !important;
}

/* ---------------------------------------------------- */
/* PROMOTIONAL TRIO BANNERS SECTION                     */
/* ---------------------------------------------------- */
.jewel-promo-banners-section {
  background-color: #ffffff;
}

.jewel-promo-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative !important;
  display: block;
  width: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.jewel-promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.jewel-promo-img-wrapper {
  height: 480px;
  width: 100%;
  overflow: hidden;
  background-color: #f1f3f5;
  position: relative;
}

.jewel-promo-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.jewel-promo-card:hover .jewel-promo-img-wrapper img {
  transform: scale(1.05);
}

.jewel-promo-text-box {
  position: absolute !important;
  top: 32px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  padding: 0 1.25rem !important;
  text-align: center !important;
  z-index: 30 !important;
  pointer-events: none;
}

.jewel-promo-title {
  color: #ffffff !important;
  font-size: 1.6rem !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
  margin: 0 !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.9) !important;
  letter-spacing: -0.01em;
}

@media (max-width: 767px) {
  .jewel-promo-img-wrapper { height: 380px; }
  .jewel-promo-title { font-size: 1.35rem !important; }
}

/* ---------------------------------------------------- */
/* PRESSURE COOKER FEATURE BANNER SECTION (HERO MATCH)  */
/* ---------------------------------------------------- */
.jewel-cooker-banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  user-select: none;
  background-color: #fbf8f3;
  padding: 0 !important;
  margin: 2rem 0;
}

.jewel-cooker-banner-card {
  position: relative;
  width: 100%;
  height: 560px;
  min-height: 560px;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jewel-cooker-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.jewel-cooker-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.jewel-cooker-content-wrap {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 860px;
  padding: 2rem 1rem;
  text-align: center;
}

.jewel-cooker-main-title {
  color: #ffffff !important;
  font-size: 2.75rem !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
  margin-bottom: 0.75rem !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.75), 0 1px 4px rgba(0, 0, 0, 0.95) !important;
  letter-spacing: -0.02em;
}

.jewel-cooker-sub-desc {
  color: #ffffff !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  line-height: 1.7 !important;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.75rem !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.95) !important;
}

.jewel-cooker-action-btn {
  background-color: #8c0314 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  border-radius: 6px !important;
  padding: 0.75rem 2.5rem !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.jewel-cooker-action-btn:hover {
  background-color: #700210 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45) !important;
}

@media (max-width: 767px) {
  .jewel-cooker-banner-card { height: 480px; min-height: 480px; }
  .jewel-cooker-main-title { font-size: 1.75rem !important; }
  .jewel-cooker-sub-desc { font-size: 0.9rem !important; }
}

/* ---------------------------------------------------- */
/* HOSPITALITY GATHERING BANNER SECTION (HERO MATCH)    */
/* ---------------------------------------------------- */
.jewel-hospitality-banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  user-select: none;
  background-color: #f7f3ee;
  padding: 0 !important;
  margin: 2.5rem 0;
}

.jewel-hospitality-card {
  position: relative;
  width: 100%;
  height: 560px;
  min-height: 560px;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
}

.jewel-hospitality-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.jewel-hospitality-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.rtl .jewel-hospitality-bg img,
html[dir="rtl"] .jewel-hospitality-bg img {
  object-position: right center;
}

body.ltr .jewel-hospitality-bg img,
html[dir="ltr"] .jewel-hospitality-bg img {
  object-position: left center;
  transform: scaleX(-1);
}

.jewel-hospitality-content-box {
  position: relative;
  z-index: 10;
  max-width: 520px;
}

body.rtl .jewel-hospitality-content-box,
html[dir="rtl"] .jewel-hospitality-content-box {
  margin-left: 0 !important;
  margin-right: auto !important;
  text-align: right !important;
}

body.ltr .jewel-hospitality-content-box,
html[dir="ltr"] .jewel-hospitality-content-box {
  margin-right: 0 !important;
  margin-left: auto !important;
  text-align: left !important;
}

.jewel-hospitality-title {
  color: #111827 !important;
  font-size: 2.75rem !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
  margin-bottom: 0.75rem !important;
  letter-spacing: -0.02em;
}

.jewel-hospitality-desc {
  color: #374151 !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  line-height: 1.7 !important;
  margin-bottom: 1.75rem !important;
}

.jewel-hospitality-btn {
  background-color: #111827 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  border-radius: 6px !important;
  padding: 0.75rem 2.5rem !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.jewel-hospitality-btn:hover {
  background-color: #000000 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35) !important;
}

@media (max-width: 767px) {
  .jewel-hospitality-card { height: 480px; min-height: 480px; }
  .jewel-hospitality-title { font-size: 1.75rem !important; }
  .jewel-hospitality-desc { font-size: 0.9rem !important; }
  .jewel-hospitality-content-box {
    background-color: rgba(255, 255, 255, 0.88) !important;
    padding: 1.5rem !important;
    border-radius: 12px !important;
    backdrop-filter: blur(6px) !important;
    margin: auto !important;
  }
}

/* ---------------------------------------------------- */
/* CATEGORY TABS PRODUCTS SECTION                       */
/* ---------------------------------------------------- */
.jewel-category-tabs-section {
  background-color: #ffffff;
}

.jewel-category-tabs-section .grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1.5rem !important;
  width: 100%;
}

@media (max-width: 767px) {
  .jewel-category-tabs-section .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1rem !important;
  }
}

.jewel-tabs-nav-wrapper {
  width: 100%;
}

.jewel-tabs-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.jewel-tab-btn {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.jewel-tab-btn.active-tab {
  background-color: #8c0314 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(140, 3, 20, 0.25);
}

.jewel-tab-btn:not(.active-tab):hover {
  background-color: #f8fafc;
  color: #8c0314;
}

/* ---------------------------------------------------- */
/* WHY JEWEL AL-BASEM FEATURES SECTION                  */
/* ---------------------------------------------------- */
.jewel-why-us-section {
  background-color: #fdf8f6;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.jewel-why-us-section .grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 2rem !important;
}

.jewel-feature-icon-box i {
  color: rgba(168, 1, 13, 1) !important;
}

@media (max-width: 767px) {
  .jewel-why-us-section .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1.5rem !important;
  }
}

/* ---------------------------------------------------- */
/* CUSTOMER TESTIMONIALS SECTION (EXACT MATCH)          */
/* ---------------------------------------------------- */
.jewel-testimonials-section {
  background-color: #ffffff;
}

.jewel-testimonials-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1.5rem !important;
}

.jewel-testimonial-card {
  background-color: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  padding: 1.25rem 1.4rem;
  min-height: auto;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.jewel-testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.jewel-avatar-wrap {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  border: 1.5px solid #f3f4f6;
}

.jewel-avatar-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 50% !important;
  display: block !important;
}

.jewel-quote-icon svg {
  width: 30px;
  height: 30px;
  color: #8c0314;
}

@media (max-width: 1023px) {
  .jewel-testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 639px) {
  .jewel-testimonials-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
}

/* ---------------------------------------------------- */
/* FREQUENTLY ASKED QUESTIONS (FAQ) SECTION             */
/* ---------------------------------------------------- */
.jewel-faq-section {
  background-color: #ffffff;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  width: 100%;
}

.jewel-faq-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .jewel-faq-layout {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4.5rem;
  }
}

/* Sidebar (Title, Subtitle, Logo Badge) */
.jewel-faq-sidebar {
  width: 100%;
}

@media (min-width: 1024px) {
  .jewel-faq-sidebar {
    width: 36%;
    flex-shrink: 0;
  }
}

body.rtl .jewel-faq-sidebar,
html[dir="rtl"] .jewel-faq-sidebar {
  text-align: right;
}

body.ltr .jewel-faq-sidebar,
body:not(.rtl) .jewel-faq-sidebar,
html[dir="ltr"] .jewel-faq-sidebar {
  text-align: left;
}

.jewel-faq-title {
  font-size: 2rem;
  font-weight: 900;
  color: #111827;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .jewel-faq-title {
    font-size: 2.35rem;
  }
}

.jewel-faq-subtitle {
  font-size: 0.95rem;
  color: #6b7280;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.jewel-faq-badge-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1024px) {
  body.rtl .jewel-faq-badge-wrap,
  html[dir="rtl"] .jewel-faq-badge-wrap {
    justify-content: center;
  }
  body.ltr .jewel-faq-badge-wrap,
  html[dir="ltr"] .jewel-faq-badge-wrap {
    justify-content: center;
  }
}

.jewel-faq-badge-img {
  width: 270px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.jewel-faq-badge-img:hover {
  transform: scale(1.03);
}

@media (min-width: 768px) {
  .jewel-faq-badge-img {
    width: 300px;
  }
}

/* Accordion Column */
.jewel-faq-accordion {
  width: 100%;
  flex-grow: 1;
}

.jewel-faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding-top: 1.15rem;
  padding-bottom: 1.15rem;
  transition: all 0.2s ease;
}

.jewel-faq-item:first-child {
  padding-top: 0.25rem;
}

.jewel-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.35rem 0;
  outline: none;
  user-select: none;
}

body.rtl .jewel-faq-btn,
html[dir="rtl"] .jewel-faq-btn {
  text-align: right;
}

body.ltr .jewel-faq-btn,
body:not(.rtl) .jewel-faq-btn,
html[dir="ltr"] .jewel-faq-btn {
  text-align: left;
}

.jewel-faq-question {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  flex-grow: 1;
  transition: color 0.2s ease;
  line-height: 1.5;
}

.jewel-faq-btn:hover .jewel-faq-question {
  color: var(--color-primary, #c01826);
}

.jewel-faq-icon {
  font-size: 1.35rem;
  font-weight: 700;
  color: #374151;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  line-height: 1;
  transition: color 0.2s ease;
}

.jewel-faq-btn:hover .jewel-faq-icon {
  color: var(--color-primary, #c01826);
}

.jewel-faq-answer {
  overflow: hidden;
  transition: all 0.25s ease;
}

.jewel-faq-answer p {
  margin: 0;
  padding-top: 0.65rem;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.8;
}

body.rtl .jewel-faq-answer p,
html[dir="rtl"] .jewel-faq-answer p {
  text-align: right;
}

body.ltr .jewel-faq-answer p,
body:not(.rtl) .jewel-faq-answer p,
html[dir="ltr"] .jewel-faq-answer p {
  text-align: left;
}

/* ---------------------------------------------------- */
/* OUR BRANCHES SECTION (حيّاكم الله في فروعنا)         */
/* ---------------------------------------------------- */
.jewel-branches-section {
  background-color: #ffffff;
  padding-top: 2rem;
  padding-bottom: 5rem;
  width: 100%;
}

.jewel-branches-heading-wrap {
  margin-bottom: 2.5rem;
}

body.rtl .jewel-branches-heading-wrap,
html[dir="rtl"] .jewel-branches-heading-wrap {
  text-align: right;
}

body.ltr .jewel-branches-heading-wrap,
body:not(.rtl) .jewel-branches-heading-wrap,
html[dir="ltr"] .jewel-branches-heading-wrap {
  text-align: left;
}

.jewel-branches-title {
  font-size: 2rem;
  font-weight: 900;
  color: #111827;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .jewel-branches-title {
    font-size: 2.35rem;
  }
}

.jewel-branches-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  width: 100%;
}

@media (max-width: 1023px) {
  .jewel-branches-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 639px) {
  .jewel-branches-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
  }
}

.jewel-branch-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s ease;
}

.jewel-branch-img-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background-color: #f3f4f6;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.jewel-branch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.jewel-branch-card:hover .jewel-branch-img {
  transform: scale(1.03);
}

.jewel-branch-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 1.25rem;
  flex-grow: 1;
}

.jewel-branch-name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.35rem;
  line-height: 1.4;
}

.jewel-branch-pin-icon {
  color: #111827;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.jewel-branch-desc {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jewel-branch-btn {
  width: 100%;
  margin-top: auto;
  background-color: #111827;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.jewel-branch-btn:hover {
  background-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

/* ---------------------------------------------------- */
/* MAIN FOOTER (الفوتر الرئيسي)                         */
/* ---------------------------------------------------- */
.site-footer {
  background-color: #121316;
  color: #ffffff;
  width: 100%;
}

.jewel-main-footer {
  padding-top: 4rem;
  padding-bottom: 2.25rem;
}

.jewel-footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  width: 100%;
}

@media (max-width: 1023px) {
  .jewel-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
  }
}

@media (max-width: 639px) {
  .jewel-footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
}

.jewel-footer-col {
  display: flex;
  flex-direction: column;
}

body.rtl .jewel-footer-col,
html[dir="rtl"] .jewel-footer-col {
  text-align: right;
}

body.ltr .jewel-footer-col,
body:not(.rtl) .jewel-footer-col,
html[dir="ltr"] .jewel-footer-col {
  text-align: left;
}

.jewel-footer-logo-wrap {
  margin-bottom: 1.25rem;
  display: inline-block;
}

.jewel-footer-logo {
  width: 78px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
}

.jewel-footer-logo:hover {
  opacity: 0.85;
}

.jewel-footer-desc {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.jewel-footer-social {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

body.rtl .jewel-footer-social,
html[dir="rtl"] .jewel-footer-social {
  justify-content: flex-start;
}

body.ltr .jewel-footer-social,
body:not(.rtl) .jewel-footer-social,
html[dir="ltr"] .jewel-footer-social {
  justify-content: flex-start;
}

.jewel-footer-social a {
  color: #ffffff;
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.jewel-footer-social a:hover {
  color: var(--color-primary, #c01826);
  transform: translateY(-2px);
}

.jewel-footer-heading {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.jewel-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.jewel-footer-links li a {
  color: #9ca3af;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
  line-height: 1.5;
}

.jewel-footer-links li a:hover {
  color: #ffffff;
}

.jewel-footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.12);
  margin-top: 3.5rem;
  margin-bottom: 1.75rem;
  width: 100%;
}

.jewel-footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.jewel-payment-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.jewel-payment-card {
  background-color: #ffffff;
  border-radius: 6px;
  height: 32px;
  min-width: 48px;
  padding: 0 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.jewel-payment-card:hover {
  transform: translateY(-2px);
}

.jewel-payment-card img {
  max-height: 20px;
  max-width: 38px;
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ---------------------------------------------------- */
/* PAGE HERO BANNERS (هيرو الصفحات الداخلية)            */
/* ---------------------------------------------------- */
.jewel-page-hero,
.jewel-about-hero,
.jewel-returns-hero {
  position: relative;
  width: 100%;
  height: clamp(380px, 32vw, 480px);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 767px) {
  .jewel-page-hero,
  .jewel-about-hero,
  .jewel-returns-hero {
    height: 340px;
    min-height: 340px;
  }
}

.jewel-page-hero-bg,
.jewel-about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.jewel-page-hero-img,
.jewel-about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.jewel-page-hero-overlay,
.jewel-about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(0.5px);
  z-index: 2;
}

.jewel-page-hero-container,
.jewel-about-hero-container {
  position: relative;
  z-index: 3;
  text-align: center;
}

.jewel-page-hero-title,
.jewel-about-hero-title {
  color: #ffffff;
  font-size: 2.25rem;
  font-weight: 900;
  text-align: center;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin: 0;
}

@media (min-width: 768px) {
  .jewel-page-hero-title,
  .jewel-about-hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .jewel-page-hero-title,
  .jewel-about-hero-title {
    font-size: 3.5rem;
  }
}

/* Story Section */
.jewel-about-story-section {
  background-color: #ffffff;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  width: 100%;
}

.jewel-about-story-content {
  max-width: 960px;
}

body.rtl .jewel-about-story-content,
html[dir="rtl"] .jewel-about-story-content {
  text-align: right;
  margin-right: 0;
  margin-left: auto;
}

body.ltr .jewel-about-story-content,
body:not(.rtl) .jewel-about-story-content,
html[dir="ltr"] .jewel-about-story-content {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.jewel-about-story-subtitle {
  color: var(--color-primary, #c01826);
  font-size: 1.15rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.35rem;
}

.jewel-about-story-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: #111827;
  line-height: 1.35;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .jewel-about-story-title {
    font-size: 2.15rem;
  }
}

.jewel-about-story-text {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 2.1;
  font-weight: 400;
}

@media (min-width: 768px) {
  .jewel-about-story-text {
    font-size: 1.05rem;
  }
}

.jewel-about-story-text p {
  margin-bottom: 1.15rem;
}

.jewel-about-story-text p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: #1f2937;
}

/* Stats Section */
.jewel-about-stats-section {
  background-color: #fdf5f5;
  border-top: 1px solid rgba(192, 24, 38, 0.08);
  border-bottom: 1px solid rgba(192, 24, 38, 0.08);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  width: 100%;
}

.jewel-about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  width: 100%;
}

@media (max-width: 639px) {
  .jewel-about-stats-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.jewel-about-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
}

.jewel-about-stat-icon {
  font-size: 2rem;
  color: var(--color-primary, #c01826);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.jewel-about-stat-item:hover .jewel-about-stat-icon {
  transform: scale(1.15);
}

.jewel-about-stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: #111827;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .jewel-about-stat-number {
    font-size: 2.35rem;
  }
}

.jewel-about-stat-label {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
  line-height: 1.4;
}

/* ---------------------------------------------------- */
/* POLICY & RETURNS CONTENT (محتوى السياسات والاسترجاع)  */
/* ---------------------------------------------------- */
.jewel-policy-section {
  background-color: #ffffff;
  padding-top: 3.5rem;
  padding-bottom: 5rem;
  width: 100%;
}

.jewel-policy-container {
  width: 100%;
  padding-left: 45px;
  padding-right: 45px;
  box-sizing: border-box;
}

@media (max-width: 639px) {
  .jewel-policy-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.jewel-policy-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.jewel-policy-main-heading {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .jewel-policy-main-heading {
    font-size: 2.15rem;
  }
}

.jewel-policy-intro {
  font-size: 0.95rem;
  color: #374151;
  line-height: 2;
  margin-bottom: 2rem;
  font-weight: 400;
}

@media (min-width: 768px) {
  .jewel-policy-intro {
    font-size: 1.025rem;
  }
}

.jewel-policy-subheading {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .jewel-policy-subheading {
    font-size: 1.25rem;
  }
}

.jewel-policy-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
}

.jewel-policy-bullet-list li {
  position: relative;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.85;
}

body.rtl .jewel-policy-bullet-list li,
html[dir="rtl"] .jewel-policy-bullet-list li {
  padding-right: 1.5rem;
  padding-left: 0;
}

body.ltr .jewel-policy-bullet-list li,
body:not(.rtl) .jewel-policy-bullet-list li,
html[dir="ltr"] .jewel-policy-bullet-list li {
  padding-left: 1.5rem;
  padding-right: 0;
}

body.rtl .jewel-policy-bullet-list li::before,
html[dir="rtl"] .jewel-policy-bullet-list li::before {
  content: "•";
  position: absolute;
  right: 0;
  top: -0.05rem;
  color: #9ca3af;
  font-size: 1.35rem;
  line-height: 1;
}

body.ltr .jewel-policy-bullet-list li::before,
body:not(.rtl) .jewel-policy-bullet-list li::before,
html[dir="ltr"] .jewel-policy-bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -0.05rem;
  color: #9ca3af;
  font-size: 1.35rem;
  line-height: 1;
}

.jewel-policy-numbered-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: jewel-policy-count;
}

.jewel-policy-numbered-list li {
  position: relative;
  counter-increment: jewel-policy-count;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.85;
}

body.rtl .jewel-policy-numbered-list li,
html[dir="rtl"] .jewel-policy-numbered-list li {
  padding-right: 2rem;
  padding-left: 0;
}

body.ltr .jewel-policy-numbered-list li,
body:not(.rtl) .jewel-policy-numbered-list li,
html[dir="ltr"] .jewel-policy-numbered-list li {
  padding-left: 2rem;
  padding-right: 0;
}

body.rtl .jewel-policy-numbered-list li::before,
html[dir="rtl"] .jewel-policy-numbered-list li::before {
  content: counter(jewel-policy-count) ".";
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 700;
  color: #111827;
}

body.ltr .jewel-policy-numbered-list li::before,
body:not(.rtl) .jewel-policy-numbered-list li::before,
html[dir="ltr"] .jewel-policy-numbered-list li::before {
  content: counter(jewel-policy-count) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #111827;
}

.jewel-policy-divider {
  border: 0;
  height: 1px;
  background-color: #e5e7eb;
  margin: 3rem 0;
}

/* ---------------------------------------------------- */
/* WISHLIST PAGE (صفحة المفضلة)                         */
/* ---------------------------------------------------- */
.wishlist-page-main {
  background-color: #ffffff;
  min-height: 55vh;
}

.jewel-wishlist-header {
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 1rem;
}

.jewel-wishlist-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 7rem;
}

.jewel-empty-heart-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.jewel-empty-heart-svg {
  width: 82px;
  height: 82px;
  display: block;
}

.jewel-empty-heart-text {
  color: #6b7280;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 1rem;
  text-align: center;
}

/* Wishlist Product Cards Grid */
.wishlist-page-main .jewel-product-card {
  position: relative;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.wishlist-page-main .jewel-prod-img-box {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  background-color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  margin-bottom: 0.75rem !important;
  padding: 0.5rem !important;
}

.wishlist-page-main .jewel-prod-img-box img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  mix-blend-mode: multiply !important;
}

/* Heart Icon Positioned Top Right in Card */
.jewel-wishlist-remove-btn,
.wishlist-page-main .jewel-wishlist-btn {
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  left: auto !important;
  bottom: auto !important;
  z-index: 30 !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  padding: 4px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #a00613 !important;
  line-height: 1 !important;
  transition: transform 0.2s ease, opacity 0.2s ease !important;
}

body.rtl .jewel-wishlist-remove-btn,
html[dir="rtl"] .jewel-wishlist-remove-btn {
  right: 8px !important;
  left: auto !important;
}

body.ltr .jewel-wishlist-remove-btn,
html[dir="ltr"] .jewel-wishlist-remove-btn {
  right: 8px !important;
  left: auto !important;
}

.jewel-wishlist-remove-btn:hover {
  transform: scale(1.15) !important;
  opacity: 0.8 !important;
}

.jewel-wishlist-remove-btn svg {
  width: 22px !important;
  height: 22px !important;
  stroke: #a00613 !important;
  display: block !important;
}

/* Solid Red Add to Cart Button */
.jewel-wishlist-addcart-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  background-color: #a00613 !important;
  color: #ffffff !important;
  font-size: 0.825rem !important;
  font-weight: 700 !important;
  padding: 6px 14px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: 0 2px 5px rgba(160, 6, 19, 0.2) !important;
  transition: background-color 0.2s ease, transform 0.2s ease !important;
}

.jewel-wishlist-addcart-btn:hover {
  background-color: #82030e !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

.jewel-wishlist-addcart-btn svg {
  width: 15px !important;
  height: 15px !important;
  stroke: #ffffff !important;
  stroke-width: 2 !important;
  fill: none !important;
  display: inline-block !important;
}

.wishlist-page-main .jewel-product-price {
  font-size: 0.95rem !important;
  font-weight: 900 !important;
  color: #a00613 !important;
}

/* ---------------------------------------------------- */
/* CART PAGE & EMPTY STATE (صفحة السلة وحالة السلة الفارغة) */
/* ---------------------------------------------------- */
.cart-page-main,
.jewel-cart-page-wrapper {
  background-color: #ffffff;
  min-height: 55vh;
}

.jewel-cart-header {
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 1rem;
}

.jewel-empty-cart-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 7rem;
}

.jewel-empty-cart-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.jewel-empty-cart-svg {
  width: 88px;
  height: 88px;
  display: block;
}

.jewel-empty-cart-text {
  color: #6b7280;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 1rem;
  text-align: center;
}

/* Populated Cart Item Cards */
.jewel-cart-item-card {
  transition: all 0.25s ease;
}

.jewel-cart-item-card:hover {
  border-color: #f3f4f6;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.jewel-cart-qty-stepper {
  user-select: none;
}

.jewel-cart-qty-stepper button {
  cursor: pointer;
  line-height: 1;
  transition: color 0.15s ease;
}

.jewel-summary-card,
.jewel-coupon-card {
  border: 1px solid #f1f3f5;
}

.jewel-cart-cross-sells h2 {
  font-size: 1.35rem;
  font-weight: 900;
  color: #111827;
}

@media (min-width: 768px) {
  .jewel-cart-cross-sells h2 {
    font-size: 1.65rem;
  }
}

/* ---------------------------------------------------- */
/* PIXEL-PERFECT CART PAGE (صفحة السلة المطابقة للصورة)   */
/* ---------------------------------------------------- */
.jewel-ref-cart-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.jewel-ref-cart-title-row {
  margin-bottom: 1.5rem;
}

.jewel-ref-cart-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: #111827;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.jewel-ref-cart-count {
  font-size: 0.95rem;
  font-weight: 500;
  color: #6b7280;
}

/* 2-Column Grid: Right Items List (1fr) + Left Sidebar (330px) in RTL */
.jewel-ref-cart-grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 1.75rem;
  align-items: start;
}

@media (max-width: 991px) {
  .jewel-ref-cart-grid {
    grid-template-columns: 1fr;
  }
  .jewel-ref-cart-sidebar {
    order: 2;
  }
  .jewel-ref-cart-items-list {
    order: 1;
  }
}

/* Left Sidebar (Order Summary & Coupon) */
.jewel-ref-cart-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.jewel-ref-summary-box,
.jewel-ref-coupon-box {
  background: #ffffff;
  border: 1px solid #eef0f2;
  border-radius: 12px;
  padding: 1.35rem 1.5rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.jewel-ref-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.jewel-ref-summary-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111827;
  margin: 0;
}

.jewel-ref-summary-badge {
  background-color: #fde8e8;
  color: #c01826;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.jewel-ref-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin-bottom: 1.5rem;
}

.jewel-ref-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}

.jewel-ref-row-label {
  color: #4b5563;
  font-weight: 500;
}

.jewel-ref-row-val {
  color: #111827;
  font-weight: 800;
}

.jewel-ref-shipping-val {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.jewel-ref-free-text {
  color: #059669;
  font-weight: 800;
}

.jewel-ref-struck-text {
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 0.8rem;
}

.jewel-ref-divider {
  height: 1px;
  background-color: #f3f4f6;
  margin: 0.25rem 0;
}

.jewel-ref-total-row {
  font-size: 1rem;
  font-weight: 800;
}

.jewel-ref-total-label {
  color: #111827;
  font-weight: 800;
}

.jewel-ref-total-val {
  color: #a00613;
  font-size: 1.3rem;
  font-weight: 900;
}

.jewel-ref-checkout-btn {
  display: block;
  width: 100%;
  background-color: #a00613;
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.95rem;
  text-align: center;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 12px rgba(160, 6, 19, 0.2);
}

.jewel-ref-checkout-btn:hover {
  background-color: #82030e;
  transform: translateY(-1px);
}

/* Coupon Box */
.jewel-ref-coupon-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.75rem;
}

.jewel-ref-coupon-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.jewel-ref-coupon-input {
  flex: 1;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 0.55rem 0.85rem;
  font-size: 0.825rem;
  color: #1f2937;
  outline: none;
  transition: border-color 0.2s ease;
}

.jewel-ref-coupon-input:focus {
  border-color: #a00613;
}

.jewel-ref-coupon-submit {
  background-color: #f3f4f6;
  color: #4b5563;
  font-weight: 700;
  font-size: 0.825rem;
  padding: 0.55rem 1.15rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.jewel-ref-coupon-submit:hover {
  background-color: #a00613;
  color: #ffffff;
}

/* Right Column: Cart Item Cards */
.jewel-ref-cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.jewel-ref-item-card {
  background: #ffffff;
  border: 1px solid #eef0f2;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.75rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.jewel-ref-item-card:hover {
  border-color: #e5e7eb;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

@media (max-width: 640px) {
  .jewel-ref-item-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Media Box (Image + Stepper) */
.jewel-ref-item-media {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.jewel-ref-img-box {
  width: 160px;
  height: 160px;
  background-color: #f8f9fa;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  overflow: hidden;
}

.jewel-ref-cart-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.jewel-ref-stepper {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 110px;
  height: 38px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 0 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

.jewel-ref-step-btn {
  background: transparent;
  border: none;
  color: #111827;
  font-weight: 900;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  -webkit-user-select: none;
  transition: color 0.15s ease, transform 0.1s ease;
}

.jewel-ref-step-btn:hover {
  color: #a00613;
}

.jewel-ref-step-btn:active {
  transform: scale(0.9);
}

.jewel-ref-step-num,
.jewel-ref-step-input {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111827;
}

/* Item Details */
.jewel-ref-item-details {
  flex-grow: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jewel-ref-details-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.jewel-ref-item-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
  margin: 0;
}

.jewel-ref-item-actions-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.jewel-ref-item-price {
  font-size: 1.2rem;
  font-weight: 900;
  color: #a00613;
  margin-inline-end: 0.5rem;
}

.jewel-ref-action-circle {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease;
  text-decoration: none;
}

.jewel-ref-action-circle svg {
  width: 17px;
  height: 17px;
}

.jewel-ref-heart-btn {
  background-color: #f3f4f6;
  color: #374151;
}

.jewel-ref-heart-btn:hover {
  background-color: #e5e7eb;
  color: #a00613;
  transform: scale(1.08);
}

.jewel-ref-trash-btn {
  background-color: #fef2f2;
  color: #dc2626;
}

.jewel-ref-trash-btn:hover {
  background-color: #fee2e2;
  transform: scale(1.08);
}

/* Options Row (Color & Size on Right, Edit on Left) */
.jewel-ref-options-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
}

.jewel-ref-options-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.jewel-ref-option-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.jewel-ref-opt-label {
  color: #111827;
  font-size: 0.95rem;
  font-weight: 500;
}

.jewel-ref-color-swatch {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: inline-block;
  border: 1px solid #d1d5db;
}

.jewel-ref-size-badge {
  background-color: #a00613;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  min-width: 34px;
  text-align: center;
  display: inline-block;
  line-height: 1.2;
}

.jewel-ref-edit-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  color: #111827;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.15s ease;
  padding: 0;
  text-decoration: none;
}

.jewel-ref-edit-order-btn svg {
  width: 15px;
  height: 15px;
}

.jewel-ref-edit-order-btn:hover {
  color: #a00613;
}

.jewel-ref-eta-text {
  font-size: 0.8rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

/* Micro Trust Badges */
.jewel-ref-badges-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 0.85rem;
  border-top: 1px solid #f3f4f6;
  font-size: 0.775rem;
  color: #4b5563;
  flex-wrap: wrap;
}

.jewel-ref-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.jewel-ref-badge-item svg {
  width: 15px;
  height: 15px;
}

/* Cross Sell Products in Cart */
.jewel-cart-cross-sells {
  margin-top: 4rem;
  padding-top: 2.5rem;
  margin-bottom: 5.5rem;
  padding-bottom: 2rem;
  border-top: 1px solid #f3f4f6;
  width: 100%;
}

.jewel-ref-cross-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5rem !important;
  width: 100% !important;
}

@media (max-width: 1024px) {
  .jewel-ref-cross-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1rem !important;
  }
}

@media (max-width: 768px) {
  .jewel-ref-cross-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
}

@media (max-width: 480px) {
  .jewel-ref-cross-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
}

.jewel-ref-cross-card {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.jewel-ref-cross-img-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #f8f9fa;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.jewel-ref-cross-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.3s ease;
}

.jewel-ref-cross-card:hover .jewel-ref-cross-img-box img {
  transform: scale(1.06);
}

/* ---------------------------------------------------- */
/* SHOP & ARCHIVE PRODUCTS GRID & PAGINATION            */
/* ---------------------------------------------------- */
.jewel-archive-products-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5rem !important;
  width: 100% !important;
  margin-bottom: 3rem !important;
}

@media (max-width: 1024px) {
  .jewel-archive-products-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1rem !important;
  }
}

@media (max-width: 768px) {
  .jewel-archive-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
}

.jewel-archive-products-grid .jewel-product-card {
  width: 100% !important;
  max-width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  background: #ffffff !important;
}

.jewel-archive-products-grid .jewel-prod-img-box {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  background-color: #f8f9fa !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.75rem !important;
  position: relative !important;
  overflow: hidden !important;
}

.jewel-archive-products-grid .jewel-prod-img-box img {
  width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  mix-blend-mode: multiply !important;
  transition: transform 0.3s ease !important;
}

.jewel-archive-products-grid .jewel-product-card:hover .jewel-prod-img-box img {
  transform: scale(1.06) !important;
}

.jewel-pagination {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.4rem !important;
  flex-wrap: wrap !important;
}

.jewel-page-num {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 36px !important;
  height: 36px !important;
  padding: 0 0.5rem !important;
  border-radius: 6px !important;
  border: 1px solid #e5e7eb !important;
  color: #374151 !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  text-decoration: none !important;
  background: #ffffff !important;
  transition: all 0.2s ease !important;
}

.jewel-page-num:hover:not(.active) {
  border-color: #a00613 !important;
  color: #a00613 !important;
}

.jewel-page-num.active {
  background: #a00613 !important;
  color: #ffffff !important;
  border-color: #a00613 !important;
  box-shadow: 0 2px 6px rgba(160, 6, 19, 0.2) !important;
}

.jewel-page-nav {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0.35rem 0.75rem !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: #4b5563 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.jewel-page-nav:hover {
  color: #a00613 !important;
}

.jewel-page-dots {
  padding: 0 0.25rem !important;
  color: #9ca3af !important;
  font-weight: 700 !important;
}

/* ---------------------------------------------------- */
/* MOBILE MENU DRAWER                                   */
/* ---------------------------------------------------- */
#jewel-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99998;
  display: none;
}

#jewel-mobile-overlay.open {
  display: block;
}

#jewel-mobile-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: #ffffff;
  z-index: 99999;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.rtl #jewel-mobile-drawer,
html[dir="rtl"] #jewel-mobile-drawer {
  right: 0;
  left: auto;
  transform: translateX(100%);
}

body.ltr #jewel-mobile-drawer,
body:not(.rtl) #jewel-mobile-drawer,
html[dir="ltr"] #jewel-mobile-drawer {
  left: 0;
  right: auto;
  transform: translateX(-100%);
}

#jewel-mobile-drawer.open {
  transform: translateX(0) !important;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
  color: #1a1a1a;
  font-weight: 500;
}

.mobile-nav-list li a:hover {
  color: var(--color-primary);
}

/* ---------------------------------------------------- */
/* RESPONSIVE BREAKPOINTS                               */
/* ---------------------------------------------------- */
@media (max-width: 767px) {
  .jewel-main-navigation { display: none !important; }
  .jewel-search-wrapper { display: none !important; }
  .jewel-hero-slides { height: 480px; min-height: 480px; }
  .hero-heading { font-size: 1.75rem !important; }
  .hero-desc { font-size: 0.9rem !important; margin-bottom: 1.25rem !important; }
  
  .jewel-model-left {
    height: 55%;
    left: -10px;
    opacity: 0.75;
  }
  .jewel-model-right {
    height: 55%;
    right: -10px;
    opacity: 0.75;
  }
  .jewel-hero-content-center {
    background-color: rgba(251, 248, 243, 0.88);
    padding: 1.5rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(4px);
  }

  .jewel-time-num { font-size: 2rem !important; }
  .jewel-countdown-box { gap: 0.75rem !important; }
}

@media (max-width: 480px) {
  .jewel-hero-slides { height: 450px; min-height: 450px; }
  .hero-heading { font-size: 1.5rem !important; }
}

@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row !important; }
  .sm\:items-end { align-items: flex-end !important; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .sm\:px-4 { padding-left: 1rem; padding-right: 1rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:gap-6 { gap: 1.5rem; }
}

@media (min-width: 768px) {
  .md\:block { display: block !important; }
  .md\:hidden { display: none !important; }
  .md\:flex { display: flex !important; }
  .md\:text-sm { font-size: 0.875rem; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .md\:py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .md\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .md\:py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:mb-10 { margin-bottom: 2.5rem; }
  
  #jewel-mobile-drawer,
  #jewel-mobile-overlay,
  .jewel-mobile-menu-toggle {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .lg\:flex-row { flex-direction: row !important; }
  .lg\:text-right { text-align: right !important; }
  .lg\:text-left { text-align: left !important; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-12 { gap: 3rem; }
}
