/**
* Theme Name: Ahura Child
* Description: This is a child theme of Ahura, generated by MihanWP.
* Author: MihanWP
* Template: ahura
*/

@font-face {
  font-family: "Shabnam";
  src: url("/wp-content/themes/ahura-child/assets/fonts/Shabnam-Thin.woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Shabnam";
  src: url("/wp-content/themes/ahura-child/assets/fonts/Shabnam.woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Shabnam";
  src: url("/wp-content/themes/ahura-child/assets/fonts/Shabnam-Bold.woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}


:root {
   --scrollbar-comp: 0px;
  /* Category swatches — light but more distinct */
  --cat-olive-oils: #f0f0eb;
  --cat-ricecakes: #f9f6f2;
  --cat-superfoods: #f2f7f2;
  --cat-organic-products: #f6f2ea;
  --cat-muesli: #faf6f1;
  --cat-cakepowder: #f7f3ef;
  --cat-oats: #f8f5f0;
  --cat-oats-fruit: #f8f2f0;
  --cat-quinoa-chia: #f1f3ef;
  --cat-pickles: #f2f6ef;
  --cat-salted-pickles: #f3f6f0;
  --cat-books: #f2f0ed;

  /* RGB Format */
  --olive-oils: 240, 240, 235;
  --ricecakes: 249, 246, 242;
  --superfoods: 242, 247, 242;
  --organic-products: 246, 242, 234;
  --muesli: 250, 246, 241;
  --cakepowder: 247, 243, 239;
  --oats: 248, 245, 240;
  --oats-fruit: 248, 242, 240;
  --quinoa-chia: 241, 243, 239;
  --pickles: 242, 246, 239;
  --salted-pickles: 243, 246, 240;
  --books: 242, 240, 237;

  /* Brand */
  --color-primary: #d73f3f;
  --color-primary-dark: #b83535;
  --color-accent: #6e8c65;
  --color-accent-subtle: #d5e5d6;

  /* Neutrals & Backgrounds */
  --color-content-bg: #fdfdfd; /* main content area fbf7f4 */
  --color-top-nav-bg: #f2f1ee; /* darker top nav */
  --color-nav-bg: #f7f6f3; /* mid-tone nav */
  --color-footer-bg: #eae9e4; /* dark grounding footer */
  --color-footer-heading: #3c3936; /* dark grounding footer */
  --color-footer-text: #46423e; /* dark grounding footer */

  /* Input */
  --color-input-bg: #edebe7; /* warm beige, matches nav/content */
  --color-input-autofill: #4a443f;
  --color-input-border: #dfdbd7; /* warm border */
  --color-border-subtle: #e9e5e1; /* subtle warm separator */

  /* Border */
  --color-border: #e5e2de; /* warm harmonized border */
  --color-border-muted: #d8cfc6; /* slightly darker warm tone */

  /* Text */
  --color-text-body: #3b352f; /* warm dark neutral */
  --color-text-heading: #2e2a27;
  --color-text-h2: #4a423a;
  --color-text-h3: #5a5048;
  --color-text-h4: #6a6159;
  --color-text-h5: #7a7269; 
  --color-text-h6: #8a8277;
  --color-text-muted: #5c534d;
  --color-text-link: #c62828; /* brand red */
  --color-text-link-hover: #b71c1c;

  /* Cards */
  --color-card-overlay-bg: #fefcf9; /*slightly lighter than card bg */
  --color-card-bg: #f2f1ee; /* warm, matches input/nav */
  --color-product-card-bg: #f6f5f3; /* warm, matches input/nav */
  --color-card-border: #eae9e4; /* harmonized warm border */

  /* Accent Card */
  --color-nutrition-bg: #e8e9e4; /* warm green accent */
  --color-nutrition-border: #dde0d9;

  /* Button Primary */
  --color-btn-primary: #d73f3f;
  --color-btn-primary-text: #fffdfc;
  --color-btn-primary-hover: #b83535;

  /* Button Secondary */
  --color-btn-secondary-bg: transparent;
  --color-btn-secondary-border: #6b6158; /* warm muted brown */
  --color-btn-secondary-text: #6b6158;
  --color-btn-secondary-bg-hover: #5e554d;
  --color-btn-secondary-border-hover: #5e554d;
  --color-btn-secondary-text-hover: #fff;

  /* Popup */
  --color-popup-bg: #fff; /* warm, matches content */
  --color-popup-overlay: #1a1c184d; /* keep overlay dark for contrast */

  /* Badges */
  --color-badge-bg: #d73f3f;
  --color-badge-text: #fff5f2;

  --color-badge-accent: #6e8c65;
  --color-badge-accent-text: #fffdfc;
}

/* =========================
   Normalize / Reset CSS
========================= */
button:focus-within,
button:focus-visible {
  outline: none !important;
}


/* custom scrolllbar */

/* Firefox */
.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: var(--color-border-subtle) transparent;
}

/* Chrome / Safari / Edge */
.custom-scrollbar::-webkit-scrollbar {
  width: 4px; /* extra thin */
  height: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent; /* invisible track */
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: var(--color-border-subtle); /* faint */
  border-radius: 10px !important;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-muted); /* slightly more visible on hover */
}
/* Scrollbar for items */
.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-text-muted) var(--color-content-bg);
}

/* Chrome / Safari / Edge */
::-webkit-scrollbar {
  width: 6px; /* slim */
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-content-bg); /* light background */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--color-text-muted); /* soft neutral gray */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-h4); /* slightly darker on hover */
}


/* Apply Shabnam font globally */

html, body, input, textarea, select, button, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, u, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  direction: rtl;
  
  font-family: "Shabnam", sans-serif !important;
}

.fa, .fas {
    font-family: 'Font Awesome 5 Free' !important;
    font-weight: 900;
}
.woocommerce .star-rating span,.woocommerce-product-rating .star-rating, .woocommerce-Reviews .star-rating,.woocommerce .star-rating,.star-rating{
      font-family: star !important;

    
}
button{
        box-shadow: none !important;
    background: inherit !important;
}

/* Optional: Apply to headings specifically for extra certainty */
h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  font-family: "Shabnam", sans-serif !important;
}
/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin/padding */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Lists */
.elementor-widget-woocommerce-archive-description ul,
.elementor-widget-woocommerce-archive-description ol{
  /*list-style: none;*/
  list-style-position: outside !important;
  margin-right:16px !important;
}

.elementor-widget-woocommerce-archive-description  ul, .elementor-widget-woocommerce-archive-description  ul li{
    list-style-type: disc !important;
}
.elementor-widget-woocommerce-archive-description  ol, .elementor-widget-woocommerce-archive-description  ol li{
    list-style-type: decimal !important;
}

/* Lists */
ul,
ol,
li {
  list-style: none;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover,
a:focus {
  outline: none;
}

/* Images and media */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Forms */
input,
button,
textarea,
select {
  font: inherit;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
input,
#dgwt-wcas-search-input-1,
#dgwt-wcas-search-input-2 {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border: 1px solid var(--color-input-border);
  border-radius: 12px;
  background: var(--color-input-bg);
  color: #222;
  outline: none; /* remove default ring */
  transition: all 0.3s ease-in-out;
}



/* Focus state */
input:focus,
#dgwt-wcas-search-input-1:focus,
#dgwt-wcas-search-input-2:focus {
  border-color: var(--color-border-subtle);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

/* Chrome, Safari, Edge */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px var(--color-input-bg) inset !important;
  -webkit-text-fill-color: var(
    --color-text-heading
  ) !important; /* text color */
  transition: background-color 5000s ease-in-out 0s !important;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Body defaults */
body {
  overscroll-behavior: none; /* Prevents bounce effects revealing gaps */
  padding: 0;
  /*TODO Uncomment*/
  /*padding-top: 15px;*/
  margin: 0;
  line-height: 1.6 !important;
  font-family: sans-serif;
  background-color: var(--color-content-bg);
  color: var(--color-text-body);
  overflow-x: clip;
}
html {
  margin: 0 !important;
  /* stable reserves space for the vertical scrollbar */
  scrollbar-gutter: stable;
  overflow-x: clip;
  overscroll-behavior: none; /* Prevents bounce effects revealing gaps */
}
span, p ,button{
    line-height: 1.6;
}
/* Headings hierarchy with muted earthy tones */
h1 {
  font-weight: 600;
  color: var(--color-text-heading); /* darkest heading for main emphasis */
}

h2 {
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-text-h2);
}

h3 {
  font-weight: 600;
  color: var(--color-text-h3); /* muted earthy brown, minor headings */
}

h4 {
  font-weight: 600;
  color: var(--color-text-h4); /* subtle subheadings, softer */
}

h5 {
  font-weight: 600;
  color: var(--color-text-h5); /* even lighter, low-level headings */
}

h6 {
  font-weight: 600;
  color: var(--color-text-h6); /* softest, least prominent headings */
}

/* Paragraphs */
p {
  color: var(--color-text-body); /* matches body, good contrast */
}


