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

:root {
  /* Brand Colors */
  --color-primary: #c49a6c;        /* StyleLikee Gold */
  --color-primary-hover: #b08556;
  --color-brand-green: #0c2821;    /* StyleLikee Dark Forest Green */
  --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;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

.site-wrapper,
.site-content,
.site-main,
#page,
#primary {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* 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: 42px;
  max-height: 48px;
  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: #4b5563;
  font-size: 1.05rem;
  font-weight: 500;
  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: #ffffff !important;
  border: none !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  width: 32px !important;
  height: 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #c49a6c !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !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.1) !important;
  opacity: 0.9 !important;
}

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

/* Deep Emerald 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: rgba(10, 46, 45, 1) !important;
  color: #ffffff !important;
  font-size: 0.825rem !important;
  font-weight: 700 !important;
  padding: 8px 14px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: 0 2px 8px rgba(10, 46, 45, 0.25) !important;
  transition: background-color 0.2s ease, transform 0.2s ease !important;
}

.jewel-wishlist-addcart-btn:hover {
  background-color: rgba(18, 75, 73, 1) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(10, 46, 45, 0.35) !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: 800 !important;
  color: #c49a6c !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            */
/* ---------------------------------------------------- */
.stylelike-archive-wrapper {
  background-color: #ffffff;
  min-height: 60vh;
}

.jewel-archive-header {
  border-bottom: 1px solid #f1f3f5;
}

.jewel-archive-products-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5rem !important;
  width: 100% !important;
  margin-bottom: 3.5rem !important;
}

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

@media (max-width: 767px) {
  .jewel-archive-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.85rem !important;
    margin-bottom: 2.5rem !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;
  border-radius: 10px;
  transition: transform 0.25s ease;
}

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

.jewel-archive-products-grid .jewel-prod-img-box img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
  transition: transform 0.4s ease !important;
}

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

.jewel-product-price {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: var(--color-primary, #c49a6c) !important;
}

.jewel-product-price del {
  color: #9ca3af !important;
  font-size: 0.85rem !important;
  text-decoration: line-through !important;
  font-weight: 400 !important;
  margin-inline-start: 0.35rem;
}

.jewel-product-price ins {
  text-decoration: none !important;
  color: var(--color-primary, #c49a6c) !important;
  font-weight: 800 !important;
}

.jewel-add-to-cart-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 6px !important;
  background-color: #f3f4f6 !important;
  color: #111827 !important;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
}

.jewel-add-to-cart-btn:hover {
  background-color: var(--color-primary, #c49a6c) !important;
  color: #ffffff !important;
  transform: scale(1.08) !important;
}

.jewel-add-to-cart-btn svg {
  width: 18px !important;
  height: 18px !important;
}

.jewel-wishlist-btn {
  border: none !important;
  cursor: pointer !important;
}

.jewel-wishlist-btn:hover svg,
.jewel-wishlist-btn.active svg {
  color: #e02424 !important;
  stroke: #e02424 !important;
  fill: #e02424 !important;
}

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

.jewel-page-num {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 38px !important;
  height: 38px !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: var(--color-primary, #c49a6c) !important;
  color: var(--color-primary, #c49a6c) !important;
}

.jewel-page-num.active {
  background: var(--color-primary, #c49a6c) !important;
  color: #ffffff !important;
  border-color: var(--color-primary, #c49a6c) !important;
  box-shadow: 0 2px 8px rgba(196, 154, 108, 0.35) !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: var(--color-primary, #c49a6c) !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;
  visibility: hidden;
  pointer-events: none;
  right: 0;
  left: auto;
  transform: translateX(105%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease;
}

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

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

#jewel-mobile-drawer.open {
  visibility: visible !important;
  pointer-events: auto !important;
  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);
}

/* Mobile Menu Toggle Button */
.jewel-mobile-menu-toggle {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer !important;
  color: #1a1a1a !important;
  flex-shrink: 0 !important;
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
  transition: all 0.2s ease !important;
}

.jewel-mobile-menu-toggle svg {
  width: 28px !important;
  height: 28px !important;
  stroke: #1a1a1a !important;
  stroke-width: 2.2 !important;
  display: block !important;
  pointer-events: none !important;
  transition: stroke 0.2s ease !important;
}

.jewel-mobile-menu-toggle:hover svg,
.jewel-mobile-menu-toggle:focus svg,
.jewel-mobile-menu-toggle:active svg {
  stroke: var(--color-primary, #c49a6c) !important;
}

/* ---------------------------------------------------- */
/* RESPONSIVE BREAKPOINTS                               */
/* ---------------------------------------------------- */
@media (max-width: 767px) {
  .jewel-header-main {
    padding-top: 0.65rem !important;
    padding-bottom: 0.65rem !important;
  }
  .jewel-header-actions {
    gap: 0.75rem !important;
  }
  .jewel-logo-wrapper .custom-logo {
    max-height: 42px !important;
    width: auto !important;
  }
  .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; }
}

/* ==========================================================================
   StyleLike Hero Section
   ========================================================================== */
.stylelike-hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #012726;
}

/* Screen Reader Accessible Helper */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

/* Mobile Visual (< 768px): clean stacked layout keeping family completely uncropped */
.hero-mobile-visual {
  display: none;
}

@media (max-width: 767px) {
  .hero-mobile-visual {
    display: block;
    width: 100%;
    position: relative;
    background-color: #012726;
  }

  .hero-mobile-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .hero-mobile-visual::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45px;
    background: linear-gradient(to bottom, transparent 0%, #012726 100%);
    pointer-events: none;
  }
}

/* Hero Background Wrapper (Desktop & Tablet) */
.stylelike-hero-bg {
  position: relative;
  width: 100%;
  min-height: 560px;
  background-color: #012726;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .stylelike-hero-bg {
    background-image: none !important;
    min-height: auto;
    padding: 1.5rem 1rem 2.5rem;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .stylelike-hero-bg {
    min-height: auto;
    padding: 1.25rem 0.75rem 2rem;
  }
}

/* Container & Alignment */
.stylelike-hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--container-max-width, 1360px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  align-items: center;
  /* In RTL, flex-start pushes content to the RIGHT half, over the dark green space */
  justify-content: flex-start;
}

/* In LTR (English), flex-end pushes content to the RIGHT half */
html[dir="ltr"] .stylelike-hero-container,
body.ltr .stylelike-hero-container {
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .stylelike-hero-container {
    justify-content: center !important;
    padding: 0.5rem 1rem 1rem !important;
  }
}

/* Content Box */
.stylelike-hero-content {
  width: 100%;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 0;
}

@media (min-width: 768px) {
  .stylelike-hero-content {
    width: 55%;
    max-width: 560px;
    padding: 2.5rem 0;
  }
}

@media (min-width: 1024px) {
  .stylelike-hero-content {
    width: 52%;
    max-width: 600px;
    padding: 3rem 0;
  }
}

@media (max-width: 767px) {
  .stylelike-hero-content {
    width: 100%;
    max-width: 440px;
    padding: 0;
  }
}

/* Title Artwork Badge */
.hero-heading-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.25rem;
  width: 100%;
}

.hero-title-badge-img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.28));
  user-select: none;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .hero-title-badge-img {
    max-width: 440px;
  }
}

@media (max-width: 767px) {
  .hero-title-badge-img {
    max-width: 310px;
    margin-bottom: 0.25rem;
  }
}

/* English / Fallback Text Heading */
.hero-brush-backdrop {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  width: 118%;
  height: 140%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.95;
}

.hero-brush-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.hero-main-title {
  position: relative;
  z-index: 2;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2.25rem;
  color: #fdfaf3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.02em;
}

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

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

/* Description Text */
.hero-main-desc {
  color: rgba(255, 255, 255, 0.94);
  font-family: 'Cairo', system-ui, -apple-system, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.85;
  margin: 0 0 2rem 0;
  max-width: 530px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hero-desc-line {
  display: block;
}

@media (min-width: 768px) {
  .hero-main-desc {
    font-size: 1.15rem;
    margin-bottom: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-main-desc {
    font-size: 1.25rem;
    line-height: 1.9;
  }
}

@media (max-width: 767px) {
  .hero-main-desc {
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
  }
}

/* Call-to-Action Button */
.hero-action-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #111827;
  font-family: 'Cairo', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.65rem 2.85rem;
  border-radius: 0.45rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

html[dir="ltr"] .hero-cta-btn,
body.ltr .hero-cta-btn {
  font-family: 'Outfit', sans-serif;
}

.hero-cta-btn:hover,
.hero-cta-btn:focus {
  background-color: #f9fafb;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero-cta-btn:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .hero-cta-btn {
    font-size: 1.1rem;
    padding: 0.75rem 3.25rem;
  }
}

@media (max-width: 767px) {
  .hero-cta-btn {
    font-size: 1rem;
    padding: 0.6rem 2.4rem;
  }
}



/* ==========================================================================
   StyleLike Collections Section
   ========================================================================== */
.stylelike-collections-section {
  padding: 4rem 0 3rem;
}

.stylelike-collections-container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.collections-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.collections-label {
  display: block;
  font-size: 0.85rem;
  color: #888;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.collections-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.collection-card {
  display: block;
  text-decoration: none;
  color: var(--color-dark);
  text-align: center;
}

.collection-card-img-wrap {
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 0.75rem;
  background-color: #f5f5f5;
  margin-bottom: 0.85rem;
}

.collection-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.collection-card:hover .collection-card-img {
  transform: scale(1.04);
}

.collection-card-kids .collection-card-img,
.collection-card-cosmetics .collection-card-img,
.collections-grid > .collection-card:nth-child(3) .collection-card-img,
.collections-grid > .collection-card:nth-child(4) .collection-card-img {
  object-position: center center;
  transform: scale(1.4);
}

.collection-card-kids:hover .collection-card-img,
.collection-card-cosmetics:hover .collection-card-img,
.collections-grid > .collection-card:nth-child(3):hover .collection-card-img,
.collections-grid > .collection-card:nth-child(4):hover .collection-card-img {
  transform: scale(1.46);
}

.collection-card-name {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 767px) {
  .stylelike-collections-section { padding: 2.5rem 0 2rem; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .collections-heading { font-size: 1.25rem; }
  .collection-card-img-wrap { height: 260px; }
}

@media (max-width: 480px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .collection-card-img-wrap { height: 210px; }
}

/* ====================================================
   Deals / Countdown Banner Section
   ==================================================== */
.stylelike-deals-section {
  background-color: var(--color-brand-green, #0c2821);
  padding: 4rem 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.stylelike-deals-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

/* Countdown Side */
.deals-countdown-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  direction: ltr;
  flex-direction: row-reverse; /* In LTR (English): Days on left, Seconds on right */
}

/* In RTL (Arabic): Countdown flow matches design (Seconds on right, Days on left) */
html[dir="rtl"] .deals-countdown-wrap,
body.rtl .deals-countdown-wrap {
  direction: rtl;
  flex-direction: row;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 55px;
}

.countdown-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.6rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.countdown-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.countdown-divider {
  width: 1.5px;
  height: 55px;
  background-color: rgba(255, 255, 255, 0.35);
}

/* Content / Text Side */
.deals-content-wrap {
  max-width: 540px;
}

.deals-heading {
  font-size: 2.35rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.85rem;
  line-height: 1.25;
}

.deals-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.75rem;
  line-height: 1.6;
}

.deals-btn {
  display: inline-block;
  background-color: #ffffff;
  color: var(--color-brand-green, #0c2821);
  padding: 0.85rem 2.25rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.deals-btn:hover {
  background-color: #f3f3f3;
  color: var(--color-brand-green, #0c2821);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

/* Responsive */
@media (max-width: 991px) {
  .stylelike-deals-section {
    padding: 3.5rem 0;
  }
  .stylelike-deals-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 2.5rem;
  }
  .deals-content-wrap {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .stylelike-deals-section {
    padding: 2.75rem 0;
  }
  .deals-countdown-wrap {
    gap: 1.15rem;
  }
  .countdown-number {
    font-size: 2.35rem;
  }
  .countdown-divider {
    height: 40px;
  }
  .countdown-label {
    font-size: 0.85rem;
  }
  .deals-heading {
    font-size: 1.75rem;
  }
  .deals-subtitle {
    font-size: 0.95rem;
  }
  .deals-btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
  }
}

/* ====================================================
   Latest Products Section
   ==================================================== */
.stylelike-latest-products-section {
  padding: 4.5rem 0 4rem;
  background-color: #ffffff;
}

.latest-header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.latest-heading {
  font-size: 2rem;
  font-weight: 800;
  color: #111111;
  margin: 0 0 0.65rem;
  line-height: 1.3;
}

.latest-subtitle {
  font-size: 0.95rem;
  color: #666666;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

.latest-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.75rem;
}

.latest-product-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
}

.latest-prod-img-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background-color: #f7f7f7;
  aspect-ratio: 1 / 1.12;
  margin-bottom: 0.85rem;
  width: 100%;
}

.latest-prod-img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.latest-prod-img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.latest-product-card:hover .latest-prod-img-link img {
  transform: scale(1.04);
}

/* Wishlist Button (Top-Left) */
.latest-wishlist-btn {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 10 !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
  width: 32px !important;
  height: 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #1f2937 !important;
  transition: all 0.2s ease !important;
}

.latest-wishlist-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  transition: all 0.2s ease;
}

.latest-wishlist-btn:hover svg,
.latest-wishlist-btn.active svg {
  color: #e02424 !important;
  stroke: #e02424 !important;
  fill: #e02424 !important;
  transform: scale(1.1);
}

/* Quick Add Button (Bottom-Right) */
.latest-quick-add-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 10;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 6px;
  color: #111111;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.latest-quick-add-btn:hover {
  background: var(--color-primary, #b88a50);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.latest-quick-add-btn.loading {
  opacity: 0.6;
  pointer-events: none;
}

.latest-prod-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.latest-prod-cat {
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.latest-prod-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #111111;
  margin: 0 0 0.5rem;
  line-height: 1.45;
  text-align: center;
}

.latest-prod-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.latest-prod-title a:hover {
  color: var(--color-primary, #b88a50);
}

.latest-prod-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-primary, #b88a50);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
}

.latest-prod-price ins,
.latest-prod-price .amount {
  color: var(--color-primary, #b88a50) !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

.latest-prod-price del {
  color: #9ca3af !important;
  font-size: 0.825rem !important;
  text-decoration: line-through !important;
  opacity: 0.75;
}

/* Footer / View All Button */
.latest-footer-wrap {
  text-align: center;
}

.latest-view-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background-color: var(--color-primary, #b88a50);
  color: #ffffff;
  padding: 0.8rem 2.5rem;
  border-radius: 6px;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(184, 138, 80, 0.25);
}

.latest-view-all-btn:hover {
  background-color: var(--color-primary-hover, #a3753b);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(184, 138, 80, 0.35);
}

html[dir="rtl"] .latest-view-all-btn:hover .latest-btn-icon,
body.rtl .latest-view-all-btn:hover .latest-btn-icon {
  transform: translateX(-4px);
}

html[dir="ltr"] .latest-view-all-btn:hover .latest-btn-icon,
body.ltr .latest-view-all-btn:hover .latest-btn-icon {
  transform: translateX(4px);
}

.latest-btn-icon {
  transition: transform 0.2s ease;
}

/* Responsive */
@media (max-width: 991px) {
  .latest-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 575px) {
  .stylelike-latest-products-section {
    padding: 3rem 0;
  }
  .latest-heading {
    font-size: 1.5rem;
  }
  .latest-subtitle {
    font-size: 0.88rem;
  }
  .latest-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  .latest-prod-title {
    font-size: 0.88rem;
  }
  .latest-prod-price {
    font-size: 0.95rem;
  }
  .latest-view-all-btn {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
  }
}

/* ====================================================
   Elegance Promo Banner Section
   ==================================================== */
.stylelike-elegance-banner-section {
  padding: 0;
  background-color: #ffffff;
  width: 100%;
}

.stylelike-elegance-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding-top: 44px;
  padding-right: 60px;
  padding-bottom: 44px;
  padding-left: 60px;
  box-sizing: border-box;
}

.elegance-banner-card {
  position: relative;
  width: 100%;
  max-width: 1480px;
  height: 600px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background-color: #d5c2b2;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 3.5rem 5rem;
  box-sizing: border-box;
}

/* In RTL: the model is on the right, content goes to the left */
html[dir="rtl"] .elegance-banner-card,
body.rtl .elegance-banner-card {
  background-position: right center;
  justify-content: flex-end; /* Pushes content to the LEFT in RTL */
}

/* In LTR: content is on the left, model is on the right */
html[dir="ltr"] .elegance-banner-card,
body.ltr .elegance-banner-card {
  background-position: right center;
  justify-content: flex-start; /* Pushes content to the LEFT in LTR */
}

.elegance-banner-content {
  max-width: 520px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.elegance-banner-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 1rem;
  line-height: 1.25;
}

.elegance-banner-subtitle {
  font-size: 1.05rem;
  color: #4a4a4a;
  line-height: 1.7;
  margin: 0 0 2.25rem;
  text-align: center;
}

.elegance-banner-btn {
  display: inline-block;
  background-color: #1e1e1e;
  color: #ffffff;
  padding: 0.9rem 3.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.elegance-banner-btn:hover {
  background-color: #383838;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

/* Responsive */
@media (max-width: 1200px) {
  .stylelike-elegance-container {
    padding: 30px 24px;
  }
  .elegance-banner-card {
    height: 520px;
    padding: 2.5rem 3rem;
  }
  .elegance-banner-heading {
    font-size: 2.1rem;
  }
}

@media (max-width: 991px) {
  .stylelike-elegance-container {
    padding: 24px 16px;
  }
  .elegance-banner-card {
    height: 480px;
    padding: 2rem;
  }
  .elegance-banner-heading {
    font-size: 1.85rem;
  }
  .elegance-banner-subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 767px) {
  .stylelike-elegance-container {
    padding: 16px 12px;
  }
  .elegance-banner-card {
    height: auto;
    min-height: 480px;
    padding: 3rem 1.5rem;
    justify-content: center !important;
    background-position: 70% center;
  }
  .elegance-banner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(213, 194, 178, 0.96) 0%, rgba(213, 194, 178, 0.82) 60%, rgba(213, 194, 178, 0.35) 100%);
    z-index: 1;
  }
  .elegance-banner-content {
    max-width: 100%;
  }
  .elegance-banner-heading {
    font-size: 1.65rem;
  }
  .elegance-banner-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  .elegance-banner-btn {
    padding: 0.75rem 2.25rem;
    font-size: 0.9rem;
  }
}

/* ====================================================
   Men Promo Banner Section
   ==================================================== */
.stylelike-men-banner-section {
  padding: 0;
  background-color: #ffffff;
  width: 100%;
}

.stylelike-men-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding-top: 44px;
  padding-right: 60px;
  padding-bottom: 44px;
  padding-left: 60px;
  box-sizing: border-box;
}

.men-banner-card {
  position: relative;
  width: 100%;
  max-width: 1480px;
  height: 600px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background-color: #d8c2ad;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 2rem;
  box-sizing: border-box;
}

.men-banner-content {
  max-width: 520px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.men-banner-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 1rem;
  line-height: 1.25;
}

.men-banner-subtitle {
  font-size: 1.05rem;
  color: #4a4a4a;
  line-height: 1.7;
  margin: 0 0 2.25rem;
  text-align: center;
}

.men-banner-btn {
  display: inline-block;
  background-color: #1e1e1e;
  color: #ffffff;
  padding: 0.9rem 3.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.men-banner-btn:hover {
  background-color: #383838;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

/* Responsive */
@media (max-width: 1200px) {
  .stylelike-men-container {
    padding: 30px 24px;
  }
  .men-banner-card {
    height: 520px;
  }
  .men-banner-heading {
    font-size: 2.1rem;
  }
}

@media (max-width: 991px) {
  .stylelike-men-container {
    padding: 24px 16px;
  }
  .men-banner-card {
    height: 480px;
  }
  .men-banner-heading {
    font-size: 1.85rem;
  }
  .men-banner-subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 767px) {
  .stylelike-men-container {
    padding: 16px 12px;
  }
  .men-banner-card {
    height: auto;
    min-height: 480px;
    padding: 3rem 1.5rem;
  }
  .men-banner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(216, 194, 173, 0.95) 0%, rgba(216, 194, 173, 0.8) 60%, rgba(216, 194, 173, 0.4) 100%);
    z-index: 1;
  }
  .men-banner-content {
    max-width: 100%;
  }
  .men-banner-heading {
    font-size: 1.65rem;
  }
  .men-banner-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  .men-banner-btn {
    padding: 0.75rem 2.25rem;
    font-size: 0.9rem;
  }
}

/* ====================================================
   Kids Promo Banner Section
   ==================================================== */
.stylelike-kids-banner-section {
  padding: 0;
  background-color: #ffffff;
  width: 100%;
}

.stylelike-kids-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding-top: 44px;
  padding-right: 60px;
  padding-bottom: 44px;
  padding-left: 60px;
  box-sizing: border-box;
}

.kids-banner-card {
  position: relative;
  width: 100%;
  max-width: 1480px;
  height: 600px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background-color: #ece3d7;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  display: flex;
  align-items: center;
  padding: 3.5rem 5rem;
  box-sizing: border-box;
}

/* In RTL: the kids are on the left, content goes to the right */
html[dir="rtl"] .kids-banner-card,
body.rtl .kids-banner-card {
  background-position: left center;
  justify-content: flex-start; /* Pushes content to the RIGHT in RTL */
}

/* In LTR: content goes to the right */
html[dir="ltr"] .kids-banner-card,
body.ltr .kids-banner-card {
  background-position: left center;
  justify-content: flex-end; /* Pushes content to the RIGHT in LTR */
}

.kids-banner-content {
  max-width: 500px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.kids-banner-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 1rem;
  line-height: 1.25;
}

.kids-banner-subtitle {
  font-size: 1.05rem;
  color: #4a4a4a;
  line-height: 1.7;
  margin: 0 0 2.25rem;
  text-align: center;
}

.kids-banner-btn {
  display: inline-block;
  background-color: #1e1e1e;
  color: #ffffff;
  padding: 0.9rem 3.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.kids-banner-btn:hover {
  background-color: #383838;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

/* Responsive Kids Banner */
@media (max-width: 1200px) {
  .stylelike-kids-container {
    padding: 30px 24px;
  }
  .kids-banner-card {
    height: 520px;
    padding: 2.5rem 3rem;
  }
  .kids-banner-heading {
    font-size: 2.1rem;
  }
}

@media (max-width: 991px) {
  .stylelike-kids-container {
    padding: 24px 16px;
  }
  .kids-banner-card {
    height: 480px;
    padding: 2rem;
  }
  .kids-banner-heading {
    font-size: 1.85rem;
  }
  .kids-banner-subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 767px) {
  .stylelike-kids-container {
    padding: 16px 12px;
  }
  .kids-banner-card {
    height: auto;
    min-height: 480px;
    padding: 3rem 1.5rem;
    justify-content: center !important;
    background-position: 30% center;
  }
  .kids-banner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(236, 227, 215, 0.96) 0%, rgba(236, 227, 215, 0.82) 60%, rgba(236, 227, 215, 0.35) 100%);
    z-index: 1;
  }
  .kids-banner-content {
    max-width: 100%;
  }
  .kids-banner-heading {
    font-size: 1.65rem;
  }
  .kids-banner-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  .kids-banner-btn {
    padding: 0.75rem 2.25rem;
    font-size: 0.9rem;
  }
}

/* ====================================================
   Cosmetics Promo Banner Section
   ==================================================== */
.stylelike-cosmetics-banner-section {
  padding: 0;
  background-color: #ffffff;
  width: 100%;
}

.stylelike-cosmetics-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding-top: 44px;
  padding-right: 60px;
  padding-bottom: 44px;
  padding-left: 60px;
  box-sizing: border-box;
}

.cosmetics-banner-card {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1480px;
  height: 600px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background-color: #7b4f30;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-decoration: none;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cosmetics-banner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive Cosmetics Banner */
@media (max-width: 1200px) {
  .stylelike-cosmetics-container {
    padding: 30px 24px;
  }
  .cosmetics-banner-card {
    height: 500px;
  }
}

@media (max-width: 991px) {
  .stylelike-cosmetics-container {
    padding: 24px 16px;
  }
  .cosmetics-banner-card {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .stylelike-cosmetics-container {
    padding: 16px 12px;
  }
  .cosmetics-banner-card {
    height: 280px;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .cosmetics-banner-card {
    height: 200px;
  }
}

/* ====================================================
   Why Choose Us / Features Section (لماذا Style Like ؟)
   ==================================================== */
.stylelike-why-us-section {
  background-color: #e7eaea;
  padding: 55px 20px 65px;
  width: 100%;
  box-sizing: border-box;
}

.stylelike-why-us-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.why-us-main-heading {
  font-size: 26px;
  font-weight: 800;
  color: #041010;
  text-align: center;
  margin: 0 0 45px 0;
  letter-spacing: -0.2px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

.why-us-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
}

.why-us-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  color: #0a2e2d;
}

.why-us-svg {
  width: 34px;
  height: 34px;
  display: block;
}

.why-us-item-title {
  font-size: 18px;
  font-weight: 800;
  color: #041010;
  margin: 0 0 6px 0;
  line-height: 1.35;
}

.why-us-item-subtitle {
  font-size: 13.5px;
  font-weight: 500;
  color: #5b5c5c;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .stylelike-why-us-section {
    padding: 45px 16px 50px;
  }
  .why-us-main-heading {
    font-size: 22px;
    margin-bottom: 34px;
  }
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 16px;
  }
}

@media (max-width: 576px) {
  .stylelike-why-us-section {
    padding: 36px 12px 42px;
  }
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 10px;
  }
  .why-us-svg {
    width: 30px;
    height: 30px;
  }
  .why-us-item-title {
    font-size: 15.5px;
  }
  .why-us-item-subtitle {
    font-size: 11.5px;
  }
}