.content {
  min-height: 100vh;
}

.fixed-div {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}


/* Breakpoints and container padding */
.page-header .entry-title,
.site-footer .footer-inner,
.site-footer:not(.dynamic-footer),
.site-header .header-inner,
.site-header:not(.dynamic-header),
body:not([class*="elementor-page-"]) .site-main,
.content-container {
  width: 100%;
  max-width: 1480px; /* limit */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem; /* default mobile padding */
  padding-right: 1rem;
}
/* Tablets */
@media (min-width: 640px) {
  .page-header .entry-title,
  .site-footer .footer-inner,
  .site-footer:not(.dynamic-footer),
  .site-header .header-inner,
  .site-header:not(.dynamic-header),
  body:not([class*="elementor-page-"]) .site-main,
  .content-container {
    padding-left: 1.5rem; /* 24px */
    padding-right: 1.5rem;
  }
}

/* Laptops */
@media (min-width: 1024px) {
  .page-header .entry-title,
  .site-footer .footer-inner,
  .site-footer:not(.dynamic-footer),
  .site-header .header-inner,
  .site-header:not(.dynamic-header),
  body:not([class*="elementor-page-"]) .site-main,
  .content-container {
    padding-left: 2rem; /* 32px */
    padding-right: 2rem;
  }
}

/* Desktops */
@media (min-width: 1280px) {
  .page-header .entry-title,
  .site-footer .footer-inner,
  .site-footer:not(.dynamic-footer),
  .site-header .header-inner,
  .site-header:not(.dynamic-header),
  body:not([class*="elementor-page-"]) .site-main,
  .content-container {
    padding-left: 3rem; /* 48px */
    padding-right: 3rem;
  }
}

/* Large screens (close to 1480px) */
@media (min-width: 1480px) {
  .page-header .entry-title,
  .site-footer .footer-inner,
  .site-footer:not(.dynamic-footer),
  .site-header .header-inner,
  .site-header:not(.dynamic-header),
  body:not([class*="elementor-page-"]) .site-main,
  .content-container {
    padding-left: 4rem; /* 64px */
    padding-right: 4rem;
  }
}


/* ==========================
   Helper Classes
=========================== */
/* Font Sizes */

.text-xs {
  font-size: 0.75rem; /* 12px */
  line-height: 1.333 !important; /* 16px */
}

.text-sm {
  font-size: 0.875rem; /* 14px */
  line-height: 1.428 !important; /* 20px */
}

.text-base {
  font-size: 1rem; /* 16px */
  line-height: 1.5 !important; /* 24px */
}

.text-lg {
  font-size: 1.125rem; /* 18px */
  line-height: 1.555 !important; /* 28px */
}

.text-xl {
  font-size: 1.25rem; /* 20px */
  line-height: 1.4 !important; /* 28px */
}

.text-2xl {
  font-size: 1.5rem; /* 24px */
  line-height: 1.333 !important; /* 32px */
}

.text-3xl {
  font-size: 1.875rem; /* 30px */
  line-height: 1.2 !important; /* 36px */
}

.text-4xl {
  font-size: 2.25rem; /* 36px */
  line-height: 1.111 !important; /* 40px */
}

.text-5xl {
  font-size: 3rem; /* 48px */
  line-height: 1 !important; /* 48px */
}

/* -------------------------------
   Text Colors
---------------------------------*/

.text-input-autofill {
  color: var(--color-input-autofill);
}

.text-body {
  color: var(--color-text-body);
}
.text-heading {
  color: var(--color-text-heading);
}
.text-h2 {
  color: var(--color-text-h2);
}
.text-h3 {
  color: var(--color-text-h3);
}
.text-h4 {
  color: var(--color-text-h4);
}
.text-h5 {
  color: var(--color-text-h5);
}
.text-h6 {
  color: var(--color-text-h6);
}
.text-muted {
  color: var(--color-text-muted);
}
.text-link {
  color: var(--color-text-link);
}
.text-link-hover {
  color: var(--color-text-link-hover);
}

.text-btn-secondary {
  color: var(--color-btn-secondary-text);
}
.text-btn-secondary-hover {
  color: var(--color-btn-secondary-text-hover);
}

.text-badge {
  color: var(--color-badge-text);
}
.text-badge-accent {
  color: var(--color-badge-accent-text);
}

/* -------------------------------
   Background Colors
---------------------------------*/
.bg-primary {
  background-color: var(--color-primary);
}

.bg-accent {
  background-color: var(--color-accent);
}
.bg-accent-subtle {
  background-color: var(--color-accent-subtle);
}

.bg-content {
  background-color: var(--color-content-bg);
}
.bg-nav {
  background-color: var(--color-nav-bg);
}
.bg-top-nav {
  background-color: var(--color-top-nav-bg);
}

.bg-input {
  background-color: var(--color-input-bg);
}

.bg-card {
  background-color: var(--color-card-bg);
}

.bg-border {
  background-color: var(--color-border);
}

.bg-nutrition {
  background-color: var(--color-nutrition-bg);
}

.bg-footer {
  background-color: var(--color-footer-bg);
}
.bg-btn-primary {
  background-color: var(--color-btn-primary);
}
.bg-btn-primary-hover {
  background-color: var(--color-btn-primary-hover);
}

.bg-btn-secondary {
  background-color: var(--color-btn-secondary-bg);
}
.bg-btn-secondary-hover {
  background-color: var(--color-btn-secondary-bg-hover);
}

.bg-popup {
  background-color: var(--color-popup-bg);
}
.bg-popup-overlay {
  background-color: var(--color-popup-overlay);
}

.bg-badge {
  background-color: var(--color-badge-bg);
}
.bg-badge-accent {
  background-color: var(--color-badge-accent);
}

/* -------------------------------
   Border Colors
---------------------------------*/

.border-input-border {
  border-color: var(--color-input-border);
}
.border-border-subtle {
  border-color: var(--color-border-subtle);
}

.border-border {
  border-color: var(--color-border);
}
.border-border-muted {
  border-color: var(--color-border-muted);
}

.border-card-border {
  border-color: var(--color-card-border);
}

.border-nutrition-border {
  border-color: var(--color-nutrition-border);
}

.border-btn-secondary {
  border-color: var(--color-btn-secondary-border);
}
.border-btn-secondary-hover {
  border-color: var(--color-btn-secondary-border-hover);
}

/* -------------------------------
   Border Radius
---------------------------------*/

.rounded-b-sm {
  border-radius: 0px 0px 4px 4px;
}
.rounded-b-md {
  border-radius: 0px 0px 6px 6px;
}
.rounded-b-lg {
  border-radius: 0px 0px 8 8px;
}
.rounded-b-xl {
  border-radius: 0px 0px 12px 12px;
}

.rounded-t-sm {
  border-radius: 4px 4px 0px 0px;
}
.rounded-t-md {
  border-radius: 6px 6px 0px 0px;
}
.rounded-t-lg {
  border-radius: 8px 8px 0px 0px;
}
.rounded-t-xl {
  border-radius: 12px 12px 0px 0px;
}

.rounded-sm {
  border-radius: 4px;
}
.rounded-md {
  border-radius: 6px;
}
.rounded-lg {
  border-radius: 8px;
}
.rounded-xl {
  border-radius: 12px;
}
.rounded-3xl {
  border-radius: 24px;
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}

.flex-center {
  align-items: center;
  justify-content: center;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: start;
}
.items-baseline {
  align-items: baseline;
}

.justify-between {
  justify-content: space-between;
}
.justify-start {
  justify-content: start;
}

.justify-center {
  justify-content: center;
}
/* visually hidden but becomes visible when focused */
.sr-only-focusable {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  left: auto; /* keep unspecified for RTL */
  right: auto;
}