/* ====================================================
   Customer Testimonials Section (آراء العملاء)
   ==================================================== */
.stylelike-testimonials-section {
  background-color: #ffffff;
  padding: 65px 20px 80px;
  width: 100%;
  box-sizing: border-box;
}

.stylelike-testimonials-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.testimonials-main-heading {
  font-size: 28px;
  font-weight: 800;
  color: #041010;
  text-align: center;
  margin: 0 0 44px 0;
  letter-spacing: -0.2px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.testimonial-card {
  background-color: #f8f7f4;
  border-radius: 12px;
  padding: 24px 20px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.testimonial-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  width: 100%;
}

.testimonial-user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  background-color: #e5e7eb;
}

.testimonial-user-name {
  font-size: 15px;
  font-weight: 700;
  color: #bf9862;
  line-height: 1.2;
}

.testimonial-quote-mark {
  color: #ebe0d0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-quote-svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  display: block;
}

.testimonial-content {
  font-size: 13.5px;
  font-weight: 500;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
  text-align: start;
}

@media (max-width: 1100px) {
  .stylelike-testimonials-section {
    padding: 50px 16px 60px;
  }
  .testimonials-main-heading {
    font-size: 24px;
    margin-bottom: 34px;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .stylelike-testimonials-section {
    padding: 38px 12px 48px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .testimonial-card {
    padding: 20px 16px;
  }
  .testimonial-user-name {
    font-size: 14.5px;
  }
  .testimonial-content {
    font-size: 13px;
  }
}

/* ====================================================
   FAQ Section (الأسئلة الشائعة)
   ==================================================== */
.stylelike-faq-section {
  background-color: #ffffff;
  padding: 70px 20px 90px;
  width: 100%;
  box-sizing: border-box;
}

.stylelike-faq-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-main-heading {
  font-size: 32px;
  font-weight: 800;
  color: #041010;
  margin: 0 0 10px 0;
  letter-spacing: -0.2px;
}

.faq-subtitle {
  font-size: 15px;
  font-weight: 500;
  color: #64748b;
  margin: 0;
}

.faq-content-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 55px;
  align-items: center;
}

.faq-image-col {
  width: 100%;
}

.faq-image-box {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.faq-family-photo {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: 25% center;
  display: block;
}

.faq-accordion-col {
  width: 100%;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid #f1f3f5;
  transition: background-color 0.2s ease;
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 4px;
  cursor: pointer;
  text-align: start;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  outline: none;
  font-family: inherit;
  transition: opacity 0.2s ease;
}

.faq-trigger:hover {
  opacity: 0.85;
}

.faq-question-text {
  font-size: 17px;
  font-weight: 700;
  color: #041010;
  line-height: 1.45;
  margin: 0;
}

.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: inline-block;
}

.faq-icon-line {
  background-color: #041010;
  position: absolute;
  border-radius: 2px;
}

.faq-line-h {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}

.faq-line-v {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.faq-item.is-active .faq-line-v {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-panel {
  display: none;
  overflow: hidden;
}

.faq-panel-inner {
  padding: 0 4px 22px;
}

.faq-answer-text {
  font-size: 14px;
  font-weight: 400;
  color: #5b5c5c;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 991px) {
  .stylelike-faq-section {
    padding: 50px 16px 65px;
  }
  .faq-header {
    margin-bottom: 35px;
  }
  .faq-main-heading {
    font-size: 26px;
  }
  .faq-content-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .faq-image-col {
    order: 2;
  }
  .faq-accordion-col {
    order: 1;
  }
  .faq-family-photo {
    height: 380px;
    object-position: center 20%;
  }
  .faq-trigger {
    padding: 18px 0;
  }
  .faq-question-text {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .stylelike-faq-section {
    padding: 38px 12px 50px;
  }
  .faq-family-photo {
    height: 280px;
  }
  .faq-question-text {
    font-size: 15px;
  }
  .faq-answer-text {
    font-size: 13px;
  }
}

/* ====================================================
   Site Footer (الفوتر)
   ==================================================== */
.stylelike-footer {
  background-color: #0a2e2d;
  color: #ffffff;
  padding: 65px 20px 32px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.stylelike-footer-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.stylelike-footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Brand Column */
.footer-col-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand-logo {
  margin-bottom: 20px;
}

.footer-brand-logo a {
  display: inline-block;
  text-decoration: none;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.footer-brand-desc {
  font-size: 13.5px;
  font-weight: 400;
  color: #cbd5e1;
  line-height: 1.85;
  margin: 0 0 24px 0;
  max-width: 440px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social-icon {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social-icon:hover {
  color: #bb9258;
  transform: translateY(-2px);
}

/* Links Columns */
.footer-col-links {
  display: flex;
  flex-direction: column;
  text-align: start;
}

.footer-col-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 18px 0;
  line-height: 1.3;
}

.footer-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-menu-list li a {
  font-size: 14px;
  font-weight: 400;
  color: #cbd5e1;
  text-decoration: none;
  display: inline-block;
  padding: 2px 0;
  transition: color 0.2s ease;
}

.footer-menu-list li a:hover {
  color: #bb9258;
}

/* Divider */
.stylelike-footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.12);
  margin: 44px 0 26px;
}

/* Bottom Bar */
.stylelike-footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.footer-payment-badges {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-pay-img {
  height: 28px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* Responsive Breakpoints */
@media (max-width: 1100px) {
  .stylelike-footer-main {
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 28px;
  }
  .footer-logo-img {
    height: 72px;
  }
}

@media (max-width: 860px) {
  .stylelike-footer {
    padding: 48px 16px 26px;
  }
  .stylelike-footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    justify-items: center;
  }
  .footer-col-brand {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
    width: 100%;
  }
  .footer-brand-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
  }
  .footer-logo-img {
    height: 70px;
    margin: 0 auto;
  }
  .footer-brand-desc {
    max-width: 520px;
    text-align: center;
    margin: 0 auto 20px;
    padding: 0 10px;
  }
  .footer-social-links {
    justify-content: center;
    margin-bottom: 8px;
    gap: 18px;
  }
  .footer-social-icon {
    font-size: 22px;
  }
  .footer-col-links {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  .footer-col-title {
    text-align: center;
    font-size: 16px;
    margin-bottom: 14px;
    width: 100%;
  }
  .footer-menu-list {
    align-items: center;
    text-align: center;
    gap: 11px;
    width: 100%;
  }
  .footer-menu-list li {
    text-align: center;
    width: 100%;
  }
  .footer-menu-list li a {
    text-align: center;
    font-size: 13.5px;
  }
  .stylelike-footer-divider {
    margin: 32px 0 20px;
  }
  .footer-pay-img {
    height: 25px;
  }
}

@media (max-width: 480px) {
  .stylelike-footer {
    padding: 40px 12px 22px;
  }
  .stylelike-footer-main {
    gap: 28px;
  }
  .footer-logo-img {
    height: 62px;
  }
  .footer-brand-desc {
    font-size: 12.5px;
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .footer-col-title {
    font-size: 15px;
    margin-bottom: 12px;
  }
  .footer-menu-list {
    gap: 10px;
  }
  .footer-menu-list li a {
    font-size: 13px;
  }
  .footer-pay-img {
    height: 22px;
  }
}

/* ==========================================================================
   Single Product Page Master Styling (StyleLike Luxury Identity)
   ========================================================================== */

.jewel-single-product-page {
  background-color: #ffffff;
  font-family: 'Cairo', system-ui, -apple-system, sans-serif;
  color: #111827;
  padding: 24px 0 60px 0;
}

.jewel-product-main-showcase {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}

@media (max-width: 991px) {
  .jewel-product-main-showcase {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* 1. Product Image Column & Gallery */
.jewel-product-image-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.jewel-main-img-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #f8f9fa;
  border: 1px solid #edf0f2;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

#jewel-main-product-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

#jewel-main-product-image:hover {
  transform: scale(1.03);
}

.jewel-gallery-thumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  width: 100%;
  padding-bottom: 6px;
  scrollbar-width: thin;
}

.jewel-thumb-btn {
  width: 68px;
  height: 68px;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid #e5e7eb;
  flex-shrink: 0;
  cursor: pointer;
  background: #f8f9fa;
  padding: 3px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.jewel-thumb-btn:hover {
  border-color: #c49a6c;
  transform: translateY(-2px);
}

.jewel-thumb-btn.active {
  border-color: #c49a6c !important;
  box-shadow: 0 0 0 1px #c49a6c;
}

.jewel-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

/* 2. Product Info & Action Column */
.jewel-product-info-column {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.jewel-single-price {
  font-size: 26px;
  font-weight: 800;
  color: #c49a6c !important;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 24px;
}

.jewel-single-price del {
  color: #9ca3af !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  text-decoration: line-through !important;
  opacity: 0.75;
}

.jewel-single-price ins {
  text-decoration: none !important;
  color: #c49a6c !important;
  font-weight: 800 !important;
}

/* Color Swatches Grid */
.jewel-swatches-section {
  margin-bottom: 24px;
}

.jewel-swatches-section label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.jewel-color-swatches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 480px) {
  .jewel-color-swatches-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}

.jewel-color-card {
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 8px;
  cursor: pointer;
  text-align: center;
  position: relative;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 120px;
}

.jewel-color-card:hover {
  border-color: #c49a6c;
}

.jewel-color-card.active,
.jewel-color-card.ring-1 {
  border-color: #c49a6c !important;
  box-shadow: 0 0 0 1px #c49a6c;
}

.jewel-color-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c49a6c;
}

[dir="ltr"] .jewel-color-dot {
  right: auto;
  left: 8px;
}

.jewel-color-card img {
  width: 100%;
  height: 65px;
  object-fit: contain;
  margin-bottom: 6px;
}

.jewel-color-card span {
  font-size: 12.5px;
  font-weight: 700;
  color: #111827;
}

/* Size Select Dropdown */
.jewel-cart-form select,
#jewel_product_size {
  width: 100%;
  height: 48px;
  background-color: #f8f9fa;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.jewel-cart-form select:focus,
#jewel_product_size:focus {
  border-color: #c49a6c;
}

/* Quantity Stepper */
.jewel-qty-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  background-color: #f8f9fa;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 4px 8px;
}

.jewel-qty-btn {
  width: 34px;
  height: 100%;
  background: transparent;
  border: none;
  font-size: 20px;
  font-weight: 700;
  color: #4b5563;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease;
}

.jewel-qty-btn:hover {
  color: #c49a6c;
}

.jewel-qty-stepper input,
#jewel_product_quantity {
  width: 44px;
  background: transparent;
  border: none !important;
  box-shadow: none !important;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  padding: 0;
  outline: none;
}

/* Action Buttons */
.jewel-single-add-to-cart {
  width: 100%;
  height: 52px;
  background-color: rgba(10, 46, 45, 1) !important;
  color: #ffffff !important;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(10, 46, 45, 0.28);
}

.jewel-single-add-to-cart:hover {
  background-color: rgba(18, 75, 73, 1) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(10, 46, 45, 0.38);
}

.jewel-single-add-to-cart:active,
#jewel-buy-now-btn:active {
  transform: scale(0.99);
}

#jewel-buy-now-btn {
  width: 100%;
  height: 52px;
  background: rgba(255, 255, 255, 1) !important;
  background-color: #ffffff !important;
  color: #111827 !important;
  border: 1.5px solid #111827 !important;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

#jewel-buy-now-btn:hover {
  background-color: #f8f9fa !important;
  border-color: #c49a6c !important;
  color: #c49a6c !important;
  transform: translateY(-1px);
}

/* Trust Badges Bar - Side by Side (Exact Screenshot Match) */
.jewel-trust-badges {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  padding-top: 24px !important;
  margin-top: 24px !important;
  border-top: 1px solid #edf0f2 !important;
  width: 100% !important;
}

.trust-badge-item {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #111827 !important;
  white-space: nowrap !important;
}

.trust-badge-item svg {
  color: #000000 !important;
  stroke: #000000 !important;
  width: 17px !important;
  height: 17px !important;
  flex-shrink: 0 !important;
}

@media (max-width: 480px) {
  .jewel-trust-badges {
    justify-content: space-between !important;
    gap: 6px !important;
  }
  .trust-badge-item {
    font-size: 11.5px !important;
    gap: 4px !important;
  }
  .trust-badge-item svg {
    width: 15px !important;
    height: 15px !important;
  }
}

/* 3. Tabs Section (Overview & Reviews) */
.jewel-product-tabs-section {
  margin-top: 48px;
  margin-bottom: 56px;
}

.jewel-tabs-nav-bar {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  padding: 5px;
  border-radius: 12px;
  border: 1px solid #edf0f2;
  margin-bottom: 28px;
  gap: 6px;
}

.jewel-tab-btn {
  flex: 1;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
  color: #6b7280;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.jewel-tab-btn.active {
  background: #ffffff !important;
  color: #111827 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.jewel-tab-pane.hidden {
  display: none !important;
}

.jewel-tab-pane.block {
  display: block !important;
}

.jewel-product-content {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
}

/* 4. Reviews Styling */
.jewel-reviews-container {
  width: 100%;
}

.jewel-reviews-summary-card {
  background: #f8f9fa;
  border: 1px solid #edf0f2;
  border-radius: 16px;
  padding: 24px 28px;
}

.jewel-single-review-card {
  background: #ffffff;
  border: 1px solid #edf0f2;
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.jewel-star-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 2px;
  color: #d1d5db;
  transition: color 0.15s ease;
}

.jewel-star-btn:hover,
.jewel-star-btn.active {
  color: #f59e0b !important;
}

/* Related Products Grid - 4 columns on desktop, 2 on mobile */
.jewel-product-related-section .jewel-archive-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .jewel-product-related-section .jewel-archive-products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .jewel-product-related-section .jewel-archive-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ==========================================================================
   Single Product: Similar Products Section (منتجات مماثلة قد تعجبك)
   ========================================================================== */

.stylelike-similar-products-section {
  margin-top: 56px;
  margin-bottom: 64px;
  padding-top: 40px;
  border-top: 1px solid #edf0f2;
}

.stylelike-similar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .stylelike-similar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.stylelike-similar-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
}

.similar-card-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background-color: #f8f9fa;
  margin-bottom: 12px;
}