/* when keyboard focus lands on it, show a visible button in the top-right for RTL */
.sr-only-focusable:focus {
  position: fixed;
  top: 1rem;
  right: 1rem; /* RTL: show on right side */
  left: auto;
  z-index: 9999;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: #ffffff;
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
/* Staggered entrance animation for product cards */
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.text-anywhere {
  line-break: anywhere;
  word-wrap: break-word; /* legacy but widely supported */
  overflow-wrap: anywhere; /* modern syntax */
  word-break: break-all; /* forces breaking inside long strings */
  white-space: normal; /* make sure it's not set to nowrap */
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}
.not-italic {
  font-style: normal;
}
/* Margin */
.mx-auto {
  margin: 0 auto;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-white {
  color: #fff;
}
.font-bold {
  font-weight: 600;
}
.font-semibold {
  font-weight: 500;
}

.card {
  background-color: var(--color-card-bg);

  /* A softer shadow works well with a darker card */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}
.rounded-full {
  border-radius: 50%;
}

/* All sides padding */
.mb-1 {
  margin-bottom: 4px;
}
.mb-10 {
  margin-bottom: 40px;
}
.mt-3 {
  margin-top: 12px;
}
.mt-8 {
  margin-top: 32px;
}
.my-3 {
  margin-top: 12px;
  margin-bottom: 12px;
}
.my-40 {
  margin-top: 160px;
  margin-bottom: 160px;
}
.opacity-50 {
  opacity: 0.5;
}

.opacity-70 {
  opacity: 0.7;
}
.p-0 {
  padding: 0;
}
.p-1\.5 {
  padding: 6px;
}
.p-3 {
  padding: 12px;
}
.p-3\.5 {
  padding: 14px;
}

.p-4 {
  padding: 16px;
}
.p-4\.5 {
  padding: 18px;
}
.p-5\.25 {
  padding: 21px;
}
.p-6 {
  padding: 24px;
}
.p-8 {
  padding: 32px;
}
.p-12 {
  padding: 48px;
}
/* Vertical padding (top + bottom) */
.py-3 {
  padding-top: 12px;
  padding-bottom: 12px;
}
.py-3\.5 {
  padding-top: 14px;
  padding-bottom: 14px;
}
.py-4 {
  padding-top: 16px;
  padding-bottom: 16px;
}
.py-4\.5 {
  padding-top: 18px;
  padding-bottom: 18px;
}
.py-5\.25 {
  padding-top: 21px;
  padding-bottom: 21px;
}
.py-6 {
  padding-top: 24px;
  padding-bottom: 24px;
}
.py-8 {
  padding-top: 32px;
  padding-bottom: 32px;
}

/* Horizontal padding (left + right) */
.px-3 {
  padding-left: 12px;
  padding-right: 12px ;
}
.px-3\.5 {
  padding-left: 14px ;
  padding-right: 14px;
}
.px-4 {
  padding-left: 16px ;
  padding-right: 16px;
}
.px-4\.5 {
  padding-left: 18px ;
  padding-right: 18px ;
}
.px-5\.25 {
  padding-left: 21px ;
  padding-right: 21px;
}
.px-6 {
  padding-left: 24px ;
  padding-right: 24px;
}
.px-8 {
  padding-left: 32px ;
  padding-right: 32px;
}
.px-16 {
  padding-left: 82px ;
  padding-right: 82px;
}
.overflow-hidden {
  overflow: hidden;
}
.dir-ltr {
    direction:ltr;
    
}
.oab-flex-desktop-only {
  display: flex;
}
.oab-flex-mobile-only {
  display: none ;
}
.oab-flex-mobile-xs-only {
  display: none ;
}
.oab-flex-mobile-xs-up-only {
  display: flex;
}

/* Toggle desktop / mobile */
.oab-desktop-only {
  display: block;
}
.oab-mobile-only {
  display: none;
}
.oab-mobile-xs-only {
  display: none ;
}
.oab-mobile-xs-up-only {
  display: block;
}

/* Footer */
.footer-title {
  color: var(--color-footer-heading);
}
.footer-link,
.footer-item {
  color: var(--color-footer-text);
}
.custom-footer {
  position: relative;
  overflow: visible; /* This is correct, keep it! */
}

.custom-footer .nav__social li{
    width:36px !important;
     max-width: 36px !important;
  min-width: 36px !important;
  height: 36px !important;
  max-height: 36px !important;
  min-height: 36px !important;
}

.footer-content {
  /* This ensures content appears on top of the curve shape */
  position: relative;
  z-index: 2;
  background-color: var(--color-footer-bg);
}
.footer-copyright p {
  color: var(--color-text-h4);
}
.footer-copyright {
  width: 100%;

  border-radius: 0;
  margin: 8px 0;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.footer-nav__social li {
  border: 1px solid #ffffff1f;
  background-color: var(--color-input-bg);
}
.footer-nav__social li path {
  fill: var(--color-text-h4);
}
.footer-enamad:hover img {
  transform: translateY(-4px);
}
.footer-enamad {
  width: 50px;
  height: 64px;
  display: block;
  order: 5;
  background: #6f6a654d;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.footer-enamad img {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  background: var(--color-input-bg);
  border-radius: 12px !important;
  height: 64px;
  width: auto;
  border: 1px solid #ffffff2b;
  object-fit: contain;
}
.footer-address {
  width: 180px;
  max-width: 100%;
  text-align: justify;
}

.footer-logo {
  transition: all 0.2s ease-in-out;
  background-color: var(--color-nav-bg);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: block;
  height: 58px;
  width: 58px;
  min-height: 58px;
  min-width: 58px;
  max-height: 58px;
  max-width: 58px;
}
.footer-logo-wrapper:hover .footer-logo {
  border-width: 2px;
}
.footer-nav__social {
  flex-wrap: wrap;
}
.footer-nav__social .card {
  transition: all 0.2s ease-in-out;
}
.footer-nav__social .card:hover {
  transform: translateY(-3px);
}
.footer-nav__social svg {
  height: 21px;
  width: 21px;
  min-height: 21px;
  min-width: 21px;
  max-height: 21px;
  max-width: 21px;
}

.address-txt {
  max-width: 200px;
}
.footer-link {
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.footer-link:hover {
  color: var(--color-primary);
  transform: translateX(-2px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.3fr 1fr 1fr;
}
  .footer-links{
    justify-self: center !important;
    max-width: 86%;

  }
@media (max-width: 800px) {
  .footer-copyright {
    justify-content: center;
  }
  .footer-copyright p {
    text-align: center;
  }
}

@media (max-width: 1120px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .working-hours {
    justify-self: center;
    text-align: center;
  }
  .working-hours .footer-item {
    width: 100%;
  }
  .footer-address-container {
    grid-column: span 2;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
  }
  .address-wrapper {
    min-width: 100%;
    text-align: center;
  }
  .footer-address {
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .footer-links,
  .footer-contact {
    justify-self: center !important;
    min-width: 200px;
    max-width: 44%;
  }
}

@media (max-width: 580px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-address {
    max-width: 100%;
    width: 100%;
    min-width: none;
    align-items: start;
  }
  .footer-links,
  .footer-contact {
    justify-self: start !important;
    grid-column: span 1;
    max-width: none !important;
  }
  .working-hours {
    justify-self: start;
    text-align: start;
  }
  .footer-address-container {
    grid-column: span 1;
    justify-content: start;
  }
  .address-wrapper {
    align-items: start;
  }
  .footer-address {
    text-align: start;
  }
}
@media (max-width: 420px) {
  .footer-address {
    width: 180px;
    max-width: 100%;
    text-align: justify;
  }
  .footer-address-title {
    order: 2;
  }
  .footer-title {
    text-align: start;
  }
  .footer-address {
    order: 3;
  }

  .footer-nav__social {
    order: 1;
    justify-content: center;
    margin-bottom: 26px;
    margin-top: 0;
  }
  .footer-logo-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-14px);
    text-align: center;
  }
}
/*End of footer*/


/* Prevent scroll from bubbling up to the body */
#mob-sidebar, 
#site-menu-content, 
.oab-mobile-products-wrapper { 
    overscroll-behavior: contain;
}
@media (max-width: 380px) {
  .oab-mobile-xs-up-only {
    display: none !important;
  }
  .oab-mobile-xs-only {
    display: flex;
  }
    .oab-flex-mobile-xs-up-only {
    display: none !important;
  }
  .oab-flex-mobile-xs-only {
    display: flex;
  }
}

@media (max-width: 767px) {
  .oab-flex-desktop-only {
    display: none !important;
  }
  .oab-flex-mobile-only {
    display: flex;
  }

  #site-menu {
    height: calc(100dvh - 100px);
    overflow: hidden;
  }
  #site-menu.expanded {
    max-height: calc(100dvh - 1-0px);
  }
  #site-menu-content {
    max-height: 100%;
    overflow: auto;
  }
  /* Firefox */
  #site-menu-content {
    scrollbar-width: thin;
    scrollbar-color: var(--color-border-subtle) transparent;
  }

  /* Chrome / Safari / Edge */
  #site-menu-content::-webkit-scrollbar {
    width: 4px; /* extra thin */
    height: 4px;
    border-radius: 10px;
  }

  #site-menu-content::-webkit-scrollbar-track {
    background: transparent; /* invisible track */
    border-radius: 10px;
  }

  #site-menu-content::-webkit-scrollbar-thumb {
    background: var(--color-border-subtle); /* faint */
    border-radius: 10px;
  }

  #site-menu-content::-webkit-scrollbar-thumb:hover {
    border-radius: 10px;
    background: var(--color-text-muted); /* slightly more visible on hover */
  }
  .site-menu-content {
    overflow-x: hidden !important;
    padding: 6px;
padding-bottom:32px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    background-color: var(--color-nav-bg);
  }
  

  .oab-desktop-only {
    display: none !important;
  }
  .oab-mobile-only {
    display: block;
    padding-top: 96px;
  }
}
@media (min-width: 768px) {
    .site-menu-content {
      background-color: #f2f1eede;
      backdrop-filter: blur(8px);

      border-radius: 35px;
    }
  }