.similar-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.stylelike-similar-card:hover .similar-card-img-box img {
  transform: scale(1.05);
}

/* Heart Button in Top-Left Corner */
.similar-wishlist-btn {
  position: absolute !important;
  top: 10px !important;
  left: 10px !important;
  right: auto !important;
  bottom: auto !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10 !important;
  color: #111827 !important;
  padding: 0 !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.similar-wishlist-btn:hover {
  color: #c49a6c !important;
  transform: scale(1.08) !important;
}

/* Add to Cart Plus Button in Bottom-Right Corner */
.similar-add-btn {
  position: absolute !important;
  bottom: 10px !important;
  right: 10px !important;
  left: auto !important;
  top: auto !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10 !important;
  color: #111827 !important;
  padding: 0 !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.similar-add-btn:hover {
  background: #c49a6c !important;
  color: #ffffff !important;
  transform: scale(1.08) !important;
}

.similar-add-btn:hover svg {
  color: #ffffff !important;
}

/* Centered Price in StyleLike Gold */
.similar-card-price,
.stylelike-similar-card .price {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #c49a6c !important;
  gap: 6px !important;
}

.stylelike-similar-card .price ins,
.stylelike-similar-card .price del {
  order: unset !important;
}

.stylelike-similar-card .price del {
  font-size: 13px !important;
  color: #9ca3af !important;
  text-decoration: line-through !important;
}

/* ==========================================================================
   Cart Page: Luxury StyleLike Architecture & Layout
   ========================================================================== */

.jewel-ref-cart-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

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

/* 2-Column Grid: Right Items List + Left Sidebar (330px) in RTL */
.jewel-ref-cart-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  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 #edf0f2;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.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,
.stylelike-summary-badge {
  background-color: rgba(10, 46, 45, 0.08);
  color: rgba(10, 46, 45, 1);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 6px;
}

.jewel-ref-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  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-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,
.stylelike-gold-total {
  color: #c49a6c !important;
  font-size: 1.35rem;
  font-weight: 900;
}

/* Proceed to Checkout Button: Deep Emerald */
.jewel-ref-checkout-btn,
.stylelike-checkout-btn {
  display: block;
  width: 100%;
  background-color: rgba(10, 46, 45, 1) !important;
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.95rem;
  text-align: center;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(10, 46, 45, 0.25);
}

.jewel-ref-checkout-btn:hover,
.stylelike-checkout-btn:hover {
  background-color: rgba(18, 75, 73, 1) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(10, 46, 45, 0.35);
}

/* 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.6rem 0.85rem;
  font-size: 0.825rem;
  color: #1f2937;
  outline: none;
  transition: border-color 0.2s ease;
}

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

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

.jewel-ref-coupon-submit:hover {
  background-color: rgba(10, 46, 45, 1);
  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 #edf0f2;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.75rem;
  box-shadow: 0 2px 8px 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;
    gap: 1.25rem;
    padding: 1.25rem;
  }
}

/* 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: 150px;
  height: 150px;
  background-color: #f8f9fa;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  overflow: hidden;
}

@media (max-width: 640px) {
  .jewel-ref-item-media {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
  .jewel-ref-img-box {
    width: 100px;
    height: 100px;
  }
}

.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: #c49a6c;
}

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

.jewel-ref-step-num {
  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.15rem;
  font-weight: 800;
  color: #111827;
  margin: 0;
  line-height: 1.4;
}

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

/* Luxury Gold Price */
.jewel-ref-item-price,
.stylelike-gold-price {
  font-size: 1.2rem;
  font-weight: 900;
  color: #c49a6c !important;
  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, 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: #c49a6c;
  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;
  flex-wrap: wrap;
}

.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: 28px;
  height: 28px;
  border-radius: 6px;
  display: inline-block;
  border: 1px solid #d1d5db;
}

.jewel-ref-size-badge,
.stylelike-size-badge {
  background-color: rgba(10, 46, 45, 1);
  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: #c49a6c;
}

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

/* Micro Trust Badges with Black Icons (#111827) */
.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;
  stroke: #111827;
}