.gap-1 {
  gap: 4px ;
}
.gap-1\.5 {
  gap: 6px ;
}
.gap-2 {
  gap: 8px ;
}
.gap-3 {
  gap: 12px;
}
.gap-3\.5 {
  gap: 14px;
}
.gap-4 {
  gap: 16px;
}
.gap-4\.5 {
  gap: 18px;
}
.gap-6 {
  gap: 24px;
}
.gap-8 {
  gap: 32px;
}
.gap-9 {
  gap: 36px;
}
@media (min-width: 767px) {
  .md\:gap-6 {
    gap: 24px;
  }
}
.w-fit {
  width: fit-content;
}
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
.h-\.25 {
  height: 1px;
}
.max-h-full {
  max-height: 100%;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.fixed {
  position: fixed;
}


/* Link Styling */

.link-underlined {
  position: relative;
}
.link-underlined:before {
  content: "";
  position: absolute;
  bottom: -0.1em;
  left: 0;
  width: 100%;
  height: 2px;
  background-repeat: no-repeat;
  background-image: linear-gradient(
    to right,
    hsl(27, 6%, 35%, 60.2%) 45%,
    hsl(26, 26%, 95%, 0%) 55%
  );
  background-size: 220% 100%;
  background-position: 100% 50%;
  transition: 0.3s ease-out;
}

.link-underlined:hover:before {
  background-position: 0% 50%;
}

.link-underlined-rtl {
  text-decoration: none;
  position: relative;
}

.link-underlined-rtl:before {
  content: "";
  position: absolute;
  bottom: -0.1em;
  right: 0;
  width: 100%;
  height: 2px;
  background-repeat: no-repeat;
  background-image: linear-gradient(
    to left,
    hsl(27, 6%, 35%) 45%,
    hsl(27, 6%, 35%, 30.2%) 55%
  );
  background-size: 220% 100%;
  background-position: 0% 50%;
  transition: 0.3s ease-out;
}
.link-underlined-rtl:hover:before {
  background-position: 100% 50%;
}
::-moz-selection {
  /* Code for Firefox */
  color: var(--color-text-body);
  background: var(--color-border);
}

::selection {
  color: var(--color-text-body);
  background: var(--color-border);
}
/* Top Nav */
.nav__social li{
    width:21px !important;
     max-width: 21px !important;
  min-width: 21px !important;
  height: 21px !important;
  max-height: 21px !important;
  min-height: 21px !important;
}
.nav__social svg {
  transition: all 0.2s ease-in-out;
}
.nav__social svg path {
  fill: var(--color-text-h6);
}
.top-nav__phone svg path {
  fill: var(--color-text-h5);
}

.nav__social svg:hover {
  scale: 1.06;
}


.site-logo {
  display: block;
  height: 120px;
  width: 120px;
  min-height: 120px;
  min-width: 120px;
  max-height: 120px;
  max-width: 120px;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  padding-top:4px;
}

.top-nav {
  /*z-index: 50;*/
  z-index: 10;
  position: relative;
  /*box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);*/
}

.top-nav-wrapper{
    padding-top:2px;
}
.z-45 {
  z-index: 45;
}


.oab-desktop-only .oab-category-column-wrapper {
    display: flex;
    height: 450px; /* یا 800px */
    /*overflow: hidden*/
}

/* کانتینر جدید برای ستون‌های میانی و سوم */
.oab-middle-columns {
    height: 100%;
    flex: 1;
    display:flex;
    /*overflow-y: auto;*/
}

.oab-desktop-only .oab-top-level {
    overflow-y: auto;
    height: 100%;
    flex: 1;
}
.oab-sub-level-list, .oab-products-level {
    pointer-events: auto; /* Prevents parent containers from blocking events */
}
.oab-desktop-only .oab-sub-level,
.oab-desktop-only .oab-products-level {
    height: fit-content;
    /*flex: 1;*/
    overflow: hidden;
    overflow-behavior:smooth;
    padding-bottom:32px;
}
#site-nav-list {
  /*background-color: #f2f1eede;*/
  background-color: #f2f1eebf;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(12px) saturate(180%);

  border-radius: 12px; /* smooth corners */
  transition: backdrop-filter 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
}
#site-nav {
  position: fixed; /* Ensure it's fixed */
  padding-top: 15px;
  top: 38px;
  z-index: 45;
  height: auto;
  /* 1. Define the transition speed and easing (smoothness) */
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1),
    top 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  /* 2. Hint to the browser to prepare for animation */
  will-change: transform, top;
  transition: top 0.7s cubic-bezier(0.76, 0, 0.24, 1), filter 0.3s ease-in-out;
}

.nav-content {
  z-index: 46;
  min-height: 94px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

#site-menu {
  overflow: hidden;
  max-height: 0;
  height: 450px;

  transition: all 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}
#site-menu.expanded {
  min-height:85dvh;
  max-height: 85dvh;
  /*max-height: 450px;*/
}
#search-menu-content {
  height: 100%;
  padding-top: 111px;
  overscroll-behavior: contain;
}
@media (max-width: 768px) {
  #search-menu-content {
    padding-left: 0px;
    padding-right: 0px;
    background: var(--color-nav-bg);
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
}
#search-menu {
  overflow: hidden;
  max-height: 0;
  height: 450px;
  overscroll-behavior: contain;
  transition: all 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}
#search-menu.expanded {
  max-height: 450px;
}


.desktop-content {
  padding-top: 68px;
  max-width: 1010px !important;
  margin: 0 auto;
}
/* --- Profile Dropdown Glass Effect --- */
.profile-dropdown-container {
  height: 100%;
  display: flex;
  align-items: center;
}
.oab-profile-dropdown ul {
  padding: 21px 4px;
  gap: 12px;
  display: flex;
  flex-direction: column;
}
.profile-menu-item {
  gap: 18px !important;
  padding-left:16px;
  padding-right:16px
}
.oab-profile-dropdown li {
  border-bottom: 1px solid var(--color-card-border);
  padding-bottom:10px;
  
}
.oab-profile-dropdown li:last-of-type {
  border-bottom: none !important;
  padding-bottom: 0px !important;
}
.oab-profile-dropdown .profile-menu-item > svg {
  height: 21px;
  width: 21px;
  stroke: var(--color-text-h5);
}
.oab-profile-dropdown .profile-menu-item .wallet-amount {
  margin-right: auto;
}
.oab-profile-dropdown .profile-menu-item {
  color: var(--color-text-h2);
}
.oab-profile-dropdown .profile-menu-item:hover {
  color: var(--color-text-h4);
}
.oab-profile-dropdown,
.oab-cart-dropdown {
top: 130%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  /* Slightly faster transition for a snappier feel */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;

  /* === BACKGROUND (CERAMIC LOOK) === */
  /* 98% Opaque Beige - Solid but distinct */
  background: rgba(242, 241, 238, 0.98) !important;
  
  /* Subtle blur behind allows it to blend slightly without losing text readability */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  /* === CLEAN BORDER & SHADOW === */
  /* 1. Subtle dark border for definition */
  border: 1px solid rgba(0, 0, 0, 0.06);
  
  /* 2. Soft, deep shadow for elevation (pops off the page) */
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 10px 25px -5px rgba(0, 0, 0, 0.1),
    /* 3. Tiny white inner glow to separate from background */
    inset 0 1px 0 0 rgba(255, 255, 255, 0.8);

  /* === DIMENSIONS & TEXT === */
  border-radius: 20px; /* Slightly reduced radius for a cleaner UI */
  color: var(--color-text-body, #3b352f);
  overflow: hidden;
  padding-bottom: 0;
  min-width: 240px;
  max-width: 80vw;
}

.search-pipe{
    width: 2px;
    height: 31px;
    background: #e9e5e1e0;
    position: absolute;
    right: -14px;
    bottom: -2px;
}


.oab-profile-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wallet-phone > a {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: right;
  gap: 12px !important;
}
.wallet-phone .user-avatar-wrapper {
  width: 54px;
  height: 54px;
  overflow:hidden;
  border-radius:50%;
}
.wallet-phone .user-avatar-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.desktop-content {
  padding-top: 68px;
  max-width: 1010px !important;
  margin: 0 auto;
}
.cart-count {
  top: -5px;
  user-select: none;
  left: 60%;
  font-size: 11px;
  transform: translateX(-50%);
  color: var(--color-text-h4);
}
.ripple-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  height: fit-content;
  border-radius: 12px;
  background: var(
    --ripple-bg,
    var(--color-border-subtle)
  ); /* default: var(--color-border-subtle) */
  padding: 0.4rem 2rem;
  text-decoration: none;
}