/* Empty Cart View */
.jewel-cart-page-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

/* ==========================================================================
   Checkout Page: Luxury StyleLike Architecture & Styling
   ========================================================================== */

.stylelike-checkout-page-wrapper {
  background-color: #f9fafb;
}

.jewel-checkout-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.jewel-checkout-grid {
  display: grid !important;
  grid-template-columns: 1fr 380px !important;
  gap: 32px !important;
  align-items: start !important;
  width: 100% !important;
}

@media (max-width: 1024px) {
  .jewel-checkout-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

.jewel-checkout-form-col {
  width: 100% !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
}

.jewel-checkout-summary-col {
  width: 100% !important;
  min-width: 0 !important;
  position: sticky !important;
  top: 90px !important;
}

.jewel-checkout-fields-grid > .grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
}

@media (max-width: 640px) {
  .jewel-checkout-fields-grid > .grid {
    grid-template-columns: 1fr !important;
  }
}

.jewel-checkout-card {
  background-color: #ffffff !important;
  border-radius: 24px !important;
  padding: 32px !important;
  border: 1px solid #edf0f2 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
}

@media (max-width: 640px) {
  .jewel-checkout-card {
    padding: 20px !important;
    border-radius: 18px !important;
  }
}

.jewel-checkout-input {
  width: 100% !important;
  height: 48px !important;
  background-color: #f3f4f6 !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  padding: 0 16px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #111827 !important;
  outline: none !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
}

.jewel-checkout-input:focus {
  background-color: #ffffff !important;
  border-color: rgba(10, 46, 45, 1) !important;
  box-shadow: 0 0 0 2px rgba(10, 46, 45, 0.1) !important;
}

.jewel-checkout-select {
  width: 100% !important;
  height: 48px !important;
  background-color: #f3f4f6 !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  padding: 0 16px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #111827 !important;
  outline: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
  appearance: auto !important;
}

.jewel-checkout-select:focus {
  background-color: #ffffff !important;
  border-color: rgba(10, 46, 45, 1) !important;
}

.jewel-phone-input-wrap {
  height: 48px !important;
  box-sizing: border-box !important;
}

.jewel-checkout-summary-card {
  background-color: #ffffff !important;
  border-radius: 24px !important;
  padding: 28px !important;
  border: 1px solid #edf0f2 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
}