.ripple-btn .btn-text {
  position: relative;
  top: 0;
  font-size: 1rem;
  color: var(--ripple-text, #111); /* default text-foreground */
  transition: top 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.ripple-btn:hover .btn-text {
  top: -40px;
}

.ripple-wrapper {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  overflow: hidden;
  transition: top 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.ripple-btn:hover .ripple-wrapper {
  top: 0;
}

.ripple-wrapper .ripple-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1rem;
  width: 100%;
  color: var(--ripple-ripple-text, var(--color-btn-primary-text));
  margin: 0;
  pointer-events: none;
}

.ripple-wrapper .ripple-bg {
  width: 60%;
  height: 100%;
  margin: 0 auto;
  border-radius: 50px;
  background: var(
    --ripple-ripple-bg,
    var(--color-btn-primary)
  ); /* default rippleBg */
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.ripple-btn:hover .ripple-bg {
  width: 100%;
  border-radius: 12px;
}
.ripple-red {
  --ripple-bg: var(--color-content-bg);
  --ripple-text: #111;
  --ripple-ripple-bg: var(--color-btn-primary);
  --ripple-ripple-text: var(--color-btn-primary-text);
}
.ripple-beige {
  --ripple-ripple-bg: var(--color-border-muted);
  --ripple-ripple-text: #111;
  --ripple-bg: var(--color-btn-primary);
  --ripple-text: var(--color-btn-primary-text);
}
.ripple-border {
  --ripple-ripple-bg: var(--color-border);
  --ripple-ripple-text: #111;
  --ripple-bg: var(--color-btn-primary);
  --ripple-text: var(--color-btn-primary-text);
}


/* Liquid glass effect class */
.glass {
  position: relative;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2px) saturate(180%);
  border: 0.0625rem solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2),
    inset 0 4px 20px rgba(255, 255, 255, 0.3);
}

.glass::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(1px);
  box-shadow: inset -10px -8px 0px -11px rgba(255, 255, 255, 1),
    inset 0px -9px 0px -8px rgba(255, 255, 255, 1);
  opacity: 0.6;
  z-index: -1;
  filter: blur(1px) drop-shadow(10px 4px 6px black) brightness(115%);
  pointer-events: none;
}
#search-toggle {
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
#search-toggle:hover {
  transform: translateY(-2px);
}

body.scroll-disabled {
  height: 150vh !important;
  min-height: 150vh !important;
  max-height: 150vh !important;
  overflow-y: hidden !important;
}
/* Search Toggle */
.search-toggle {
  width: 26px;
  height: 26px;
  position: relative;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease-in-out;
}

/* Circle */
.search-icon {
  position: absolute;
  top: 12%;
  left: 12%;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  border: 2px solid var(--color-text-h4);
  box-sizing: border-box;
  transition: opacity 0.3s ease-in-out;
}
.search-icon path,
.search-icon circle,
.search-icon line,
.search-icon polyline {
  /* Add any other shapes you use */
  vector-effect: non-scaling-stroke;

  /* You might need to adjust this value! 
       Since it won't shrink anymore, 2px might look too thick. 
       Try 1.2px or 1.5px. */
  stroke-width: 1.5px;
}
/* Handle (\) */
.search-toggle::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 9px;
  background-color: var(--color-text-h4);
  top: 54%;
  left: 54%;
  transform: rotate(-45deg);
  transform-origin: top right;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Second line for forming X (/) */
.search-toggle::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 14px; /* full length when open */
  background-color: var(--color-text-h4);
  top: 5px;
  left: 5px;
  transform: rotate(45deg);
  transform-origin: center;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* shrink along its axis */
}

/* OPENED state */
.search-toggle.opened .search-icon {
  opacity: 0;
}

/* Animate \ line */
.search-toggle.opened::before {
  top: 5px;
  left: 5px;
  height: 14px;
  transform: rotate(-45deg);
  transform-origin: center;
}

/* Animate / line */
.search-toggle.opened::after {
  height: 14px; /* fully drawn */
}

/* CLOSED state: shrink / undraw */
.search-toggle:not(.opened)::after {
  height: 0; /* retract line */
}


.cart-icon path,
.icon-search path {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: var(--color-text-h4);
  transition: all 0.3s ease-in-out;
}
.user-icon {
  padding-bottom: 3px;
}
.icon-search {
  margin-bottom: 3px;
}
.user-icon path,
.user-icon {
  stroke: var(--color-text-h4);
  transition: all 0.3s ease-in-out;
}

.icon-social path,
.icon-social {
  stroke: var(--color-text-h4);
}

.top-nav__social {
  display: flex;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  width: 21px;
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  background: var(--color-content-bg);
  justify-content: flex-end;
}
.top-nav__social.expanded {
  width: 256px;
}

.nav__social .icon-social circle,
.nav__social .icon-social line,
.icon-social {
  transition: all 0.5s ease-in-out;
}
.top-nav__social.expanded .icon-social circle {
  opacity: 0;
}
.top-nav__social.expanded .icon-social line:nth-child(4) {
  scale: 1.8;
  stroke-width: 1px;
  transform: translate(-3px, -11px) rotate(14deg);
}
.top-nav__social.expanded .icon-social line:nth-child(5) {
  scale: 1.8;
  stroke-width: 1px;
  transform: translate(-9px, 2px) rotate(-15deg);
}
.top-nav__social .social-trigger {
  display: inline-block;
  cursor: pointer;
}
.top-nav__social {
  gap: 12px;
}

.top-nav__social.expanded {
  width: calc(100vw - 54px);
}
.top-nav__phone{
    z-index:0 ;
}
.top-nav__phone p {
  display: none;
}
.top-nav__phone svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
}
.top-nav__social svg {
  height: 18px;
  width: 18px;
  min-height: 18px;
  min-width: 18px;
  max-height: 18px;
  max-width: 18px;
}
.top-nav__social {
  left: 14px;
}
@media (min-width: 230px) {
  .top-nav__social.expanded {
    width: calc(100vw - 68px);
  }

  .top-nav__social {
    left: 24px;
  }
  .top-nav__social svg {
    height: 21px;
    width: 21px;
    min-height: 21px;
    min-width: 21px;
    max-height: 21px;
    max-width: 21px;
  }
}

@media (min-width: 265px) {
  .top-nav__social {
    gap: 21px;
  }
  .top-nav__phone p {
    display: inline-block;
  }
  .top-nav__phone svg {
    height: 14px;
    width: 14px;
    min-height: 14px;
    min-width: 14px;
    max-height: 14px;
    max-width: 14px;
  }
}
@media (min-width: 430px) {
  .top-nav__social.expanded {
    width: 230px;
  }
}
@media (min-width: 490px) {
  .top-nav__social {
    gap: 24px;
  }
  .top-nav__social.expanded {
    width: 256px;
  }
}
/* Tablets */
@media (min-width: 440px) {
  .top-nav__social .social-trigger {
    display: none;
  }
  .top-nav__social,
  .top-nav__social.expanded {
    width: fit-content;
  }
}

/* hamburger btn */
.nav-menu {
  margin-right: -4.8px !important;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
  padding-bottom: 2px;
}
.nav-menu .line {
  fill: none;
  stroke: var(--color-text-h2);
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-menu .line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.nav-menu .line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.nav-menu .line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.nav-menu.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.nav-menu.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.nav-menu.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

/* Search */
/* Toggle button */
.menu-btn {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: #304761;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1001;
}

/* Overlay background */
.overlay {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(5px);
  background: #4141415c;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .overlay {
    background: transparent;
  }
}
.overlay-under-nav {
  z-index: 10;
  overflow: hidden !important;
}
.overlay-over-nav {
  z-index: 800;
  overflow: hidden !important;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}
#mob-sidebar {
  padding-left: 0;
  padding-right: 0;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%; /* hidden by default */
  width: 400px;
  max-width: 100%;
  height: 100%;
  background: var(--color-nav-bg);
  transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1), color 0s, z-index 0s,
    filter 0.3s ease-in-out;
  padding: 24px;
  z-index: 900;
  border-radius: 12px 0 0 12px;
}
.sidebar.active {
  right: 0;
}

.sidebar-content {
  height: 100%;
  max-height: calc(100dvh - 48px) !important;
  position: absolute !important;
  left: 0;
  right: 0;
  overflow-y: auto !important;
  width: 100%;
  background: none;
  gap: 16px;
  display: flex;
  flex-direction: column;
}

body
  > div.dgwt-wcas-suggestions-wrapp.woocommerce.dgwt-wcas-has-img.dgwt-wcas-has-headings.js-dgwt-wcas-initialized,
body
  > div.dgwt-wcas-suggestions-wrapp.woocommerce.dgwt-wcas-has-img.dgwt-wcas-has-headings.js-dgwt-wcas-initialized.dgwt-wcas-suggestions-wrapp-fixed {
  max-height: calc(100dvh - 200px) !important;
}

@media (min-width: 768px) {
  body
    > div.dgwt-wcas-suggestions-wrapp.woocommerce.dgwt-wcas-has-img.dgwt-wcas-has-headings.js-dgwt-wcas-initialized,
  body
    > div.dgwt-wcas-suggestions-wrapp.woocommerce.dgwt-wcas-has-img.dgwt-wcas-has-headings.js-dgwt-wcas-initialized.dgwt-wcas-suggestions-wrapp-fixed {
    max-height: calc(450px - 242px) !important;
    overflow-y: auto !important;
  }
}

.sidebar h2 {
  margin-top: 0;
  font-size: 16px;
  text-align: center;
  padding-bottom: 24px;
}