.jewel-summary-count-badge {
  background-color: rgba(10, 46, 45, 0.08) !important;
  color: rgba(10, 46, 45, 1) !important;
  font-weight: 800 !important;
  font-size: 12px !important;
  padding: 4px 12px !important;
  border-radius: 8px !important;
}

/* Place Order Button: StyleLike Deep Emerald */
.jewel-place-order-btn,
.stylelike-place-order-btn,
#place_order.jewel-place-order-btn {
  width: 100% !important;
  height: 52px !important;
  background-color: rgba(10, 46, 45, 1) !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  border-radius: 12px !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 14px rgba(10, 46, 45, 0.25) !important;
  transition: all 0.2s ease !important;
  margin-top: 12px !important;
  text-decoration: none !important;
}

.jewel-place-order-btn:hover,
.stylelike-place-order-btn:hover,
#place_order.jewel-place-order-btn:hover {
  background-color: rgba(18, 75, 73, 1) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 18px rgba(10, 46, 45, 0.35) !important;
}

/* Payment Methods in Checkout */
.woocommerce-checkout-payment {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.woocommerce-checkout-payment ul.wc_payment_methods {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 20px 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.woocommerce-checkout-payment ul.wc_payment_methods li.wc_payment_method {
  background-color: #f8f9fa !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 16px !important;
  padding: 16px 20px !important;
  transition: all 0.2s ease !important;
}

.woocommerce-checkout-payment ul.wc_payment_methods li.wc_payment_method:hover {
  border-color: rgba(10, 46, 45, 1) !important;
  background-color: #ffffff !important;
}

.woocommerce-checkout-payment ul.wc_payment_methods li.wc_payment_method label {
  font-size: 14px !important;
  font-weight: 800 !important;
  color: #111827 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
}

.woocommerce-checkout-payment .payment_box {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  margin-top: 10px !important;
  font-size: 13px !important;
  color: #4b5563 !important;
}

/* Product cards in checkout */
.jewel-checkout-product-card {
  background-color: #ffffff !important;
  border-radius: 20px !important;
  padding: 16px 20px !important;
  border: 1px solid #edf0f2 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
}

/* Payment Gateway cards */
.jewel-payment-gateway-card {
  background-color: #f8f9fa !important;
  border: 1px solid #edf0f2 !important;
  border-radius: 20px !important;
  padding: 16px 20px !important;
  transition: all 0.2s ease !important;
  margin-bottom: 12px !important;
  list-style: none !important;
}

.jewel-payment-gateway-card:hover {
  background-color: #ffffff !important;
  border-color: rgba(10, 46, 45, 1) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03) !important;
}

.jewel-gateway-icon-box img {
  max-height: 28px !important;
  max-width: 60px !important;
  object-fit: contain !important;
  border-radius: 6px !important;
}

/* Hide duplicate bottom place-order area & privacy policy text from default WC */
.woocommerce-checkout-payment .place-order,
.woocommerce-checkout-payment .woocommerce-privacy-policy-text,
.woocommerce-checkout-payment .woocommerce-terms-and-conditions-wrapper,
.woocommerce-checkout #payment .place-order,
.woocommerce-checkout #payment .woocommerce-privacy-policy-text,
.woocommerce-privacy-policy-text,
.woocommerce-terms-and-conditions-wrapper,
#payment button#place_order:not(.jewel-place-order-btn),
.woocommerce-checkout-payment button[type="submit"] {
  display: none !important;
}

/* ==========================================================================
   Login & Registration (My Account) Page: Clean Luxury Centered Card (No Image)
   ========================================================================== */

.jewel-auth-page-wrapper,
.jewel-auth-wrapper {
  background-color: #f9fafb !important;
  min-height: 75vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 48px 16px !important;
}

.jewel-auth-card {
  background-color: #ffffff !important;
  border-radius: 28px !important;
  padding: 44px 36px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04) !important;
  border: 1px solid #edf0f2 !important;
  max-width: 500px !important;
  width: 100% !important;
  margin: 0 auto !important;
  position: relative !important;
  box-sizing: border-box !important;
}

@media (max-width: 640px) {
  .jewel-auth-card {
    padding: 30px 20px !important;
    border-radius: 22px !important;
  }
}

.jewel-auth-btn-primary,
.stylelike-auth-btn-primary {
  width: 100% !important;
  height: 50px !important;
  background-color: rgba(10, 46, 45, 1) !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  border-radius: 12px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 4px 14px rgba(10, 46, 45, 0.22) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 14px !important;
  text-decoration: none !important;
}

.jewel-auth-btn-primary:hover,
.stylelike-auth-btn-primary:hover {
  background-color: rgba(18, 75, 73, 1) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 18px rgba(10, 46, 45, 0.32) !important;
}

.jewel-auth-divider {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  margin: 20px 0 !important;
  text-align: center !important;
}

.jewel-auth-divider::before {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 0 !important;
  right: 0 !important;
  height: 1px !important;
  background-color: #edf0f2 !important;
  z-index: 1 !important;
}

.jewel-auth-divider span {
  position: relative !important;
  z-index: 2 !important;
  background-color: #ffffff !important;
  padding: 0 14px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #9ca3af !important;
}

.jewel-auth-btn-secondary {
  width: 100% !important;
  height: 48px !important;
  background-color: #ffffff !important;
  color: #111827 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  border-radius: 12px !important;
  border: 1px solid #e5e7eb !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
}

.jewel-auth-btn-secondary:hover {
  background-color: #f9fafb !important;
  border-color: rgba(10, 46, 45, 1) !important;
  color: rgba(10, 46, 45, 1) !important;
}

/* Logged in User Card */
.jewel-logged-in-card {
  background-color: #ffffff !important;
  border-radius: 28px !important;
  padding: 48px 32px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04) !important;
  border: 1px solid #edf0f2 !important;
  max-width: 500px !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

.jewel-logout-btn,
.stylelike-logout-btn {
  background-color: rgba(10, 46, 45, 1) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  padding: 14px 32px !important;
  border-radius: 12px !important;
  font-size: 15px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(10, 46, 45, 0.25) !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
  line-height: 1.4 !important;
}

.jewel-logout-btn:hover,
.stylelike-logout-btn:hover {
  background-color: rgba(18, 75, 73, 1) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 18px rgba(10, 46, 45, 0.35) !important;
}

/* ==========================================================================
   Exact Match: StyleLike Auth Card Modal (Screenshot Reference)
   ========================================================================== */

.stylelike-auth-wrapper {
  background-color: #f9fafb;
}

.stylelike-auth-card {
  background-color: #ffffff !important;
  border-radius: 24px !important;
  padding: 32px 28px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05) !important;
  border: 1px solid #edf0f2 !important;
  max-width: 440px !important;
  width: 100% !important;
  margin: 0 auto !important;
  position: relative !important;
  box-sizing: border-box !important;
}

@media (max-width: 480px) {
  .stylelike-auth-card {
    padding: 24px 18px !important;
    border-radius: 18px !important;
  }
}

.stylelike-close-box {
  width: 36px !important;
  height: 36px !important;
  border-radius: 8px !important;
  border: 1px solid #e5e7eb !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #111827 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  background: transparent !important;
}

.stylelike-close-box:hover {
  border-color: #9ca3af !important;
  color: #000000 !important;
  background-color: #f9fafb !important;
}

.stylelike-auth-input {
  width: 100% !important;
  height: 48px !important;
  background-color: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 10px !important;
  padding: 0 16px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #111827 !important;
  outline: none !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
}

.stylelike-auth-input:focus {
  border-color: rgba(10, 46, 45, 1) !important;
  box-shadow: 0 0 0 2px rgba(10, 46, 45, 0.08) !important;
}

.stylelike-primary-btn {
  width: 100% !important;
  height: 50px !important;
  background-color: rgba(10, 46, 45, 1) !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  border-radius: 10px !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 2px 8px rgba(10, 46, 45, 0.2) !important;
  text-decoration: none !important;
}

.stylelike-primary-btn:hover {
  background-color: rgba(18, 75, 73, 1) !important;
  box-shadow: 0 4px 14px rgba(10, 46, 45, 0.3) !important;
}

.stylelike-social-stack {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.stylelike-social-btn {
  width: 100% !important;
  height: 46px !important;
  border-radius: 10px !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
  text-decoration: none !important;
}

/* Apple Button in Luxury Gold */
.stylelike-apple-btn {
  background-color: #b58852 !important;
  color: #ffffff !important;
  border: none !important;
}

.stylelike-apple-btn:hover {
  background-color: #a07440 !important;
}

/* White Social Buttons */
.stylelike-social-btn:not(.stylelike-apple-btn) {
  background-color: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  color: #111827 !important;
}

.stylelike-social-btn:not(.stylelike-apple-btn):hover {
  background-color: #f9fafb !important;
  border-color: #d1d5db !important;
}

.stylelike-logged-in-card {
  background-color: #ffffff !important;
  border-radius: 28px !important;
  padding: 48px 32px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04) !important;
  border: 1px solid #edf0f2 !important;
  max-width: 440px !important;
  width: 100% !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

/* ===================================================
   Product Filters & Archive Page Styles (Figma 1:1)
   =================================================== */

.stylelike-archive-wrapper {
  background-color: #fcfdfd;
  font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #111827;
  padding: 24px 0 60px 0;
  width: 100%;
  box-sizing: border-box;
}

.stylelike-archive-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  width: 100%;
}