.sidebar input {
  width: 100%;
  padding: 0.7rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.dgwt-wcas-sf-wrapp {
  padding: 0 !important;
  background: none !important;
  overscroll-behavior: contain;
}

body
  > div.dgwt-wcas-suggestions-wrapp.woocommerce.dgwt-wcas-has-img.dgwt-wcas-has-headings.js-dgwt-wcas-initialized {
  padding: 18px 24px;
  margin-top: 21px;
  border-radius: 18px;
  background-color: var(--color-nav-bg);
}
.dgwt-wcas-suggestion-nores {
  padding: 0;
  background-color: transparent;
}

.dgwt-wcas-search-focused #dgwt-wcas-search-input-1,
.dgwt-wcas-search-focused #dgwt-wcas-search-input-2 {
  padding-left: 0 !important;
  padding-right: 14px !important;
}
.dgwt-wcas-search-filled #dgwt-wcas-search-input-1,
.dgwt-wcas-search-filled #dgwt-wcas-search-input-2 {
  padding-left: 0 !important;
  padding-right: 46px !important;
}
.dgwt-wcas-close {
  left: 22px !important;
}
.dgwt-wcas-ico-magnifier {
  margin-bottom: 8.5px;
}
.dgwt-wcas-style-pirx.dgwt-wcas-search-filled
  .dgwt-wcas-sf-wrapp
  button.dgwt-wcas-search-submit {
  right: 10px !important;
}
.dgwt-wcas-search-submit {
  transition: all 0.3 ease-in-out;
}
.dgwt-wcas-search-filled button.dgwt-wcas-search-submit,
.dgwt-wcas-active button.dgwt-wcas-search-submit {
  left: 10px !important;
}
button.dgwt-wcas-search-submit {
  top: 50% !important;
  transform: translateY(-50%) !important;
}
#sidebar-close {
  position: absolute;
  left: 32px;
  top: 18px;
  cursor: pointer;
}

.sidebar
  > div
  > div
  > form
  > div
  > div.dgwt-wcas-preloader.dgwt-wcas-close.dgwt-wcas-inner-preloader {
  left: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.dgwt-wcas-open-pirx.dgwt-wcas-overlay-mobile-on
  .dgwt-wcas-om-bar
  button.dgwt-wcas-om-return
  path,
.dgwt-wcas-style-pirx .dgwt-wcas-close:not(.dgwt-wcas-inner-preloader) path,
.dgwt-wcas-style-pirx .dgwt-wcas-voice-search svg path,
.dgwt-wcas-style-pirx.dgwt-wcas-has-submit .dgwt-wcas-search-submit svg path {
  fill: var(--color-text-h3) !important;
}

.dgwt-wcas-suggestion-selected {
  background-color: transparent !important;
}

.dgwt-wcas-open-pirx .dgwt-wcas-details-inner,
.dgwt-wcas-open-pirx .dgwt-wcas-suggestions-wrapp > .dgwt-wcas-suggestion {
  padding-left: 0;
  padding-right: 0;
}

.dgwt-wcas-si {
  width: 80px !important;
}
.dgwt-wcas-suggestion:not(.dgwt-wcas-suggestion-history-product):not(
    .dgwt-wcas-suggestion-history-search
  )
  span.dgwt-wcas-si {
  width: 80px !important;
}
.dgwt-wcas-si img {
  border-radius: 8px;
  background-color: none;
  border: none;
}

.dgwt-wcas-st {
  display: block;
  color: var(--color-text-body);
  font-size: 15px;
  width: 100%;
  line-height: 1.4 !important;
  margin: 0 !important ;
}

.dgwt-wcas-suggestions-wrapp {
  overflow-y: auto; /* or overflow: auto; depending on your layout */
}

/* Firefox */
.dgwt-wcas-suggestions-wrapp {
  scrollbar-width: thin;
  scrollbar-color: var(--color-border-subtle) transparent;
}

/* Chrome / Safari / Edge */
.dgwt-wcas-suggestions-wrapp::-webkit-scrollbar {
  width: 4px; /* extra thin */
  height: 4px;
}

.dgwt-wcas-suggestions-wrapp::-webkit-scrollbar-track {
  background: transparent; /* invisible track */
}

.dgwt-wcas-suggestions-wrapp::-webkit-scrollbar-thumb {
  background: var(--color-border-subtle); /* faint */
  border-radius: 10px !important;
}

.dgwt-wcas-suggestions-wrapp::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-muted); /* slightly more visible on hover */
}
.icon-social path,
.icon-social {
  stroke: var(--color-text-h4);
}

.top-nav__social {
  display: flex;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  width: 21px;
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  background: var(--color-content-bg);
  justify-content: flex-end;
}
.top-nav__social.expanded {
  width: 256px;
}

.nav__social .icon-social circle,
.nav__social .icon-social line,
.icon-social {
  transition: all 0.5s ease-in-out;
}
.top-nav__social.expanded .icon-social circle {
  opacity: 0;
}
.top-nav__social.expanded .icon-social line:nth-child(4) {
  scale: 1.8;
  stroke-width: 1px;
  transform: translate(-3px, -11px) rotate(14deg);
}
.top-nav__social.expanded .icon-social line:nth-child(5) {
  scale: 1.8;
  stroke-width: 1px;
  transform: translate(-9px, 2px) rotate(-15deg);
}
.top-nav__social .social-trigger {
  display: inline-block;
  cursor: pointer;
}
.top-nav__social {
  gap: 12px;
}

.top-nav__social.expanded {
  width: calc(100vw - 54px);
}
.top-nav__phone p {
  display: none;
}
.top-nav__phone svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
}
.top-nav__social svg {
  height: 18px;
  width: 18px;
  min-height: 18px;
  min-width: 18px;
  max-height: 18px;
  max-width: 18px;
}
.top-nav__social {
  left: 14px;
}
@media (min-width: 230px) {
  .top-nav__social.expanded {
    width: calc(100vw - 68px);
  }

  .top-nav__social {
    left: 24px;
  }
  .top-nav__social svg {
    height: 21px;
    width: 21px;
    min-height: 21px;
    min-width: 21px;
    max-height: 21px;
    max-width: 21px;
  }
}

@media (min-width: 265px) {
  .top-nav__social {
    gap: 21px;
  }
  .top-nav__phone p {
    display: inline-block;
  }
  .top-nav__phone svg {
    height: 14px;
    width: 14px;
    min-height: 14px;
    min-width: 14px;
    max-height: 14px;
    max-width: 14px;
  }
}
@media (min-width: 430px) {
  .top-nav__social.expanded {
    width: 230px;
  }
}
@media (min-width: 490px) {
  .top-nav__social {
    gap: 24px;
  }
  .top-nav__social.expanded {
    width: 256px;
  }
}
/* Tablets */
@media (min-width: 440px) {
  .top-nav__social .social-trigger {
    display: none;
  }
  .top-nav__social,
  .top-nav__social.expanded {
    width: fit-content;
  }
}




/*cat Slider*/
/* CATEGORY ROW & TABS */
.oab-category-row,
.oab-category-tab,
.oab-products-slide {
  user-select: none;
  -webkit-user-drag: none;
  -webkit-tap-highlight-color: transparent;
}
.shop-btn:hover {
  opacity: 100;
}
.oab-category-tab {
  position: relative;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s ease-in-out;
}
.oab-category-tab.active {
  opacity: 100;
}
.swiper-button-prev {
  left: 18px;
}
.swiper-button-next {
  right: 18px;
}
.swiper-button-prev:after {
  transform: translateX(-2px);
  transition: all 0.3s ease-in-out;
}
.swiper-button-next:after {
  transition: all 0.3s ease-in-out;
  transform: translateX(2px);
}
.swiper-button-prev:hover:after {
  transform: translateX(-4px);
}
.swiper-button-next:hover:after {
  transform: translateX(4px);
}
.swiper-button-next,
.swiper-button-prev {
  background: var(--color-content-bg) !important;
  border-radius: 50% !important;
  height: 54px !important;
  width: 54px !important;
  border: 5px solid var(--color-border);
  color: var(--color-text-h6) !important;
  padding: 12px !important;
  transform: translateY(5.8vh);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  font-weight: 600;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0 !important;
}
.oab-cat-indicator {
  position: absolute;
  bottom: 3px; 
  height: 1.5px;
  background: var(--color-text-h3);
  transition: left 0.4s ease, width 0.4s ease;
  border-radius: 80px;
}
.oab-product-card {
  /* background: var(--color-content-bg); */
  border-radius: 21px;
  overflow: hidden;
  padding: 0;
  /* box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.02); */
  /* border: 1px solid var(--color-border); */
  height: 100%;
  background: #faf9f7;
  padding: 5px;
  border-radius: 24px;
}
.oab-category-slider-container .swiper-slide:last-of-type {
  display: flex;
  align-items: center;
  justify-content: center;
}
.oab-product-img-wrapper {
  border-radius: 21px;
  height: calc(494.75px - 280px);
  max-height: calc(494.75px - 280px);
  aspect-ratio: 1 / 1;
  padding: 0px;
  width: 100%;

  background-color: var(--color-card-bg);
  background-color: #f4f2eff3;
}
.oab-product-swiper .swiper-slide {
  height: auto !important;
}
.oab-product-card img {
  height: 100%;
  width: 100%;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  /* TODO Remove once images are proper png */
  mix-blend-mode: multiply;
  border-radius: 21px;
}
.oab-product-card h4 {
  /* padding: 14px 6px 8px 6px; */
  padding: 14px;
}
/* Swiper */

.oab-category-row-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/* CATEGORY ROW */
.oab-category-row {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  position: relative;
  gap: 0.5rem;
  padding: 0 24px;
}
.oab-category-row::-webkit-scrollbar {
  display: none;
}

/* SLIDES */
.oab-products-slides {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 100%;
}
.oab-products-slide {
  flex-shrink: 0;
  width: 100%;
}

.oab-product-swiper {
  padding: 32px 0;
}
/* PRODUCT SLIDER */
.oab-product-swiper .swiper-slide {
  box-sizing: border-box;
}

/* VIEW ALL BUTTON */
.oab-view-all-btn {
  display: inline-block;
  padding: 8px 24px;
  background: var(--color-btn-primary);
  color: var(--color-btn-primary-text);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}
.oab-view-all-btn:hover {
  background: var(--color-btn-primary-hover);
}

/* CATEGORY ARROWS */
.oab-cat-left,
.oab-cat-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0px solid var(--color-border);
  cursor: pointer;
  color: var(--color-text-h6);
  z-index: 10;
  border-radius: 0 10px 10px 0;
  width: 43px;
  display: flex;
  align-items: center;

  height: 100%;
  font-size: 17px;
  background: linear-gradient(45deg, #f2f1eea3, #f2f1ee96);
}
.oab-cat-left {
  justify-content: end;
  left: -6px;
  text-align: end;
}
.oab-cat-right {
  right: -6px;
  justify-content: start;
  text-align: start;
}

/* Toggle desktop / mobile */
.oab-desktop-only {
  display: block;
}
.oab-mobile-only {
  display: none;
}
.oab-mobile-xs-only {
  display: none;
}
.oab-mobile-xs-up-only {
  display: block;
}
@media (max-width: 380px) {
  .oab-mobile-xs-up-only {
    display: none;
  }
  .oab-mobile-xs-only {
    display: flex;
  }
}
@media (max-width: 767px) {
  #site-menu {
     height: calc(100dvh - 100px);
    overflow: hidden;
  }
  #site-menu.expanded {
     max-height: calc(100dvh - 100px);
   }
  #site-menu-content {
    max-height: 100%;
    overflow: auto;
  }
  /* Firefox */
  #site-menu-content {
    scrollbar-width: thin;
    scrollbar-color: var(--color-border-subtle) transparent;
  }

  /* Chrome / Safari / Edge */
  #site-menu-content::-webkit-scrollbar {
    width: 4px; /* extra thin */
    height: 4px;
    border-radius: 10px;
  }

  #site-menu-content::-webkit-scrollbar-track {
    background: transparent; /* invisible track */
    border-radius: 10px;
  }

  #site-menu-content::-webkit-scrollbar-thumb {
    background: var(--color-border-subtle); /* faint */
    border-radius: 10px;
  }

  #site-menu-content::-webkit-scrollbar-thumb:hover {
    border-radius: 10px;
    background: var(--color-text-muted); /* slightly more visible on hover */
  }
  .site-menu-content {
    overflow-x: hidden !important;
    padding: 6px;

    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    background-color: var(--color-nav-bg);
  }
  

  .oab-desktop-only {
    display: none;
  }
  .oab-mobile-only {
    display: block;
    padding-top: 96px;
  }
}
@media (min-width: 768px) {
    .site-menu-content {
      background-color: var(--color-top-nav-bg);
      /*background-color: #edeae6a3;*/
      backdrop-filter: blur(8px);
      overflow:auto;
      border-radius: 35px;
      padding:32px 16px;
    }
  }
/* Accordion styles */
.oab-category-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.oab-accordion-item {
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.oab-accordion-header {
  width: 100%;
  background: #f8f8f8;
  padding: 12px 16px;
  text-align: left;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.oab-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 16px;
}

.oab-accordion-item.active .oab-accordion-content {
  padding: 12px 16px;
}

.accordion-arrow {
  transition: transform 0.3s ease;
}
.oab-accordion-item.active .accordion-arrow {
  transform: rotate(45deg);
}
/* MOBILE CATEGORY SLIDER */
.oab-mobile-slide-wrapper {
  position: relative;
  overflow: hidden;
}
#site-menu-content .oab-mobile-slide-wrapper.oab-mobile-only.show-products{
    padding-bottom:12px;
}
/* Category list */
.oab-category-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: height 0.3s ease;
  overflow: hidden; /* prevent overflow when animating */
  padding: 24px;
  padding-top: 18px;
}
.mob-subcat-title{
    padding-bottom: 16px;
    padding-right: 4px; 
}
.mob-subcat-title::after {
 content: "";
 margin-bottom: -4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233b352f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  display: inline-block;
  margin-right: 6px;
  transform:rotateZ(90deg);
  width: 18px;
  height: 18px;
  vertical-align: middle;
  stroke: currentColor; /* Inherit color from parent */
}
/* Products slide container */
.oab-mobile-cat-products {
  position: absolute;
  top: 0;
  left: 100%; /* start offscreen */
  width: 100%;
  height: 100%;
  max-height: 100%;
  bottom: 0;
  display: flex;
  background-color: var(--color-nav-bg);
  flex-direction: column;
  transition: left 0.4s ease; /* smooth in/out */
  padding-top: 138px; /* push down for back button */
  overflow: auto;
}
.oab-mobile-cat-item {
  /* padding: 12px 24px; */
  margin-right: 24px;
}
.oab-mobile-cat-item.active {
  background: var(--color-border);
}
.oab-mobile-list-item {
  user-select: none;
  background: #edeae6a6;
  border-radius: 9px;
  border: 1px solid var(--color-border);
  color: var(--color-text-heading) !important;
}
.oab-mob-search {
  background-color: var(--color-top-nav);
}

.outside-mob-search-toggle{
    position:relative;
    margin-top:104px;
    z-index:50;
    /* When closing the menu, reset z-index IMMEDIATELY (0s delay) */
    transition: z-index 0s linear 0.6s;
}
body:has(#site-menu.expanded) .outside-mob-search-toggle,body:has(#oab-profile-dropdown.is-open) .outside-mob-search-toggle{
    z-index: 10 !important; /* Adjust this number as needed */
    position: relative;     /* z-index WILL NOT work without this! */
    /* When opening the menu, wait 0.3s before changing z-index */
    /* Change '0.3s' to match your menu's animation speed */
    transition: z-index 0s linear 0s;
}

.outside-mob-search-toggle-inner{
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 14px 24px;
    border-radius: 12px;
    border: 1px solid var(--color-border-subtle);
    align-items: center;
}

.outside-mob-search-toggle-inner p{
    color: var(--color-text-h6);
}
.outside-mob-search-toggle-inner svg{
    margin-bottom:0 !important;
}
.oab-mobile-list-item button,
.oab-mobile-list-item a {
  color: var(--color-text-heading) !important;
}
/* Active: slide in */
.oab-mobile-slide-wrapper.show-products .oab-mobile-cat-products {
  left: 0;
}
.oab-mobile-slide-wrapper.show-products .oab-mobile-products-wrapper {
  padding-top: 14px;
}

/* Back button */
.oab-mobile-back-btn {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0s ease;
}

.oab-mobile-slide-wrapper.show-products .oab-mobile-back-btn,
.oab-mobile-back-btn.show {
  opacity: 1;
  pointer-events: auto;
  z-index:10;
}
.oab-mobile-back-btn {
  position: sticky;
  inset: auto;
  top: 0;
  background: linear-gradient(
    180deg,
    var(--color-nav-bg) 93%,
    var(--color-nav-bg) 10%
  );
  left: 0;
  right: 0;
  width: 100%;
  padding-right: 12px;
  margin: 0;
  box-shadow: none;
  outline: none;
  border: none;
  margin-top: -3px;
  padding: 10px 24px;
  border-radius: 12px;
}
.oab-mobile-back-btn > div {
  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--color-content-bg) !important;
  border-radius: 14px !important;
  height: 42px !important;
  width: 54px !important;
  border: 5px solid var(--color-border);
  color: var(--color-text-h6) !important;
  padding: 12px !important;
}