/* 1. Header & Breadcrumb */
.stylelike-archive-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
  margin-bottom: 28px !important;
  padding-bottom: 18px !important;
  border-bottom: 1px solid #edf0f2 !important;
}

.stylelike-breadcrumb-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.stylelike-breadcrumb-link {
  font-size: 14px !important;
  color: #6b7280 !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
}

.stylelike-breadcrumb-link:hover {
  color: #c49a6c !important;
}

.stylelike-breadcrumb-sep {
  color: #cbd5e1 !important;
  font-size: 14px !important;
  display: inline-flex !important;
  align-items: center !important;
}

.stylelike-breadcrumb-current {
  font-size: 24px !important;
  font-weight: 900 !important;
  color: #111827 !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

.stylelike-count-badge {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #6b7280 !important;
  background-color: #f1f5f9 !important;
  border: 1px solid #e2e8f0 !important;
  padding: 4px 14px !important;
  border-radius: 9999px !important;
  display: inline-block !important;
}

/* 2. Main Two-Column Layout */
.stylelike-archive-main-layout {
  display: flex !important;
  align-items: flex-start !important;
  gap: 32px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* In RTL: sidebar on the right, products on the left */
html[dir="rtl"] .stylelike-archive-main-layout,
body.rtl .stylelike-archive-main-layout,
.dir-rtl .stylelike-archive-main-layout {
  flex-direction: row !important;
}

/* 3. Desktop Filters Sidebar */
.stylelike-filters-sidebar {
  width: 290px !important;
  min-width: 290px !important;
  max-width: 290px !important;
  background-color: #ffffff !important;
  border: 1px solid #edf0f2 !important;
  border-radius: 20px !important;
  padding: 22px 20px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
  box-sizing: border-box !important;
  display: block !important;
}

@media (max-width: 1023px) {
  .stylelike-filters-sidebar {
    display: none !important;
  }
}

.stylelike-filters-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding-bottom: 16px !important;
  margin-bottom: 16px !important;
  border-bottom: 1px solid #f1f5f9 !important;
}

.stylelike-filters-title {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  color: #111827 !important;
}

.stylelike-filters-reset-btn {
  background: none !important;
  border: none !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #e11d48 !important;
  cursor: pointer !important;
  transition: color 0.2s !important;
  padding: 0 !important;
  font-family: inherit !important;
}

.stylelike-filters-reset-btn:hover {
  color: #be123c !important;
}

/* Filter Section Titles & Price Labels */
.stylelike-filter-section-title {
  font-size: 14.5px !important;
  font-weight: 800 !important;
  color: #111827 !important;
  margin-bottom: 12px !important;
}

.stylelike-price-labels-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: 10px !important;
}

.stylelike-price-label-min,
.stylelike-price-label-max {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #111827 !important;
  letter-spacing: -0.01em !important;
}

/* Filter Groups inside Sidebar */
.stylelike-filter-group {
  padding-bottom: 18px !important;
  margin-bottom: 18px !important;
  border-bottom: 1px solid #f1f5f9 !important;
}

.stylelike-filter-group:last-child {
  border-bottom: none !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.stylelike-accordion-toggle {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  font-size: 14.5px !important;
  font-weight: 800 !important;
  color: #111827 !important;
  cursor: pointer !important;
  font-family: inherit !important;
}

.stylelike-accordion-toggle svg {
  width: 16px !important;
  height: 16px !important;
  color: #9ca3af !important;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.stylelike-accordion-toggle.collapsed svg {
  transform: rotate(180deg) !important;
}

.stylelike-accordion-content {
  margin-top: 14px !important;
  scrollbar-width: none !important; /* Firefox */
  -ms-overflow-style: none !important; /* IE / Edge */
}

.stylelike-accordion-content.collapsed {
  display: none !important;
}

.stylelike-accordion-content::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* In-Accordion Search Box */
.stylelike-filter-search-wrap {
  position: relative !important;
  margin-bottom: 12px !important;
  width: 100% !important;
}

.stylelike-filter-search-input {
  width: 100% !important;
  height: 38px !important;
  background-color: #f3f4f6 !important;
  border: 1px solid transparent !important;
  border-radius: 6px !important;
  padding: 0 12px 0 34px !important;
  font-size: 11.5px !important;
  color: #1f2937 !important;
  outline: none !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
  font-family: inherit !important;
}

html[dir="rtl"] .stylelike-filter-search-input,
body.rtl .stylelike-filter-search-input {
  padding: 0 12px 0 34px !important;
  text-align: right !important;
}

html[dir="ltr"] .stylelike-filter-search-input,
body:not(.rtl) .stylelike-filter-search-input {
  padding: 0 34px 0 12px !important;
  text-align: left !important;
}

.stylelike-filter-search-input::placeholder {
  color: #6b7280 !important;
  font-size: 11.5px !important;
}

.stylelike-filter-search-input:focus {
  background-color: #ffffff !important;
  border-color: #cbd5e1 !important;
  box-shadow: 0 0 0 2px rgba(10, 46, 45, 0.08) !important;
}

.stylelike-filter-search-icon {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 15px !important;
  height: 15px !important;
  color: #4b5563 !important;
  pointer-events: none !important;
}

html[dir="rtl"] .stylelike-filter-search-icon,
body.rtl .stylelike-filter-search-icon {
  left: 10px !important;
  right: auto !important;
}

html[dir="ltr"] .stylelike-filter-search-icon,
body:not(.rtl) .stylelike-filter-search-icon {
  right: 10px !important;
  left: auto !important;
}

/* Subtitle Count (e.g. عرض 12 من أصل 12 خياراً) */
.stylelike-filter-count-sub {
  font-size: 11px !important;
  font-weight: 500 !important;
  color: #6b7280 !important;
  margin-bottom: 10px !important;
  text-align: right !important;
}

html[dir="ltr"] .stylelike-filter-count-sub,
body:not(.rtl) .stylelike-filter-count-sub {
  text-align: left !important;
}

/* Filter Items List with Invisible Scrollbars */
.stylelike-filter-items-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  max-height: 200px !important;
  overflow-y: auto !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  padding: 2px !important;
}

.stylelike-filter-items-list::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Individual Filter Row (Text Right, Checkbox Left in RTL) */
.stylelike-filter-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  cursor: pointer !important;
  user-select: none !important;
  margin: 0 !important;
  padding: 2px 0 !important;
}

.stylelike-filter-row-text {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #374151 !important;
  transition: color 0.15s ease !important;
}

.stylelike-filter-row:hover .stylelike-filter-row-text {
  color: #111827 !important;
}

/* Custom Square Checkbox matching Figma 1:1 */
.stylelike-filter-row input.stylelike-filter-input {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 17px !important;
  height: 17px !important;
  border: 1.5px solid #d1d5db !important;
  border-radius: 4px !important;
  background-color: #ffffff !important;
  cursor: pointer !important;
  margin: 0 !important;
  position: relative !important;
  flex-shrink: 0 !important;
  transition: all 0.15s ease-in-out !important;
}

.stylelike-filter-row input.stylelike-filter-input:hover {
  border-color: #9ca3af !important;
}

.stylelike-filter-row input.stylelike-filter-input:checked {
  background-color: #0a2e2d !important;
  border-color: #0a2e2d !important;
}

.stylelike-filter-row input.stylelike-filter-input:checked::after {
  content: '' !important;
  position: absolute !important;
  left: 4.5px !important;
  top: 1px !important;
  width: 4.5px !important;
  height: 9px !important;
  border: solid #ffffff !important;
  border-width: 0 2px 2px 0 !important;
  transform: rotate(45deg) !important;
  display: block !important;
}

/* Price Range Slider */
.stylelike-price-inputs-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
  margin-bottom: 12px !important;
}

.stylelike-price-input-box {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  background-color: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 10px !important;
  padding: 6px 10px !important;
  flex: 1 !important;
}

.stylelike-price-input-box span {
  font-size: 11px !important;
  color: #9ca3af !important;
  font-weight: 600 !important;
}

.stylelike-price-input-box input {
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  color: #111827 !important;
  text-align: right !important;
  padding: 0 !important;
  font-family: inherit !important;
}

.stylelike-range-slider-wrap {
  position: relative !important;
  height: 6px !important;
  background-color: #f1f5f9 !important;
  border-radius: 9999px !important;
  margin: 16px 0 8px 0 !important;
}

.stylelike-slider-track {
  position: absolute !important;
  height: 100% !important;
  background-color: #0a2e2d !important;
  border-radius: 9999px !important;
  top: 0 !important;
}

.stylelike-slider-thumb {
  position: absolute !important;
  top: -6px !important;
  left: 0 !important;
  width: 100% !important;
  height: 18px !important;
  pointer-events: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  background: transparent !important;
  margin: 0 !important;
  outline: none !important;
}

.stylelike-slider-thumb::-webkit-slider-thumb {
  pointer-events: auto !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background-color: #0a2e2d !important;
  border: 2.5px solid #ffffff !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) !important;
  cursor: pointer !important;
  transition: transform 0.15s ease !important;
}

.stylelike-slider-thumb::-moz-range-thumb {
  pointer-events: auto !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background-color: #0a2e2d !important;
  border: 2.5px solid #ffffff !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) !important;
  cursor: pointer !important;
}