/* Products wrapper (scrollable list) */
.oab-mobile-products-wrapper {
  /*flex: 1;*/
   /*overflow-y: auto; */
  min-height: 0;
  height: fit-content;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px 20px; /* padding bottom prevents cutoff */
  box-sizing: border-box;
}
/* Update this block */
.oab-mobile-products-wrapper .oab-product-card,
.oab-mobile-products-wrapper .oab-view-all-btn {
  /* ... existing styles ... */

  /* ADD THIS: Prevents items from getting smaller as list grows */
  flex-shrink: 0;

  min-height: fit-content;
  /* Ensure they have a minimum height if content is empty */
  /* min-height: max-content; */
}
#site-menu-content .ripple-btn {
  min-height: 40px !important;
}
/* Keep your product card style */
.oab-mobile-products-wrapper .oab-product-card {
  display: block;
  user-select: none;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  padding: 8px;
  background: #edeae6ab;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 18px;
  border-radius: 8px;
  height: fit-content;
}
.oab-product-card:hover {
  transform: translateY(-4px);
}
.oab-product-card {
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.oab-mobile-products-wrapper .oab-product-card img {
  height: 100px;
  width: 100px;
  min-height: 100px;
  min-width: 100px;

  background: var(--color-card);
  /* box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05); */
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.02);

  border-radius: 8px;
}
.oab-mobile-products-wrapper .oab-product-card:hover {
  transform: translateY(-2px);
}
.oab-mobile-products-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.oab-mobile-products-wrapper h4 {
  font-weight: bold;
  font-size: 14px;
}
.oab-mobile-products-wrapper span {
  font-size: 13px;
  color: var(--color-text-body);
}
.oab-mobile-products-wrapper .oab-view-all-btn {
  width: 100%;
  padding: 12px;
  text-align: center;
  background: var(--color-btn-primary);
  color: var(--color-btn-primary-text);
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
}
.oab-mobile-products-wrapper .oab-view-all-btn:hover {
  background: var(--color-btn-primary-hover);
}


/*Desktop Menu*/
.oab-category-column-wrapper {
    display: flex;
    gap: 20px;
    height: 100%;
}

.oab-category-column {
    flex: 1;
    display:flex;
    min-width: 200px;
    /*overflow-y: auto;*/
    padding:0  15px;
}

.oab-category-column.oab-sub-level .oab-product-item{
    width:fit-content;
padding:17px 21px !important;
}

.oab-sub-cat-item::after{
content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233b352f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  display: inline-block;
  margin-right: 12px;
  margin-bottom: -4px;
  transform:rotateZ(90deg);
  width: 18px;
  height: 18px;
  vertical-align: middle;
  stroke: currentColor; /* Inherit color from parent */
}
.oab-category-column.oab-sub-level .oab-sub-cat-item{
    width:fit-content;
    min-width:120px;
}
.oab-sub-level-list{
    flex:1;
}
   
.oab-top-level{
    min-width: 200px;
    max-width: 25%;
    border-left: 2px solid var(--color-card-border);
}
.oab-top-level-list{
    width:100%;
}
.oab-top-level-list li {
    padding: 10px 0;
  
}

.oab-category-column.oab-top-level{
    padding:0 !important;
    padding-left:12px !important;
}
.oab-sub-level-list li {
    padding: 17px 21px;
    
}
.oab-sub-level-list li.oab-cat-item {
    background: var(--color-footer-bg);
    margin-bottom: 15px;
    padding: 17px 21px;
    border-radius: 12px;
}
.oab-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

/* Hover states (to be handled by JS) */
.oab-top-cat-item:hover ~ .oab-sub-level .oab-sub-level-list {
    display: block;
}

li.oab-top-cat-item,.oab-sub-cat-item{
      padding: 17px 21px;
    border-radius: 12px;
    min-width:120px;
} 
li.oab-top-cat-item{
    font-weight:600;
}

/* When the middle wrapper has the 'is-single-col' class */
.oab-middle-columns.is-single-col .oab-products-level {
    display: none !important; /* Hide Column 3 */
}

.oab-middle-columns.is-single-col .oab-sub-level {
    width: 100% !important; /* Force Column 2 to take full width */
    flex: 0 0 100% !important;
    max-width: 100%;
}

/* Optional: Since the area is wide now, display products in a Grid? */
.oab-middle-columns.is-single-col .oab-sub-level-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 items per row */
    gap: 15px;
}
/* Column 1 active state */
.oab-top-cat-item.active {
    background-color: var(--color-border);
    font-weight: bold;
}

/* Column 2 active state */
.oab-sub-cat-item.active,

.oab-product-item.active {
   color:var(--color-primary);
   stroke: var(--color-primary);
   
}
.oab-sub-cat-item.active:after{
 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23d73f3f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}
/* Column 3 active state */
.oab-products-level li.active {
    color:var(--color-primary);
  
}

/* Container must allow positioning context */
.oab-products-level {
    position: relative;
    /* Ensure it has a max-height so it CAN scroll */
    overflow-y: auto; 
}

/* The Arrow Indicator */
.oab-scroll-arrow {
    position: absolute;
    /*top:calc(450px - 142px);*/
    top:calc(85dvh - 142px);
    left: 0;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    color: var(--color-text-h6);
    opacity: 0;

    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 900;
    background: linear-gradient(to top, rgb(242 241 238 / 68%) 40%, rgb(236 234 231 / 16%));
}

/* Class to show it */
.oab-scroll-arrow.visible {
    opacity: 1;
    
}

/* Bouncing Animation */
.oab-scroll-arrow svg {
    animation: oab-bounce 1.5s infinite;
}

@keyframes oab-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}
ul.oab-sub-level-list .oab-product-item{
    padding:0px 0;
}
.oab-products-level .oab-sub-level-list{
max-height: fit-content;
    background: #e5e2de75;
    border-radius: 14px;
    padding: 18px 32px;
    gap: 32px;
    display: flex;
    flex-direction: column;
}


.woocommerce div.product form.cart button.single_add_to_cart_button{
    background-color:var(--color-primary) !important;
}



/* =========================
   OAB Related Products
   - stays 1 row as long as possible
   - image min width: 90px
   - always centered (1/2/3/4 centered)
   - wraps only when it truly can't fit
   - on very small screens: if 4 items, wrap evenly 2 + 2
   ========================= */

/* Wrapper */
.oab-related-products{
  width: 100%;
  margin: 24px auto;
}

/* FLEX "grid" */
.oab-related-products__grid{
  display: flex;
  
  flex-wrap: wrap;
  justify-content: center; /* ✅ center always */
  align-items: flex-start;
  gap: 12px;

  list-style: none;
  padding: 0;
  margin: 21px auto 42px auto;

  max-width: 1000px; /* optional */
}

/* Item (KEY: allow shrinking so 4 stays in one row longer) */
.oab-related-products__item{
  flex: 0 1 90px;     /* base width */
  min-width: 23%;    /* ✅ lower = wraps later. can go 100/95 if needed */
  display: flex;
  justify-content: center;
  margin-right: 0 !important;
}

/* Card */
.oab-related-products__link{
  width: 100%;
  text-align: center;
  text-decoration: none;

  border-radius: 14px;
  overflow: hidden; /* rounds image corners too */

  transition: transform .25s ease, box-shadow .25s ease;
}

.oab-related-products__link:hover{
  transform: translateY(-4px);
  /*box-shadow: 0 10px 30px rgba(0,0,0,.08);*/
}

/* Image wrapper (centers the image) */
.oab-related-products__img{
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 8px; /* optional breathing space */
  margin-bottom:10px;
}

/* Image */
.oab-related-products__img img{
  width: 100%;

  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

/* Title */
.oab-related-products__title{
  font-size: 15px;
  line-height: 1.4;
  color: var(--color-text-h3);

  /*display: -webkit-box;*/
  /*-webkit-box-orient: vertical;*/
  /*-webkit-line-clamp: 2;*/

  /*max-height: calc(1.4em * 2);*/
  /*min-height: calc(1.4em * 2);*/

  /*overflow: hidden;*/
}
/* Tablet: keep trying for 4 in a row (no forced wrap here) */
@media (max-width: 710px){
.oab-related-products__item{
  flex: 0 1 90px;     /* base width */
  min-width: 32%;    /* ✅ lower = wraps later. can go 100/95 if needed */
  display: flex;
  justify-content: center;
  margin-right: 0 !important;
}

}

/* Tablet: keep trying for 4 in a row (no forced wrap here) */
@media (max-width: 900px){
  .oab-related-products__grid{
    max-width: 100%;
  }
}

/* Mobile: stack nicely */
@media (max-width: 520px){
  .oab-related-products__item{
   
    flex-basis: 40%;
        min-width: 85px;
        max-width: 420px;
  }
.oab-related-products__title{
  font-size: 12px;
    
 }
.oab-related-products__img img{
    border-radius:12px;
  }

  /* If exactly 4 items on small screens: enforce even wrap 2 + 2 */
  .oab-related-products__grid:has(.oab-related-products__item:nth-child(4):last-child)
    .oab-related-products__item{
    flex-basis:  40%;
    max-width: none;
    min-width: 0; /* allow clean 2 columns */
  }
  
  .oab-related-products__grid{
      gap:8px;
  }
}

.oab-consult-wrap{
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 22px auto 10px;
}

.oab-consult-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.oab-consult-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