/* Size Pills */
.stylelike-size-pills-wrap {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

.stylelike-size-pill-label {
  cursor: pointer !important;
  user-select: none !important;
}

.stylelike-size-pill-label input {
  display: none !important;
}

.stylelike-size-pill-span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 42px !important;
  height: 38px !important;
  padding: 0 10px !important;
  border-radius: 10px !important;
  border: 1px solid #e2e8f0 !important;
  background-color: #ffffff !important;
  color: #374151 !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  transition: all 0.2s !important;
}

.stylelike-size-pill-label:hover .stylelike-size-pill-span {
  border-color: #cbd5e1 !important;
}

.stylelike-size-pill-label input:checked + .stylelike-size-pill-span,
.stylelike-size-pill-span.active {
  background-color: #0a2e2d !important;
  color: #ffffff !important;
  border-color: #0a2e2d !important;
  box-shadow: 0 2px 8px rgba(10, 46, 45, 0.2) !important;
}

/* Color Swatches */
.stylelike-color-swatches-wrap {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

.stylelike-color-swatch-label {
  cursor: pointer !important;
  position: relative !important;
  display: inline-block !important;
}

.stylelike-color-swatch-label input {
  display: none !important;
}

.stylelike-color-swatch-circle {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease !important;
}

.stylelike-color-swatch-label:hover .stylelike-color-swatch-circle {
  transform: scale(1.1) !important;
}

.stylelike-color-swatch-label input:checked + .stylelike-color-swatch-circle,
.stylelike-color-swatch-circle.active {
  outline: 2px solid #0a2e2d !important;
  outline-offset: 2px !important;
  transform: scale(1.1) !important;
}

.stylelike-color-swatch-circle svg {
  width: 14px !important;
  height: 14px !important;
}

/* 4. Products Area */
.stylelike-products-area {
  flex: 1 !important;
  width: 100% !important;
  min-width: 0 !important;
}

.stylelike-toolbar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  margin-bottom: 24px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid #edf0f2 !important;
}

.stylelike-mobile-filter-trigger {
  display: none;
  align-items: center !important;
  gap: 8px !important;
  background-color: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  padding: 10px 16px !important;
  border-radius: 12px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #111827 !important;
  cursor: pointer !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
}

@media (max-width: 1023px) {
  .stylelike-mobile-filter-trigger {
    display: inline-flex !important;
  }
}

.stylelike-sort-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.stylelike-sort-label {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #6b7280 !important;
}

.stylelike-sort-select {
  background-color: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  padding: 8px 16px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #1f2937 !important;
  outline: none !important;
  cursor: pointer !important;
  font-family: inherit !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
  transition: border-color 0.2s !important;
}

.stylelike-sort-select:focus {
  border-color: #0a2e2d !important;
}

/* 3-Column Products Grid (Desktop) / 2-Column (Mobile) */
.stylelike-products-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 1023px) {
  .stylelike-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
}

@media (max-width: 540px) {
  .stylelike-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}

/* 5. Product Card (Exact 1:1 Figma Design) */
.stylelike-product-card {
  background-color: #ffffff !important;
  border: 1px solid #edf0f2 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
}

.stylelike-product-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06) !important;
  border-color: #cbd5e1 !important;
}

.stylelike-card-img-wrap {
  width: 100% !important;
  aspect-ratio: 1 / 1.05 !important;
  background-color: #f8fafc !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  overflow: hidden !important;
  padding: 16px !important;
  box-sizing: border-box !important;
}

.stylelike-card-img {
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  transition: transform 0.3s ease !important;
}

.stylelike-product-card:hover .stylelike-card-img {
  transform: scale(1.04) !important;
}

.stylelike-discount-badge {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  background-color: #0a2e2d !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  padding: 4px 9px !important;
  border-radius: 8px !important;
  z-index: 2 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
}

.stylelike-wishlist-card-btn {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background-color: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #9ca3af !important;
  cursor: pointer !important;
  z-index: 2 !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06) !important;
}

.stylelike-wishlist-card-btn:hover,
.stylelike-wishlist-card-btn.active {
  color: #c49a6c !important;
  border-color: #c49a6c !important;
}

.stylelike-card-info {
  padding: 16px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  box-sizing: border-box !important;
}

.stylelike-card-cat {
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #9ca3af !important;
  margin-bottom: 4px !important;
}

.stylelike-card-title {
  font-size: 14px !important;
  font-weight: 800 !important;
  color: #111827 !important;
  margin: 0 0 8px 0 !important;
  line-height: 1.4 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.stylelike-card-rating {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  margin-bottom: 12px !important;
}

.stylelike-card-rating .stars {
  display: flex !important;
  gap: 2px !important;
  color: #f59e0b !important;
  font-size: 12px !important;
}

.stylelike-card-rating .count {
  font-size: 11px !important;
  color: #9ca3af !important;
  font-weight: 600 !important;
}

.stylelike-card-bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: auto !important;
  padding-top: 8px !important;
}

.stylelike-card-prices {
  display: flex !important;
  align-items: baseline !important;
  gap: 6px !important;
}

.stylelike-card-current-price {
  font-size: 16px !important;
  font-weight: 900 !important;
  color: #0a2e2d !important;
}

.stylelike-card-old-price {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #9ca3af !important;
  text-decoration: line-through !important;
}

.stylelike-card-add-cart-btn {
  width: 36px !important;
  height: 36px !important;
  border-radius: 10px !important;
  background-color: #0a2e2d !important;
  color: #ffffff !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: background-color 0.2s, transform 0.15s !important;
  text-decoration: none !important;
}

.stylelike-card-add-cart-btn:hover {
  background-color: #124b49 !important;
  transform: scale(1.06) !important;
}

/* 6. Mobile Off-Canvas Drawer */
#stylelike-drawer-backdrop {
  position: fixed !important;
  inset: 0 !important;
  background-color: rgba(0, 0, 0, 0.45) !important;
  z-index: 9999 !important;
  display: none !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

#stylelike-drawer-backdrop.active {
  display: block !important;
  opacity: 1 !important;
}

#stylelike-drawer-panel {
  position: fixed !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 86% !important;
  max-width: 350px !important;
  background-color: #ffffff !important;
  z-index: 10000 !important;
  box-shadow: -4px 0 25px rgba(0, 0, 0, 0.15) !important;
  display: flex !important;
  flex-direction: column !important;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-sizing: border-box !important;
  right: 0 !important;
  left: auto !important;
  transform: translateX(100%) !important;
}

/* In LTR */
html[dir="ltr"] #stylelike-drawer-panel,
body:not(.rtl) #stylelike-drawer-panel {
  left: 0 !important;
  right: auto !important;
  transform: translateX(-100%) !important;
}

/* When active: slides in */
#stylelike-drawer-panel.active {
  transform: translateX(0) !important;
}

.stylelike-drawer-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 18px 20px !important;
  border-bottom: 1px solid #edf0f2 !important;
}

.stylelike-drawer-title {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #111827 !important;
}

.stylelike-drawer-close-btn {
  width: 32px !important;
  height: 32px !important;
  border-radius: 8px !important;
  border: 1px solid #e5e7eb !important;
  background: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #6b7280 !important;
  cursor: pointer !important;
  font-size: 14px !important;
}

.stylelike-drawer-body {
  flex: 1 !important;
  overflow-y: auto !important;
  padding: 20px !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.stylelike-drawer-body::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.stylelike-drawer-footer {
  padding: 16px 20px !important;
  border-top: 1px solid #edf0f2 !important;
  background-color: #ffffff !important;
}

.stylelike-drawer-apply-btn {
  width: 100% !important;
  background-color: #0a2e2d !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 14px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  transition: background-color 0.2s !important;
  font-family: inherit !important;
}

.stylelike-drawer-apply-btn:hover {
  background-color: #124b49 !important;
}

/* 7. Loading Overlay */
.stylelike-grid-loader {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(2px) !important;
  z-index: 10 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 16px !important;
}

.stylelike-grid-loader.hidden {
  display: none !important;
}

.stylelike-spinner {
  width: 36px !important;
  height: 36px !important;
  border: 3px solid rgba(10, 46, 45, 0.2) !important;
  border-top-color: #0a2e2d !important;
  border-radius: 50% !important;
  animation: stylelikeSpin 0.7s linear infinite !important;
}

@keyframes stylelikeSpin {
  to { transform: rotate(360deg); }
}

/* 8. Pagination */
.stylelike-pagination {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding-top: 40px !important;
}

.stylelike-page-nav-btn {
  width: 38px !important;
  height: 38px !important;
  border-radius: 10px !important;
  border: 1px solid #e5e7eb !important;
  background-color: #ffffff !important;
  color: #374151 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  font-family: inherit !important;
}

.stylelike-page-nav-btn:hover {
  background-color: #f8fafc !important;
  border-color: #cbd5e1 !important;
}

.stylelike-page-nav-btn.active {
  background-color: #0a2e2d !important;
  color: #ffffff !important;
  border-color: #0a2e2d !important;
}

/* 9. Related Products Bottom Section */
.stylelike-related-section {
  margin-top: 56px !important;
  padding-top: 36px !important;
  border-top: 1px solid #edf0f2 !important;
}

.stylelike-related-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 24px !important;
}

.stylelike-related-title {
  font-size: 20px !important;
  font-weight: 900 !important;
  color: #111827 !important;
  margin: 0 !important;
}

.stylelike-related-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}

@media (max-width: 1023px) {
  .stylelike-related-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
}



