/* =========================================================
   JOOD APP STOREFRONT
   00 RESET + ISOLATION
   Place this block at the very top of: assets/css/jood-app.css
========================================================= */

/* =========================================================
   00.01 ROOT ISOLATION
========================================================= */

#jood-app,
#jood-app *,
#jood-app *::before,
#jood-app *::after {
  box-sizing: border-box;
}

#jood-app {
  direction: rtl;
  unicode-bidi: isolate;
  isolation: isolate;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  color: #2B170F;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.6;
  text-align: right;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#jood-app[dir="ltr"] {
  direction: ltr;
  text-align: left;
}

#jood-app[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

/* =========================================================
   00.02 CONTENT FLOW RESET
========================================================= */

#jood-app :where(
  article,
  aside,
  details,
  figcaption,
  figure,
  footer,
  header,
  main,
  menu,
  nav,
  section,
  summary
) {
  display: block;
}

#jood-app :where(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  figure,
  blockquote,
  dl,
  dd,
  ul,
  ol,
  menu,
  pre
) {
  margin: 0;
  padding: 0;
}

#jood-app :where(ul, ol, menu) {
  list-style: none;
}

#jood-app :where(hr) {
  height: 0;
  margin: 0;
  border: 0;
  border-top: 1px solid currentColor;
  color: inherit;
  opacity: .14;
}

#jood-app :where(address) {
  font-style: normal;
}

#jood-app :where(strong, b) {
  font-weight: 800;
}

#jood-app :where(small) {
  font-size: .875em;
}

#jood-app :where(mark) {
  color: inherit;
  background: transparent;
}

#jood-app :where(code, kbd, samp, pre) {
  font-family: inherit;
}

/* =========================================================
   00.03 LINKS RESET
========================================================= */

#jood-app :where(a) {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-text-decoration-skip: objects;
}

#jood-app :where(a:hover, a:focus, a:active) {
  color: inherit;
  text-decoration: none;
}

#jood-app :where(a:focus) {
  outline: none;
}

#jood-app :where(a:focus-visible) {
  outline: 3px solid rgba(214, 181, 109, .34);
  outline-offset: 3px;
}

/* =========================================================
   00.04 MEDIA RESET
========================================================= */

#jood-app :where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
  max-width: 100%;
}

#jood-app :where(img, video, canvas) {
  height: auto;
}

#jood-app :where(img) {
  border-style: none;
  vertical-align: middle;
}

#jood-app :where(svg) {
  width: 1em;
  height: 1em;
  overflow: visible;
  fill: none;
  stroke: currentColor;
}

#jood-app :where(svg path, svg circle, svg rect, svg line, svg polyline, svg polygon) {
  vector-effect: non-scaling-stroke;
}

#jood-app :where(iframe) {
  width: 100%;
  border: 0;
}

/* =========================================================
   00.05 TABLE RESET
========================================================= */

#jood-app :where(table) {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

#jood-app :where(th, td) {
  padding: 0;
  text-align: inherit;
  vertical-align: middle;
}

#jood-app :where(th) {
  font-weight: 800;
}

/* =========================================================
   00.06 FORM RESET
========================================================= */

#jood-app :where(
  button,
  input,
  optgroup,
  select,
  textarea
) {
  margin: 0;
  font: inherit;
  color: inherit;
}

#jood-app :where(button, select) {
  text-transform: none;
}

#jood-app :where(button, [type="button"], [type="reset"], [type="submit"]) {
  appearance: button;
  -webkit-appearance: button;
  border: 0;
  background: transparent;
  cursor: pointer;
}

#jood-app :where(button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner) {
  padding: 0;
  border-style: none;
}

#jood-app :where(button:disabled, input:disabled, select:disabled, textarea:disabled) {
  cursor: not-allowed;
  opacity: .58;
}

#jood-app :where(input, textarea, select, button) {
  max-width: 100%;
  min-width: 0;
}

#jood-app :where(textarea) {
  overflow: auto;
  resize: vertical;
}

#jood-app :where(select) {
  word-wrap: normal;
}

#jood-app :where([type="search"]) {
  appearance: textfield;
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

#jood-app :where([type="search"]::-webkit-search-decoration) {
  -webkit-appearance: none;
}

#jood-app :where([type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button) {
  height: auto;
}

#jood-app :where(input[type="hidden"]) {
  display: none !important;
}

#jood-app :where(fieldset) {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

#jood-app :where(legend) {
  display: table;
  max-width: 100%;
  padding: 0;
  color: inherit;
  white-space: normal;
}

#jood-app :where(label) {
  display: inline-block;
  cursor: pointer;
}

#jood-app :where(input::placeholder, textarea::placeholder) {
  opacity: 1;
}

/* =========================================================
   00.07 DETAILS / DIALOG / PROGRESS RESET
========================================================= */

#jood-app :where(details) {
  display: block;
}

#jood-app :where(summary) {
  display: list-item;
  cursor: pointer;
}

#jood-app :where(dialog) {
  padding: 0;
  border: 0;
}

#jood-app :where(progress) {
  vertical-align: baseline;
}

/* =========================================================
   00.08 WORDPRESS / THEME SAFETY INSIDE JOOD ONLY
========================================================= */

#jood-app :where(.alignleft, .alignright, .aligncenter) {
  float: none;
  display: block;
  margin: 0;
}

#jood-app :where(.wp-caption) {
  max-width: 100%;
}

#jood-app :where(.wp-caption img) {
  width: 100%;
}

#jood-app :where(.screen-reader-text) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

/* =========================================================
   00.09 WOOCOMMERCE SAFETY INSIDE JOOD ONLY
========================================================= */

#jood-app :where(.woocommerce, .woocommerce-page) {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
}

#jood-app :where(.woocommerce form, .woocommerce-page form) {
  margin: 0;
}

#jood-app :where(.woocommerce p, .woocommerce-page p) {
  margin: 0;
}

#jood-app :where(.woocommerce ul, .woocommerce-page ul) {
  margin: 0;
  padding: 0;
}

#jood-app :where(.woocommerce-error, .woocommerce-info, .woocommerce-message) {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  list-style: none;
}

#jood-app :where(.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before) {
  display: none;
  content: none;
}

#jood-app :where(.woocommerce-error li, .woocommerce-info li, .woocommerce-message li) {
  margin: 0;
  padding: 0;
}

#jood-app :where(.woocommerce form .form-row) {
  margin: 0;
  padding: 0;
}

#jood-app :where(.woocommerce form .form-row-first, .woocommerce form .form-row-last) {
  float: none;
  width: auto;
}

#jood-app :where(.woocommerce form .form-row-wide) {
  clear: none;
}

#jood-app :where(.woocommerce table.shop_table) {
  margin: 0;
  border: 0;
  border-radius: 0;
}

#jood-app :where(.woocommerce table.shop_table th, .woocommerce table.shop_table td) {
  border: 0;
}

#jood-app :where(.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit) {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  line-height: inherit;
  font-weight: inherit;
  box-shadow: none;
}

/* =========================================================
   00.10 APP DIRECT CHILDREN SAFETY
========================================================= */

#jood-app :where(.jood-app-main, .jood-app-content) {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  position: relative;
}

#jood-app :where(.jood-app-content > *) {
  min-width: 0;
}

#jood-app :where(.jood-app-content > :first-child) {
  margin-top: 0;
}

#jood-app :where(.jood-app-content > :last-child) {
  margin-bottom: 0;
}

/* =========================================================
   00.11 TAP / SCROLL / SELECTION
========================================================= */

#jood-app {
  -webkit-tap-highlight-color: rgba(214, 181, 109, .18);
}

#jood-app ::selection {
  background: rgba(214, 181, 109, .28);
  color: #2B170F;
}

#jood-app :where([hidden]) {
  display: none !important;
}

/* =========================================================
   00.12 REDUCED MOTION BASE
========================================================= */

@media (prefers-reduced-motion: reduce) {
  #jood-app *,
  #jood-app *::before,
  #jood-app *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* =========================================================
   01 VARIABLES
   Paste the next batch directly under this line
========================================================= */
/* =========================================================
   01 VARIABLES
   Design tokens for the full Jood app interface.
   Paste this block directly under 00 Reset + Isolation.
========================================================= */

/* =========================================================
   01.01 BRAND COLORS
========================================================= */

#jood-app {
  --jood-ink: #2B170F;
  --jood-ink-2: #3A2116;
  --jood-ink-3: #4A2A1D;

  --jood-gold: #B9854D;
  --jood-gold-2: #D7B179;
  --jood-gold-3: #E8C99A;
  --jood-gold-4: #FFF8EF;

  --jood-cream: #FFF8EF;
  --jood-cream-2: #F6E9D8;
  --jood-cream-3: #EFE0CC;

  --jood-white: #FFFFFF;
  --jood-white-soft: #FFFFFF;

  --jood-brown: #6B3E25;
  --jood-brown-2: #8B5A36;

  --jood-text: #241812;
  --jood-text-soft: #4A3428;
  --jood-muted: #7B6758;
  --jood-muted-2: #9A806D;
  --jood-muted-3: #B39A86;

  --jood-border: rgba(107, 62, 37, .16);
  --jood-border-2: rgba(185, 133, 77, .34);
  --jood-border-3: #B9854D;

  --jood-success: #1f8a5b;
  --jood-success-soft: #edf8f2;

  --jood-danger: #b84034;
  --jood-danger-soft: #fff2f0;

  --jood-warning: #B9854D;
  --jood-warning-soft: #FFF8EF;

  --jood-info: #6B3E25;
  --jood-info-soft: #f3f7fb;
}

/* =========================================================
   01.02 PAGE BACKGROUNDS
========================================================= */

#jood-app {
  --jood-page-bg: #FFF8EF;
  --jood-page-bg-soft: #F6E9D8;
  --jood-page-bg-warm: #FFF3E4;

  --jood-surface: #FFFFFF;
  --jood-surface-soft: #FFF8EF;
  --jood-surface-muted: #F6E9D8;
  --jood-surface-glass: rgba(255, 255, 255, .84);

  --jood-overlay-light: rgba(255, 255, 255, .72);
  --jood-overlay-warm: rgba(255, 255, 255, .82);
  --jood-overlay-gold: rgba(185, 133, 77, .14);

  --jood-dark-surface: #2B170F;
  --jood-dark-surface-2: #3A2116;
  --jood-dark-text: #FFFFFF;
  --jood-dark-muted: rgba(255, 255, 255, .72);
}

/* =========================================================
   01.03 TYPOGRAPHY SCALE
========================================================= */

#jood-app {
  --jood-font-family: inherit;

  --jood-fs-10: 10px;
  --jood-fs-11: 11px;
  --jood-fs-12: 12px;
  --jood-fs-13: 13px;
  --jood-fs-14: 14px;
  --jood-fs-15: 15px;
  --jood-fs-16: 16px;
  --jood-fs-17: 17px;
  --jood-fs-18: 18px;
  --jood-fs-20: 20px;
  --jood-fs-22: 22px;
  --jood-fs-24: 24px;
  --jood-fs-28: 28px;
  --jood-fs-32: 32px;
  --jood-fs-38: 38px;
  --jood-fs-44: 44px;

  --jood-lh-tight: 1.15;
  --jood-lh-heading: 1.25;
  --jood-lh-body: 1.7;
  --jood-lh-loose: 1.9;

  --jood-fw-regular: 400;
  --jood-fw-medium: 500;
  --jood-fw-semibold: 700;
  --jood-fw-bold: 800;
  --jood-fw-black: 900;
  --jood-fw-heavy: 950;

  --jood-letter-tight: -.6px;
  --jood-letter-normal: 0;
}

/* =========================================================
   01.04 LAYOUT WIDTHS
========================================================= */

#jood-app {
  --jood-max: 1180px;
  --jood-max-wide: 1320px;
  --jood-max-narrow: 920px;
  --jood-max-form: 760px;
  --jood-max-card: 560px;

  --jood-safe-x: clamp(12px, 2.4vw, 28px);
  --jood-safe-y: clamp(14px, 2.6vw, 30px);

  --jood-main-top: clamp(12px, 2vw, 22px);
  --jood-main-bottom: clamp(34px, 5vw, 70px);

  --jood-section-y: clamp(18px, 3vw, 36px);
  --jood-section-y-sm: clamp(12px, 2vw, 22px);
  --jood-section-y-lg: clamp(26px, 4vw, 52px);
}

/* =========================================================
   01.05 SPACING SCALE
========================================================= */

#jood-app {
  --jood-space-0: 0;
  --jood-space-1: 2px;
  --jood-space-2: 4px;
  --jood-space-3: 6px;
  --jood-space-4: 8px;
  --jood-space-5: 10px;
  --jood-space-6: 12px;
  --jood-space-7: 14px;
  --jood-space-8: 16px;
  --jood-space-9: 18px;
  --jood-space-10: 20px;
  --jood-space-11: 22px;
  --jood-space-12: 24px;
  --jood-space-14: 28px;
  --jood-space-16: 32px;
  --jood-space-18: 36px;
  --jood-space-20: 40px;
  --jood-space-24: 48px;
  --jood-space-28: 56px;
  --jood-space-32: 64px;

  --jood-gap-xs: 6px;
  --jood-gap-sm: 8px;
  --jood-gap-md: 12px;
  --jood-gap-lg: 16px;
  --jood-gap-xl: 20px;
  --jood-gap-2xl: 24px;
  --jood-gap-3xl: 32px;
}

/* =========================================================
   01.06 RADIUS SCALE
========================================================= */

#jood-app {
  --jood-radius-0: 0;
  --jood-radius-xs: 8px;
  --jood-radius-sm: 10px;
  --jood-radius-md: 14px;
  --jood-radius-lg: 18px;
  --jood-radius-xl: 22px;
  --jood-radius-2xl: 26px;
  --jood-radius-3xl: 32px;
  --jood-radius-card: 20px;
  --jood-radius-panel: 24px;
  --jood-radius-hero: 28px;
  --jood-radius-pill: 999px;
}

/* =========================================================
   01.07 BORDERS
========================================================= */

#jood-app {
  --jood-border-light: 1px solid rgba(232, 220, 199, .72);
  --jood-border-normal: 1px solid rgba(232, 220, 199, .95);
  --jood-border-strong: 1px solid rgba(214, 181, 109, .95);
  --jood-border-gold: 1px solid rgba(214, 181, 109, .46);
  --jood-border-dark-soft: 1px solid rgba(10, 22, 37, .08);
  --jood-border-white-soft: 1px solid rgba(255, 255, 255, .18);
}

/* =========================================================
   01.08 SHADOWS
========================================================= */

#jood-app {
  --jood-shadow-none: none;

  --jood-shadow-hair: 0 1px 0 rgba(10, 22, 37, .04);
  --jood-shadow-xs: 0 4px 14px rgba(10, 22, 37, .045);
  --jood-shadow-sm: 0 8px 24px rgba(10, 22, 37, .065);
  --jood-shadow-md: 0 14px 38px rgba(10, 22, 37, .085);
  --jood-shadow-lg: 0 22px 58px rgba(10, 22, 37, .11);

  --jood-shadow-gold-xs: 0 4px 14px rgba(214, 181, 109, .12);
  --jood-shadow-gold-sm: 0 10px 28px rgba(214, 181, 109, .16);

  --jood-shadow-inset: inset 0 1px 0 rgba(255, 255, 255, .72);
  --jood-shadow-focus: 0 0 0 4px rgba(214, 181, 109, .18);
}

/* =========================================================
   01.09 TRANSITIONS
========================================================= */

#jood-app {
  --jood-speed-fast: 140ms;
  --jood-speed: 220ms;
  --jood-speed-slow: 360ms;

  --jood-ease: cubic-bezier(.2, .75, .25, 1);
  --jood-ease-out: cubic-bezier(.16, 1, .3, 1);
  --jood-ease-in-out: cubic-bezier(.65, 0, .35, 1);

  --jood-transition-base:
    color var(--jood-speed) var(--jood-ease),
    background-color var(--jood-speed) var(--jood-ease),
    border-color var(--jood-speed) var(--jood-ease),
    box-shadow var(--jood-speed) var(--jood-ease),
    transform var(--jood-speed) var(--jood-ease);

  --jood-transition-fast:
    color var(--jood-speed-fast) var(--jood-ease),
    background-color var(--jood-speed-fast) var(--jood-ease),
    border-color var(--jood-speed-fast) var(--jood-ease),
    transform var(--jood-speed-fast) var(--jood-ease);
}

/* =========================================================
   01.10 BUTTON TOKENS
========================================================= */

#jood-app {
  --jood-btn-height-xs: 34px;
  --jood-btn-height-sm: 40px;
  --jood-btn-height-md: 46px;
  --jood-btn-height-lg: 52px;
  --jood-btn-height-xl: 58px;

  --jood-btn-pad-xs: 7px 11px;
  --jood-btn-pad-sm: 9px 13px;
  --jood-btn-pad-md: 11px 16px;
  --jood-btn-pad-lg: 13px 20px;
  --jood-btn-pad-xl: 15px 24px;

  --jood-btn-bg-primary: #2B170F;
  --jood-btn-bg-primary-hover: #2B170F;
  --jood-btn-text-primary: #FFFFFF;

  --jood-btn-bg-gold: #B9854D;
  --jood-btn-bg-gold-hover: #D7B179;
  --jood-btn-text-gold: #2B170F;

  --jood-btn-bg-ghost: #FFFFFF;
  --jood-btn-bg-ghost-hover: #FFF8EF;
  --jood-btn-text-ghost: #2B170F;
}

/* =========================================================
   01.11 FORM TOKENS
========================================================= */

#jood-app {
  --jood-field-height-sm: 42px;
  --jood-field-height: 48px;
  --jood-field-height-lg: 54px;

  --jood-field-radius: 16px;
  --jood-field-radius-sm: 12px;
  --jood-field-radius-lg: 20px;

  --jood-field-pad-x: 14px;
  --jood-field-pad-y: 11px;

  --jood-field-bg: #FFFFFF;
  --jood-field-bg-soft: #FFFFFF;
  --jood-field-border: rgba(232, 220, 199, .98);
  --jood-field-border-hover: rgba(214, 181, 109, .55);
  --jood-field-border-focus: rgba(214, 181, 109, .86);

  --jood-field-text: #2B170F;
  --jood-field-placeholder: rgba(117, 108, 96, .62);
  --jood-field-label: #2B170F;

  --jood-field-shadow: inset 0 1px 0 rgba(255, 255, 255, .82);
  --jood-field-focus-shadow: 0 0 0 4px rgba(214, 181, 109, .16);
}

/* =========================================================
   01.12 CARD TOKENS
========================================================= */

#jood-app {
  --jood-card-bg: #FFFFFF;
  --jood-card-bg-soft: #FFFFFF;
  --jood-card-border: 1px solid rgba(232, 220, 199, .92);
  --jood-card-border-hover: 1px solid rgba(214, 181, 109, .58);
  --jood-card-radius: 20px;
  --jood-card-radius-lg: 24px;
  --jood-card-shadow: 0 6px 18px rgba(10, 22, 37, .055);
  --jood-card-shadow-hover: 0 14px 34px rgba(10, 22, 37, .09);

  --jood-card-pad-xs: 10px;
  --jood-card-pad-sm: 12px;
  --jood-card-pad-md: 16px;
  --jood-card-pad-lg: 20px;
  --jood-card-pad-xl: 24px;
}

/* =========================================================
   01.13 PRODUCT TOKENS
========================================================= */

#jood-app {
  --jood-product-card-radius: 18px;
  --jood-product-card-pad: 12px;
  --jood-product-media-radius: 16px;
  --jood-product-media-bg: #FFFFFF;

  --jood-product-title-size: 14px;
  --jood-product-title-lh: 1.45;
  --jood-product-excerpt-size: 12px;
  --jood-product-price-size: 15px;

  --jood-product-grid-gap: 12px;
  --jood-product-grid-desktop: repeat(4, minmax(0, 1fr));
  --jood-product-grid-laptop: repeat(3, minmax(0, 1fr));
  --jood-product-grid-tablet: repeat(2, minmax(0, 1fr));
  --jood-product-grid-mobile: repeat(2, minmax(0, 1fr));
}

/* =========================================================
   01.14 CART / CHECKOUT / ACCOUNT TOKENS
========================================================= */

#jood-app {
  --jood-panel-bg: #FFFFFF;
  --jood-panel-border: 1px solid rgba(232, 220, 199, .92);
  --jood-panel-radius: 24px;
  --jood-panel-pad: clamp(14px, 2vw, 22px);
  --jood-panel-shadow: 0 8px 24px rgba(10, 22, 37, .06);

  --jood-summary-width: 360px;
  --jood-summary-width-lg: 400px;

  --jood-sidebar-sticky-top: 16px;

  --jood-step-size: 34px;
  --jood-icon-box: 42px;
  --jood-icon-box-sm: 34px;
  --jood-icon-box-lg: 50px;
}

/* =========================================================
   01.15 MOBILE TOKENS
========================================================= */

#jood-app {
  --jood-mobile-safe-x: 10px;
  --jood-mobile-main-top: 10px;
  --jood-mobile-main-bottom: 96px;

  --jood-mobile-card-radius: 16px;
  --jood-mobile-panel-radius: 18px;
  --jood-mobile-hero-radius: 20px;

  --jood-mobile-card-pad: 11px;
  --jood-mobile-panel-pad: 12px;
  --jood-mobile-gap: 10px;

  --jood-bottom-nav-height: 68px;
  --jood-bottom-nav-radius: 22px;
  --jood-bottom-nav-z: 9998;
}

/* =========================================================
   01.16 Z INDEX TOKENS
========================================================= */

#jood-app {
  --jood-z-base: 1;
  --jood-z-raised: 5;
  --jood-z-sticky: 50;
  --jood-z-dropdown: 200;
  --jood-z-overlay: 800;
  --jood-z-modal: 1000;
  --jood-z-nav: 9998;
  --jood-z-toast: 9999;
}

/* =========================================================
   01.17 VIEW LEVEL TOKENS FROM APP LAYOUT
========================================================= */

#jood-app.jood-app-shell-view-store,
#jood-app.jood-app-shell-view-category {
  --jood-current-max: var(--jood-max-wide);
  --jood-current-bg: var(--jood-page-bg);
  --jood-current-main-top: var(--jood-main-top);
}

#jood-app.jood-app-shell-view-product {
  --jood-current-max: var(--jood-max);
  --jood-current-bg: var(--jood-page-bg);
  --jood-current-main-top: var(--jood-main-top);
}

#jood-app.jood-app-shell-view-cart,
#jood-app.jood-app-shell-view-checkout,
#jood-app.jood-app-shell-view-account,
#jood-app.jood-app-shell-view-invoice,
#jood-app.jood-app-shell-view-thank-you {
  --jood-current-max: var(--jood-max);
  --jood-current-bg: var(--jood-page-bg);
  --jood-current-main-top: 12px;
}

/* =========================================================
   01.18 STATE TOKENS
========================================================= */

#jood-app {
  --jood-hover-y: -2px;
  --jood-hover-y-strong: -4px;
  --jood-active-scale: .985;

  --jood-disabled-opacity: .54;

  --jood-focus-outline: 3px solid rgba(214, 181, 109, .34);
  --jood-focus-outline-offset: 3px;

  --jood-loading-bg:
    linear-gradient(
      90deg,
      rgba(232, 220, 199, .24) 0%,
      rgba(255, 255, 255, .72) 50%,
      rgba(232, 220, 199, .24) 100%
    );
}

/* =========================================================
   01.19 PRINT TOKENS
========================================================= */

#jood-app {
  --jood-print-text: #2B170F;
  --jood-print-border: #F6E9D8;
  --jood-print-bg: #FFFFFF;
}

/* =========================================================
   02 APP LAYOUT
   Paste the next batch directly under this line
========================================================= */
/* =========================================================
   02 APP LAYOUT
   Main shell, page container, view isolation, notice zone,
   page heading, missing template, and mobile bottom nav base.
   Paste this block directly under 01 Variables.
========================================================= */

/* =========================================================
   02.01 SHELL BASE
========================================================= */

#jood-app.jood-app-shell {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  isolation: isolate;
  background: var(--jood-current-bg, var(--jood-page-bg));
  color: var(--jood-text);
  font-family: var(--jood-font-family);
  overflow-x: clip;
}

#jood-app.jood-app-no-plugin-header {
  padding-top: 0;
}

#jood-app.jood-app-no-plugin-header::before,
#jood-app.jood-app-no-plugin-header::after {
  content: none;
  display: none;
}

#jood-app.jood-app-shell-view-store,
#jood-app.jood-app-shell-view-category,
#jood-app.jood-app-shell-view-product,
#jood-app.jood-app-shell-view-cart,
#jood-app.jood-app-shell-view-checkout,
#jood-app.jood-app-shell-view-account,
#jood-app.jood-app-shell-view-invoice,
#jood-app.jood-app-shell-view-thank-you {
  background:
    linear-gradient(180deg, var(--jood-page-bg) 0%, var(--jood-page-bg) 100%);
}

/* =========================================================
   02.02 MAIN CONTAINER
========================================================= */

#jood-app .jood-app-main {
  width: min(var(--jood-current-max, var(--jood-max)), calc(100% - (var(--jood-safe-x) * 2)));
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
  margin-block: 0;
  padding-block:
    var(--jood-current-main-top, var(--jood-main-top))
    var(--jood-main-bottom);
  padding-inline: 0;
  position: relative;
  z-index: var(--jood-z-base);
}

#jood-app .jood-app-content {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  position: relative;
  display: block;
}

#jood-app .jood-app-content > * {
  max-width: 100%;
  min-width: 0;
}

#jood-app .jood-app-content > :first-child {
  margin-top: 0;
}

#jood-app .jood-app-content > :last-child {
  margin-bottom: 0;
}

/* =========================================================
   02.03 VIEW CONTENT ISOLATION
========================================================= */

#jood-app .jood-app-content-store,
#jood-app .jood-app-content-category,
#jood-app .jood-app-content-product,
#jood-app .jood-app-content-cart,
#jood-app .jood-app-content-checkout,
#jood-app .jood-app-content-account,
#jood-app .jood-app-content-invoice,
#jood-app .jood-app-content-thank-you {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: block;
}

#jood-app.jood-app-shell-view-store .jood-app-main,
#jood-app.jood-app-shell-view-category .jood-app-main {
  width: min(var(--jood-max-wide), calc(100% - (var(--jood-safe-x) * 2)));
}

#jood-app.jood-app-shell-view-product .jood-app-main,
#jood-app.jood-app-shell-view-cart .jood-app-main,
#jood-app.jood-app-shell-view-checkout .jood-app-main,
#jood-app.jood-app-shell-view-account .jood-app-main,
#jood-app.jood-app-shell-view-invoice .jood-app-main,
#jood-app.jood-app-shell-view-thank-you .jood-app-main {
  width: min(var(--jood-max), calc(100% - (var(--jood-safe-x) * 2)));
}

#jood-app.jood-app-shell-view-cart .jood-app-main,
#jood-app.jood-app-shell-view-checkout .jood-app-main,
#jood-app.jood-app-shell-view-account .jood-app-main,
#jood-app.jood-app-shell-view-invoice .jood-app-main,
#jood-app.jood-app-shell-view-thank-you .jood-app-main {
  padding-top: 10px;
}

/* =========================================================
   02.04 WHITE COMPACT PAGE FOUNDATION
========================================================= */

#jood-app :where(
  .jood-store-stage,
  .jood-category-page,
  .jood-product-page,
  .jood-cart-page,
  .jood-checkout-page,
  .jood-account-page,
  .jood-invoice-page,
  .jood-thankyou-page
) {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  position: relative;
}

#jood-app :where(
  .jood-store-section,
  .jood-category-section,
  .jood-product-section,
  .jood-cart-section,
  .jood-checkout-section,
  .jood-account-section,
  .jood-invoice-section
) {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-block: var(--jood-section-y);
  position: relative;
}

#jood-app :where(
  .jood-store-section:first-child,
  .jood-category-section:first-child,
  .jood-product-section:first-child,
  .jood-cart-section:first-child,
  .jood-checkout-section:first-child,
  .jood-account-section:first-child,
  .jood-invoice-section:first-child
) {
  margin-top: 0;
}

#jood-app :where(
  .jood-store-section:last-child,
  .jood-category-section:last-child,
  .jood-product-section:last-child,
  .jood-cart-section:last-child,
  .jood-checkout-section:last-child,
  .jood-account-section:last-child,
  .jood-invoice-section:last-child
) {
  margin-bottom: 0;
}

/* =========================================================
   02.05 APP NOTICE BAR
========================================================= */

#jood-app .jood-app-notice-bar {
  width: min(var(--jood-current-max, var(--jood-max)), calc(100% - (var(--jood-safe-x) * 2)));
  max-width: 100%;
  min-width: 0;
  margin: 0 auto var(--jood-space-6);
  padding: 0;
  position: relative;
  z-index: var(--jood-z-raised);
}

#jood-app .jood-app-notice-bar:empty {
  display: none;
}

#jood-app .jood-app-notice-bar__inner {
  width: 100%;
  min-height: 42px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--jood-gap-sm);
  border: var(--jood-border-light);
  border-radius: var(--jood-radius-pill);
  background: var(--jood-surface-glass);
  color: var(--jood-muted);
  box-shadow: var(--jood-shadow-xs);
  overflow: hidden;
}

#jood-app .jood-app-notice-bar__inner p {
  margin: 0;
  color: inherit;
  font-size: var(--jood-fs-13);
  line-height: var(--jood-lh-body);
  font-weight: var(--jood-fw-bold);
}

#jood-app .jood-app-notice-bar__inner .jood-svg-icon,
#jood-app .jood-app-notice-bar__inner .jood-layout-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--jood-gold);
}

/* =========================================================
   02.06 APP PAGE HEAD
========================================================= */

#jood-app .jood-app-page-head {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 0 var(--jood-space-8);
  padding: 0;
  position: relative;
}

#jood-app .jood-app-page-head__inner {
  width: 100%;
  min-height: 74px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--jood-gap-lg);
  border: var(--jood-border-normal);
  border-radius: var(--jood-radius-panel);
  background: var(--jood-surface);
  color: var(--jood-text);
  box-shadow: var(--jood-shadow-xs);
  overflow: hidden;
  position: relative;
}

#jood-app .jood-app-page-head__inner::before {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--jood-gold), var(--jood-gold-3));
  opacity: .9;
  pointer-events: none;
}

#jood-app .jood-app-page-head__inner > div {
  min-width: 0;
  position: relative;
  z-index: 1;
}

#jood-app .jood-app-page-head .jood-app-eyebrow {
  min-height: 24px;
  width: fit-content;
  max-width: 100%;
  padding: 4px 9px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--jood-radius-pill);
  background: var(--jood-gold-4);
  color: var(--jood-brown);
  font-size: var(--jood-fs-11);
  line-height: 1.4;
  font-weight: var(--jood-fw-black);
  white-space: nowrap;
}

#jood-app .jood-app-page-head h1 {
  margin: 6px 0 0;
  color: var(--jood-ink);
  font-size: clamp(21px, 2.3vw, 32px);
  line-height: var(--jood-lh-heading);
  font-weight: var(--jood-fw-heavy);
  letter-spacing: var(--jood-letter-tight);
}

#jood-app .jood-app-page-head__cart {
  flex: 0 0 auto;
  min-width: 150px;
  min-height: 56px;
  padding: 9px 13px;
  display: grid;
  align-content: center;
  gap: 2px;
  border: var(--jood-border-light);
  border-radius: var(--jood-radius-lg);
  background: var(--jood-surface-soft);
  color: var(--jood-text);
  box-shadow: var(--jood-shadow-hair);
  transition: var(--jood-transition-base);
}

#jood-app .jood-app-page-head__cart:hover {
  transform: translateY(var(--jood-hover-y));
  border-color: rgba(214, 181, 109, .52);
  box-shadow: var(--jood-shadow-sm);
}

#jood-app .jood-app-page-head__cart span {
  display: block;
  color: var(--jood-muted);
  font-size: var(--jood-fs-11);
  line-height: 1.35;
  font-weight: var(--jood-fw-bold);
}

#jood-app .jood-app-page-head__cart strong {
  display: block;
  color: var(--jood-ink);
  font-size: var(--jood-fs-15);
  line-height: 1.35;
  font-weight: var(--jood-fw-heavy);
}

/* =========================================================
   02.07 VIEW-BASED PAGE HEAD COMPRESSION
========================================================= */

#jood-app.jood-app-shell-view-store .jood-app-page-head,
#jood-app.jood-app-shell-view-category .jood-app-page-head {
  margin-bottom: var(--jood-space-8);
}

#jood-app.jood-app-shell-view-cart .jood-app-page-head,
#jood-app.jood-app-shell-view-checkout .jood-app-page-head,
#jood-app.jood-app-shell-view-account .jood-app-page-head,
#jood-app.jood-app-shell-view-invoice .jood-app-page-head,
#jood-app.jood-app-shell-view-thank-you .jood-app-page-head {
  margin-bottom: var(--jood-space-6);
}

#jood-app.jood-app-shell-view-cart .jood-app-page-head__inner,
#jood-app.jood-app-shell-view-checkout .jood-app-page-head__inner,
#jood-app.jood-app-shell-view-account .jood-app-page-head__inner,
#jood-app.jood-app-shell-view-invoice .jood-app-page-head__inner,
#jood-app.jood-app-shell-view-thank-you .jood-app-page-head__inner {
  min-height: 64px;
  padding: 11px 14px;
  border-radius: var(--jood-radius-xl);
}

#jood-app.jood-app-shell-view-cart .jood-app-page-head h1,
#jood-app.jood-app-shell-view-checkout .jood-app-page-head h1,
#jood-app.jood-app-shell-view-account .jood-app-page-head h1,
#jood-app.jood-app-shell-view-invoice .jood-app-page-head h1,
#jood-app.jood-app-shell-view-thank-you .jood-app-page-head h1 {
  font-size: clamp(20px, 2vw, 28px);
}

#jood-app.jood-app-shell-view-invoice.jood-app-print-mode .jood-app-page-head {
  display: none;
}

/* =========================================================
   02.08 AUTH / GUEST BODY STATES
========================================================= */

#jood-app.jood-app-authenticated {
  --jood-account-state-color: var(--jood-success);
  --jood-account-state-bg: var(--jood-success-soft);
}

#jood-app.jood-app-guest {
  --jood-account-state-color: var(--jood-warning);
  --jood-account-state-bg: var(--jood-warning-soft);
}

#jood-app.jood-app-authenticated .jood-app-content,
#jood-app.jood-app-guest .jood-app-content {
  min-height: 0;
}

/* =========================================================
   02.09 MISSING TEMPLATE
========================================================= */

#jood-app .jood-app-missing-template {
  width: 100%;
  min-height: 360px;
  padding: var(--jood-space-16) var(--jood-space-8);
  display: grid;
  place-items: center;
}

#jood-app .jood-app-missing-template__card {
  width: min(520px, 100%);
  min-width: 0;
  padding: var(--jood-space-16);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: var(--jood-gap-md);
  border: var(--jood-border-normal);
  border-radius: var(--jood-radius-panel);
  background: var(--jood-surface);
  color: var(--jood-text);
  box-shadow: var(--jood-shadow-md);
}

#jood-app .jood-app-missing-template__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: var(--jood-radius-xl);
  background: var(--jood-ink);
  color: var(--jood-gold);
  font-size: var(--jood-fs-28);
}

#jood-app .jood-app-missing-template h2 {
  color: var(--jood-ink);
  font-size: var(--jood-fs-24);
  line-height: var(--jood-lh-heading);
  font-weight: var(--jood-fw-heavy);
}

#jood-app .jood-app-missing-template p {
  color: var(--jood-muted);
  font-size: var(--jood-fs-14);
  line-height: var(--jood-lh-loose);
  font-weight: var(--jood-fw-semibold);
}

#jood-app .jood-app-missing-template code {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-flex;
  max-width: 100%;
  padding: 3px 8px;
  border-radius: var(--jood-radius-xs);
  background: var(--jood-surface-muted);
  color: var(--jood-ink);
  font-size: var(--jood-fs-13);
  overflow-wrap: anywhere;
}

/* =========================================================
   02.10 BOTTOM NAV BASE
========================================================= */

#jood-app .jood-app-bottom-nav {
  display: none;
}

#jood-app.jood-app-with-bottom-nav {
  --jood-bottom-safe-space: calc(var(--jood-bottom-nav-height) + 28px + env(safe-area-inset-bottom));
}

#jood-app.jood-app-with-bottom-nav .jood-app-main {
  padding-bottom: max(var(--jood-main-bottom), var(--jood-bottom-safe-space));
}

#jood-app .jood-app-bottom-nav a {
  min-width: 0;
  color: inherit;
}

#jood-app .jood-app-bottom-nav .jood-svg-icon,
#jood-app .jood-app-bottom-nav .jood-layout-icon {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
}

#jood-app .jood-app-bottom-nav strong {
  display: block;
  max-width: 100%;
  font-size: var(--jood-fs-11);
  line-height: 1.1;
  font-weight: var(--jood-fw-black);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#jood-app .jood-cart-count {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--jood-radius-pill);
  background: var(--jood-gold);
  color: var(--jood-ink);
  font-size: 10px;
  line-height: 1;
  font-style: normal;
  font-weight: var(--jood-fw-heavy);
}

/* =========================================================
   02.11 LAYOUT STABILITY FOR COMMON PAGE WRAPPERS
========================================================= */

#jood-app :where(
  .jood-store-stage,
  .jood-store-hero,
  .jood-store-quick-links,
  .jood-category-hero,
  .jood-category-layout,
  .jood-product-layout,
  .jood-cart-hero,
  .jood-cart-layout,
  .jood-checkout-hero,
  .jood-checkout-layout,
  .jood-account-hero,
  .jood-account-layout,
  .jood-account-auth-page,
  .jood-account-auth-grid,
  .jood-invoice-sheet,
  .jood-thankyou-card
) {
  max-width: 100%;
  min-width: 0;
}

#jood-app :where(
  .jood-cart-main,
  .jood-cart-side,
  .jood-checkout-main,
  .jood-checkout-side,
  .jood-account-main,
  .jood-account-side,
  .jood-product-main,
  .jood-product-side
) {
  max-width: 100%;
  min-width: 0;
}

/* =========================================================
   02.12 APP SCROLL TARGETS
========================================================= */

#jood-app :where(
  #jood-store-products,
  .jood-store-section,
  .jood-category-section,
  .jood-product-section,
  .jood-cart-layout,
  .jood-checkout-layout,
  .jood-account-layout
) {
  scroll-margin-top: 18px;
}

/* =========================================================
   02.13 DESKTOP LAYOUT POLISH
========================================================= */

@media (min-width: 1181px) {
  #jood-app.jood-app-shell-view-store .jood-app-main,
  #jood-app.jood-app-shell-view-category .jood-app-main {
    width: min(var(--jood-max-wide), calc(100% - 56px));
  }

  #jood-app.jood-app-shell-view-product .jood-app-main,
  #jood-app.jood-app-shell-view-cart .jood-app-main,
  #jood-app.jood-app-shell-view-checkout .jood-app-main,
  #jood-app.jood-app-shell-view-account .jood-app-main,
  #jood-app.jood-app-shell-view-invoice .jood-app-main,
  #jood-app.jood-app-shell-view-thank-you .jood-app-main {
    width: min(var(--jood-max), calc(100% - 56px));
  }
}

/* =========================================================
   02.14 TABLET LAYOUT BASE
========================================================= */

@media (max-width: 1180px) {
  #jood-app .jood-app-main {
    width: min(var(--jood-current-max, var(--jood-max)), calc(100% - 32px));
  }

  #jood-app .jood-app-page-head__inner {
    min-height: 68px;
    padding: 12px 14px;
  }

  #jood-app .jood-app-page-head__cart {
    min-width: 130px;
  }
}

@media (max-width: 900px) {
  #jood-app .jood-app-main {
    width: calc(100% - 24px);
    padding-top: 10px;
  }

  #jood-app .jood-app-page-head__inner {
    align-items: center;
    gap: var(--jood-gap-md);
  }

  #jood-app .jood-app-page-head__cart {
    min-width: 118px;
    min-height: 52px;
    padding: 8px 11px;
  }

  #jood-app .jood-app-page-head__cart span {
    font-size: 10.5px;
  }

  #jood-app .jood-app-page-head__cart strong {
    font-size: var(--jood-fs-14);
  }
}

/* =========================================================
   02.15 MOBILE APP LAYOUT BASE
========================================================= */

@media (max-width: 782px) {
  #jood-app.jood-app-shell {
    min-height: auto;
    overflow-x: clip;
  }

  #jood-app .jood-app-main {
    width: 100%;
    padding-inline: var(--jood-mobile-safe-x);
    padding-top: var(--jood-mobile-main-top);
    padding-bottom: var(--jood-mobile-main-bottom);
  }

  #jood-app.jood-app-with-bottom-nav .jood-app-main {
    padding-bottom: calc(var(--jood-bottom-nav-height) + 34px + env(safe-area-inset-bottom));
  }

  #jood-app .jood-app-notice-bar {
    width: 100%;
    margin-bottom: var(--jood-space-5);
  }

  #jood-app .jood-app-notice-bar__inner {
    min-height: 38px;
    padding: 7px 10px;
    justify-content: flex-start;
    border-radius: var(--jood-radius-lg);
  }

  #jood-app .jood-app-notice-bar__inner p {
    font-size: var(--jood-fs-12);
    line-height: 1.55;
  }

  #jood-app .jood-app-page-head {
    margin-bottom: var(--jood-space-5);
  }

  #jood-app .jood-app-page-head__inner {
    min-height: 58px;
    padding: 10px 11px;
    border-radius: var(--jood-mobile-panel-radius);
    gap: var(--jood-gap-sm);
  }

  #jood-app .jood-app-page-head .jood-app-eyebrow {
    min-height: 22px;
    padding: 3px 8px;
    font-size: 10.5px;
  }

  #jood-app .jood-app-page-head h1 {
    margin-top: 4px;
    font-size: clamp(18px, 5.3vw, 23px);
    line-height: 1.22;
    letter-spacing: -.3px;
  }

  #jood-app .jood-app-page-head__cart {
    min-width: 96px;
    min-height: 48px;
    padding: 7px 9px;
    border-radius: var(--jood-radius-md);
  }

  #jood-app .jood-app-page-head__cart span {
    display: none;
  }

  #jood-app .jood-app-page-head__cart strong {
    font-size: var(--jood-fs-13);
    white-space: nowrap;
  }

  #jood-app.jood-app-with-bottom-nav .jood-app-bottom-nav {
    position: fixed;
    z-index: var(--jood-bottom-nav-z);
    left: 10px;
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    height: var(--jood-bottom-nav-height);
    padding: 7px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--jood-bottom-nav-radius);
    background: rgba(10, 22, 37, .94);
    color: rgba(255, 255, 255, .72);
    box-shadow: 0 18px 46px rgba(10, 22, 37, .28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  #jood-app.jood-app-with-bottom-nav .jood-app-bottom-nav a {
    height: 54px;
    min-width: 0;
    padding: 5px 3px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 4px;
    position: relative;
    border-radius: 17px;
    color: inherit;
    text-align: center;
    transition: var(--jood-transition-fast);
  }

  #jood-app.jood-app-with-bottom-nav .jood-app-bottom-nav a.is-active {
    background: rgba(255, 255, 255, .12);
    color: var(--jood-white);
  }

  #jood-app.jood-app-with-bottom-nav .jood-app-bottom-nav a:active {
    transform: scale(.96);
  }

  #jood-app.jood-app-with-bottom-nav .jood-app-bottom-nav .jood-cart-count {
    position: absolute;
    top: 4px;
    inset-inline-start: 50%;
    transform: translateX(-2px);
  }
}

/* =========================================================
   02.16 TINY MOBILE LAYOUT BASE
========================================================= */

@media (max-width: 480px) {
  #jood-app .jood-app-main {
    padding-inline: 8px;
    padding-top: 8px;
  }

  #jood-app .jood-app-page-head__inner {
    min-height: 54px;
    padding: 9px 10px;
    border-radius: 16px;
  }

  #jood-app .jood-app-page-head__cart {
    display: none;
  }

  #jood-app .jood-app-notice-bar__inner {
    border-radius: 15px;
  }

  #jood-app.jood-app-with-bottom-nav .jood-app-bottom-nav {
    left: 8px;
    right: 8px;
    bottom: calc(7px + env(safe-area-inset-bottom));
    height: 66px;
    padding: 6px;
    border-radius: 20px;
  }

  #jood-app.jood-app-with-bottom-nav .jood-app-bottom-nav a {
    height: 52px;
    border-radius: 15px;
  }

  #jood-app .jood-app-bottom-nav strong {
    font-size: 10px;
  }
}

@media (max-width: 380px) {
  #jood-app .jood-app-main {
    padding-inline: 7px;
  }

  #jood-app .jood-app-page-head h1 {
    font-size: 18px;
  }

  #jood-app.jood-app-with-bottom-nav .jood-app-bottom-nav {
    left: 7px;
    right: 7px;
  }
}

/* =========================================================
   02.17 PRINT MODE BASE
========================================================= */

#jood-app.jood-app-print-mode {
  background: #FFFFFF !important;
  color: #2B170F !important;
}

#jood-app.jood-app-print-mode .jood-app-main {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

#jood-app.jood-app-print-mode .jood-app-notice-bar,
#jood-app.jood-app-print-mode .jood-app-bottom-nav {
  display: none !important;
}

/* =========================================================
   03 BUTTONS + FORMS + SVG
   Paste the next batch directly under this line
========================================================= */
/* =========================================================
   03 BUTTONS + FORMS + SVG
   Shared action system, form fields, SVG icon system,
   WooCommerce form neutralization, quantity controls,
   loading/disabled states, RTL-safe interactions.
   Paste this block directly under 02 App Layout.
========================================================= */

/* =========================================================
   03.01 SVG ICON SYSTEM
========================================================= */

#jood-app .jood-svg-icon {
  width: 1em;
  height: 1em;
  min-width: 1em;
  min-height: 1em;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  position: relative;
  color: currentColor;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
}

#jood-app .jood-svg-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  color: inherit;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#jood-app .jood-svg-icon svg :where(path, circle, rect, line, polyline, polygon) {
  vector-effect: non-scaling-stroke;
}

#jood-app :where(
  .jood-layout-icon,
  .jood-store-icon,
  .jood-category-icon,
  .jood-product-icon,
  .jood-cart-icon,
  .jood-checkout-icon,
  .jood-account-icon,
  .jood-invoice-icon
) {
  width: 1em;
  height: 1em;
  min-width: 1em;
  min-height: 1em;
  display: inline-grid;
  place-items: center;
  color: inherit;
}

#jood-app :where(
  .jood-layout-icon svg,
  .jood-store-icon svg,
  .jood-category-icon svg,
  .jood-product-icon svg,
  .jood-cart-icon svg,
  .jood-checkout-icon svg,
  .jood-account-icon svg,
  .jood-invoice-icon svg
) {
  width: 100%;
  height: 100%;
}

/* =========================================================
   03.02 ICON BOXES / DECORATIVE ICON STATES
========================================================= */

#jood-app :where(
  .jood-icon-box,
  .jood-feature-icon,
  .jood-step-icon
) {
  width: var(--jood-icon-box);
  height: var(--jood-icon-box);
  min-width: var(--jood-icon-box);
  min-height: var(--jood-icon-box);
  display: grid;
  place-items: center;
  border-radius: var(--jood-radius-lg);
  background: var(--jood-surface-soft);
  color: var(--jood-gold);
  border: var(--jood-border-light);
  box-shadow: var(--jood-shadow-xs);
}

#jood-app :where(
  .jood-icon-box .jood-svg-icon,
  .jood-feature-icon .jood-svg-icon,
  .jood-step-icon .jood-svg-icon
) {
  width: 20px;
  height: 20px;
  font-size: 20px;
}

#jood-app :where(
  .jood-icon-box-sm,
  .jood-step-icon-sm
) {
  width: var(--jood-icon-box-sm);
  height: var(--jood-icon-box-sm);
  min-width: var(--jood-icon-box-sm);
  min-height: var(--jood-icon-box-sm);
  border-radius: var(--jood-radius-md);
}

#jood-app :where(
  .jood-icon-box-lg,
  .jood-step-icon-lg
) {
  width: var(--jood-icon-box-lg);
  height: var(--jood-icon-box-lg);
  min-width: var(--jood-icon-box-lg);
  min-height: var(--jood-icon-box-lg);
  border-radius: var(--jood-radius-xl);
}

/* =========================================================
   03.03 BUTTON BASE
========================================================= */

#jood-app .jood-btn,
#jood-app a.jood-btn,
#jood-app button.jood-btn,
#jood-app input[type="submit"].jood-btn,
#jood-app input[type="button"].jood-btn {
  min-width: 0;
  min-height: var(--jood-btn-height-md);
  max-width: 100%;
  padding: var(--jood-btn-pad-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--jood-gap-sm);
  position: relative;
  border: 1px solid transparent;
  border-radius: var(--jood-radius-pill);
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  color: inherit;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  font-family: inherit;
  font-size: var(--jood-fs-14);
  line-height: 1.35;
  font-weight: var(--jood-fw-heavy);
  letter-spacing: 0;
  cursor: pointer;
  user-select: none;
  box-shadow: none;
  overflow: hidden;
  touch-action: manipulation;
  transform: translateZ(0);
  transition: var(--jood-transition-base);
}

#jood-app .jood-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .18),
      rgba(255, 255, 255, 0)
    );
  transition: opacity var(--jood-speed-fast) var(--jood-ease);
}

#jood-app .jood-btn:hover::before {
  opacity: 1;
}

#jood-app .jood-btn:hover {
  transform: translateY(var(--jood-hover-y));
}

#jood-app .jood-btn:active {
  transform: translateY(0) scale(var(--jood-active-scale));
}

#jood-app .jood-btn:focus {
  outline: none;
}

#jood-app .jood-btn:focus-visible {
  outline: var(--jood-focus-outline);
  outline-offset: var(--jood-focus-outline-offset);
}

#jood-app .jood-btn:disabled,
#jood-app .jood-btn[disabled],
#jood-app .jood-btn.is-disabled,
#jood-app .jood-btn.disabled,
#jood-app .jood-btn[aria-disabled="true"] {
  pointer-events: none;
  cursor: not-allowed;
  opacity: var(--jood-disabled-opacity);
  transform: none;
  box-shadow: none;
}

#jood-app .jood-btn > * {
  position: relative;
  z-index: 1;
  min-width: 0;
}

#jood-app .jood-btn .jood-svg-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  font-size: 18px;
}

#jood-app .jood-btn span,
#jood-app .jood-btn strong,
#jood-app .jood-btn em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

#jood-app .jood-btn em {
  font-style: normal;
}

/* =========================================================
   03.04 BUTTON SIZES
========================================================= */

#jood-app .jood-btn-xs {
  min-height: var(--jood-btn-height-xs);
  padding: var(--jood-btn-pad-xs);
  gap: 6px;
  font-size: var(--jood-fs-12);
}

#jood-app .jood-btn-sm {
  min-height: var(--jood-btn-height-sm);
  padding: var(--jood-btn-pad-sm);
  gap: 7px;
  font-size: var(--jood-fs-13);
}

#jood-app .jood-btn-md {
  min-height: var(--jood-btn-height-md);
  padding: var(--jood-btn-pad-md);
  font-size: var(--jood-fs-14);
}

#jood-app .jood-btn-lg {
  min-height: var(--jood-btn-height-lg);
  padding: var(--jood-btn-pad-lg);
  font-size: var(--jood-fs-15);
}

#jood-app .jood-btn-xl {
  min-height: var(--jood-btn-height-xl);
  padding: var(--jood-btn-pad-xl);
  font-size: var(--jood-fs-16);
}

#jood-app .jood-btn-xs .jood-svg-icon {
  width: 15px;
  height: 15px;
  min-width: 15px;
  font-size: 15px;
}

#jood-app .jood-btn-sm .jood-svg-icon {
  width: 16px;
  height: 16px;
  min-width: 16px;
  font-size: 16px;
}

#jood-app .jood-btn-lg .jood-svg-icon,
#jood-app .jood-btn-xl .jood-svg-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  font-size: 20px;
}

/* =========================================================
   03.05 BUTTON VARIANTS
========================================================= */

#jood-app .jood-btn-primary {
  background: linear-gradient(135deg, var(--jood-btn-bg-primary), var(--jood-btn-bg-primary-hover));
  color: var(--jood-btn-text-primary) !important;
  border-color: rgba(10, 22, 37, .96);
  box-shadow: 0 10px 24px rgba(10, 22, 37, .16);
}

#jood-app .jood-btn-primary:hover {
  background: linear-gradient(135deg, var(--jood-btn-bg-primary-hover), var(--jood-btn-bg-primary));
  color: var(--jood-btn-text-primary) !important;
  box-shadow: 0 14px 32px rgba(10, 22, 37, .2);
}

#jood-app .jood-btn-primary:active {
  box-shadow: 0 7px 18px rgba(10, 22, 37, .14);
}

#jood-app .jood-btn-ghost {
  background: var(--jood-btn-bg-ghost);
  color: var(--jood-btn-text-ghost) !important;
  border-color: rgba(232, 220, 199, .98);
  box-shadow: var(--jood-shadow-xs);
}

#jood-app .jood-btn-ghost:hover {
  background: var(--jood-btn-bg-ghost-hover);
  color: var(--jood-btn-text-ghost) !important;
  border-color: rgba(214, 181, 109, .55);
  box-shadow: var(--jood-shadow-sm);
}

#jood-app .jood-btn-gold {
  background: linear-gradient(135deg, var(--jood-gold), var(--jood-gold-2));
  color: var(--jood-ink) !important;
  border-color: rgba(214, 181, 109, .95);
  box-shadow: var(--jood-shadow-gold-sm);
}

#jood-app .jood-btn-gold:hover {
  background: linear-gradient(135deg, var(--jood-gold-2), var(--jood-gold));
  color: var(--jood-ink) !important;
  border-color: rgba(214, 181, 109, 1);
  box-shadow: 0 14px 34px rgba(214, 181, 109, .22);
}

#jood-app .jood-btn-light {
  background: var(--jood-surface-soft);
  color: var(--jood-ink) !important;
  border-color: rgba(232, 220, 199, .9);
  box-shadow: var(--jood-shadow-hair);
}

#jood-app .jood-btn-light:hover {
  background: var(--jood-white);
  border-color: rgba(214, 181, 109, .45);
  box-shadow: var(--jood-shadow-xs);
}

#jood-app .jood-btn-danger {
  background: var(--jood-danger);
  color: #FFFFFF !important;
  border-color: rgba(184, 64, 52, .9);
  box-shadow: 0 10px 24px rgba(184, 64, 52, .14);
}

#jood-app .jood-btn-danger:hover {
  background: #a83228;
  color: #FFFFFF !important;
  box-shadow: 0 14px 30px rgba(184, 64, 52, .18);
}

#jood-app .jood-btn-success {
  background: var(--jood-success);
  color: #FFFFFF !important;
  border-color: rgba(31, 138, 91, .9);
  box-shadow: 0 10px 24px rgba(31, 138, 91, .14);
}

#jood-app .jood-btn-success:hover {
  background: #18744c;
  color: #FFFFFF !important;
}

/* =========================================================
   03.06 BUTTON SHAPES / WIDTH MODES
========================================================= */

#jood-app .jood-btn-block,
#jood-app .jood-btn-full {
  width: 100%;
  display: flex;
}

#jood-app .jood-btn-fit {
  width: fit-content;
}

#jood-app .jood-btn-square {
  width: var(--jood-btn-height-md);
  min-width: var(--jood-btn-height-md);
  max-width: var(--jood-btn-height-md);
  padding-inline: 0;
  border-radius: var(--jood-radius-lg);
}

#jood-app .jood-btn-icon {
  width: var(--jood-btn-height-md);
  min-width: var(--jood-btn-height-md);
  max-width: var(--jood-btn-height-md);
  padding: 0;
  border-radius: var(--jood-radius-pill);
}

#jood-app .jood-btn-icon.jood-btn-sm {
  width: var(--jood-btn-height-sm);
  min-width: var(--jood-btn-height-sm);
  max-width: var(--jood-btn-height-sm);
}

#jood-app .jood-btn-icon.jood-btn-lg {
  width: var(--jood-btn-height-lg);
  min-width: var(--jood-btn-height-lg);
  max-width: var(--jood-btn-height-lg);
}

/* =========================================================
   03.07 BUTTON GROUPS / ACTION ROWS
========================================================= */

#jood-app :where(
  .jood-actions,
  .jood-action-row,
  .jood-button-row,
  .jood-form-actions,
  .jood-card-actions
) {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--jood-gap-sm);
  min-width: 0;
}

#jood-app :where(
  .jood-actions.is-end,
  .jood-action-row.is-end,
  .jood-button-row.is-end,
  .jood-form-actions.is-end
) {
  justify-content: flex-end;
}

#jood-app :where(
  .jood-actions.is-center,
  .jood-action-row.is-center,
  .jood-button-row.is-center,
  .jood-form-actions.is-center
) {
  justify-content: center;
}

#jood-app :where(
  .jood-actions.is-between,
  .jood-action-row.is-between,
  .jood-button-row.is-between,
  .jood-form-actions.is-between
) {
  justify-content: space-between;
}

#jood-app :where(
  .jood-actions.is-stack,
  .jood-action-row.is-stack,
  .jood-button-row.is-stack,
  .jood-form-actions.is-stack
) {
  display: grid;
  grid-template-columns: 1fr;
}

/* =========================================================
   03.08 WOO BUTTON NORMALIZATION INSIDE JOOD
========================================================= */

#jood-app :where(
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button,
  .woocommerce #respond input#submit,
  .woocommerce-page a.button,
  .woocommerce-page button.button,
  .woocommerce-page input.button,
  .woocommerce-page #respond input#submit
) {
  min-height: var(--jood-btn-height-md);
  padding: var(--jood-btn-pad-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--jood-gap-sm);
  border: 1px solid rgba(10, 22, 37, .96);
  border-radius: var(--jood-radius-pill);
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(135deg, var(--jood-ink), var(--jood-ink-2));
  color: #FFFFFF !important;
  font-family: inherit;
  font-size: var(--jood-fs-14);
  line-height: 1.35;
  font-weight: var(--jood-fw-heavy);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(10, 22, 37, .16);
  cursor: pointer;
  transition: var(--jood-transition-base);
}

#jood-app :where(
  .woocommerce a.button:hover,
  .woocommerce button.button:hover,
  .woocommerce input.button:hover,
  .woocommerce #respond input#submit:hover,
  .woocommerce-page a.button:hover,
  .woocommerce-page button.button:hover,
  .woocommerce-page input.button:hover,
  .woocommerce-page #respond input#submit:hover
) {
  transform: translateY(var(--jood-hover-y));
  background: linear-gradient(135deg, var(--jood-ink-2), var(--jood-ink));
  color: #FFFFFF !important;
  box-shadow: 0 14px 32px rgba(10, 22, 37, .2);
}

#jood-app :where(
  .woocommerce a.button:disabled,
  .woocommerce button.button:disabled,
  .woocommerce input.button:disabled,
  .woocommerce a.button.disabled,
  .woocommerce button.button.disabled,
  .woocommerce input.button.disabled
) {
  opacity: var(--jood-disabled-opacity);
  pointer-events: none;
  transform: none;
  cursor: not-allowed;
}

/* =========================================================
   03.09 FORM LAYOUT BASE
========================================================= */

#jood-app :where(form) {
  max-width: 100%;
  min-width: 0;
}

#jood-app .jood-form-grid {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--jood-gap-md);
}

#jood-app .jood-form-grid.is-one,
#jood-app .jood-form-grid.jood-form-grid-1 {
  grid-template-columns: 1fr;
}

#jood-app .jood-form-grid.is-three,
#jood-app .jood-form-grid.jood-form-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#jood-app .jood-form-grid.is-four,
#jood-app .jood-form-grid.jood-form-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

#jood-app :where(
  .jood-field,
  .jood-form-field,
  .form-row,
  label.jood-product-variation-field
) {
  min-width: 0;
  max-width: 100%;
  display: grid;
  align-content: start;
  gap: 7px;
  position: relative;
}

#jood-app :where(
  .jood-field.is-wide,
  .jood-form-field.is-wide,
  .form-row-wide
) {
  grid-column: 1 / -1;
}

#jood-app :where(
  .jood-field.is-half,
  .jood-form-field.is-half,
  .form-row-first,
  .form-row-last
) {
  grid-column: auto;
}

#jood-app :where(.clear) {
  display: none;
}

/* =========================================================
   03.10 FORM LABELS
========================================================= */

#jood-app :where(
  .jood-field > label,
  .jood-form-field > label,
  .jood-field > span:first-child,
  .jood-form-field > span:first-child,
  .form-row > label,
  label.jood-product-variation-field > span:first-child
) {
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--jood-field-label);
  font-size: var(--jood-fs-13);
  line-height: 1.45;
  font-weight: var(--jood-fw-black);
}

#jood-app :where(
  .jood-field small,
  .jood-form-field small,
  .form-row small,
  .jood-field .description,
  .jood-form-field .description,
  .form-row .description
) {
  display: block;
  color: var(--jood-muted);
  font-size: var(--jood-fs-12);
  line-height: var(--jood-lh-body);
  font-weight: var(--jood-fw-semibold);
}

#jood-app :where(
  .required,
  abbr.required
) {
  color: var(--jood-danger);
  text-decoration: none;
  border: 0;
  cursor: help;
}

/* =========================================================
   03.11 INPUT / TEXTAREA / SELECT BASE
========================================================= */

#jood-app :where(
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="password"],
  input[type="search"],
  input[type="url"],
  input[type="date"],
  input[type="time"],
  input[type="datetime-local"],
  textarea,
  select
) {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: var(--jood-field-height);
  margin: 0;
  padding: var(--jood-field-pad-y) var(--jood-field-pad-x);
  border: 1px solid var(--jood-field-border);
  border-radius: var(--jood-field-radius);
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--jood-field-bg);
  color: var(--jood-field-text);
  font-family: inherit;
  font-size: var(--jood-fs-14);
  line-height: 1.45;
  font-weight: var(--jood-fw-bold);
  outline: none;
  box-shadow: var(--jood-field-shadow);
  transition:
    border-color var(--jood-speed) var(--jood-ease),
    background-color var(--jood-speed) var(--jood-ease),
    box-shadow var(--jood-speed) var(--jood-ease),
    color var(--jood-speed) var(--jood-ease);
}

#jood-app :where(
  input[type="text"]:hover,
  input[type="email"]:hover,
  input[type="tel"]:hover,
  input[type="number"]:hover,
  input[type="password"]:hover,
  input[type="search"]:hover,
  input[type="url"]:hover,
  input[type="date"]:hover,
  input[type="time"]:hover,
  input[type="datetime-local"]:hover,
  textarea:hover,
  select:hover
) {
  border-color: var(--jood-field-border-hover);
  background-color: var(--jood-white);
}

#jood-app :where(
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="tel"]:focus,
  input[type="number"]:focus,
  input[type="password"]:focus,
  input[type="search"]:focus,
  input[type="url"]:focus,
  input[type="date"]:focus,
  input[type="time"]:focus,
  input[type="datetime-local"]:focus,
  textarea:focus,
  select:focus
) {
  border-color: var(--jood-field-border-focus);
  background-color: var(--jood-white);
  box-shadow: var(--jood-field-focus-shadow);
}

#jood-app :where(
  input[type="text"]::placeholder,
  input[type="email"]::placeholder,
  input[type="tel"]::placeholder,
  input[type="number"]::placeholder,
  input[type="password"]::placeholder,
  input[type="search"]::placeholder,
  input[type="url"]::placeholder,
  textarea::placeholder
) {
  color: var(--jood-field-placeholder);
  font-weight: var(--jood-fw-semibold);
}

#jood-app :where(textarea) {
  min-height: 112px;
  line-height: var(--jood-lh-body);
  resize: vertical;
}

#jood-app :where(select) {
  padding-inline-end: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--jood-muted) 50%),
    linear-gradient(135deg, var(--jood-muted) 50%, transparent 50%);
  background-position:
    calc(100% - 23px) 50%,
    calc(100% - 17px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

#jood-app[dir="ltr"] :where(select) {
  padding-inline-start: 14px;
  padding-inline-end: 42px;
  background-position:
    calc(100% - 23px) 50%,
    calc(100% - 17px) 50%;
}

/* =========================================================
   03.12 COMPACT FIELDS
========================================================= */

#jood-app :where(
  .jood-field.is-small input,
  .jood-field.is-small select,
  .jood-field.is-small textarea,
  .jood-form-field.is-small input,
  .jood-form-field.is-small select,
  .jood-form-field.is-small textarea,
  input.jood-field-small,
  select.jood-field-small,
  textarea.jood-field-small
) {
  min-height: var(--jood-field-height-sm);
  padding: 9px 12px;
  border-radius: var(--jood-field-radius-sm);
  font-size: var(--jood-fs-13);
}

#jood-app :where(
  .jood-field.is-large input,
  .jood-field.is-large select,
  .jood-field.is-large textarea,
  .jood-form-field.is-large input,
  .jood-form-field.is-large select,
  .jood-form-field.is-large textarea,
  input.jood-field-large,
  select.jood-field-large,
  textarea.jood-field-large
) {
  min-height: var(--jood-field-height-lg);
  padding: 13px 16px;
  border-radius: var(--jood-field-radius-lg);
  font-size: var(--jood-fs-15);
}

/* =========================================================
   03.13 INPUT STATES
========================================================= */

#jood-app :where(
  input[readonly],
  textarea[readonly],
  select[readonly]
) {
  background-color: var(--jood-field-bg-soft);
  color: var(--jood-muted);
  cursor: default;
}

#jood-app :where(
  input:disabled,
  textarea:disabled,
  select:disabled
) {
  background-color: var(--jood-surface-muted);
  color: var(--jood-muted-2);
  border-color: rgba(232, 220, 199, .75);
  box-shadow: none;
}

#jood-app :where(
  .jood-field.has-error input,
  .jood-field.has-error textarea,
  .jood-field.has-error select,
  .jood-form-field.has-error input,
  .jood-form-field.has-error textarea,
  .jood-form-field.has-error select,
  .form-row.woocommerce-invalid input,
  .form-row.woocommerce-invalid textarea,
  .form-row.woocommerce-invalid select
) {
  border-color: rgba(184, 64, 52, .75);
  background-color: var(--jood-danger-soft);
}

#jood-app :where(
  .jood-field.has-error input:focus,
  .jood-field.has-error textarea:focus,
  .jood-field.has-error select:focus,
  .jood-form-field.has-error input:focus,
  .jood-form-field.has-error textarea:focus,
  .jood-form-field.has-error select:focus,
  .form-row.woocommerce-invalid input:focus,
  .form-row.woocommerce-invalid textarea:focus,
  .form-row.woocommerce-invalid select:focus
) {
  box-shadow: 0 0 0 4px rgba(184, 64, 52, .13);
}

#jood-app :where(
  .jood-field.has-success input,
  .jood-field.has-success textarea,
  .jood-field.has-success select,
  .jood-form-field.has-success input,
  .jood-form-field.has-success textarea,
  .jood-form-field.has-success select,
  .form-row.woocommerce-validated input,
  .form-row.woocommerce-validated textarea,
  .form-row.woocommerce-validated select
) {
  border-color: rgba(31, 138, 91, .55);
}

/* =========================================================
   03.14 CHECKBOX / RADIO BASE
========================================================= */

#jood-app :where(input[type="checkbox"], input[type="radio"]) {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 0;
  display: inline-grid;
  place-items: center;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(214, 181, 109, .98);
  background: var(--jood-white);
  color: var(--jood-ink);
  cursor: pointer;
  box-shadow: var(--jood-shadow-hair);
  transition:
    background-color var(--jood-speed-fast) var(--jood-ease),
    border-color var(--jood-speed-fast) var(--jood-ease),
    box-shadow var(--jood-speed-fast) var(--jood-ease);
}

#jood-app :where(input[type="checkbox"]) {
  border-radius: 6px;
}

#jood-app :where(input[type="radio"]) {
  border-radius: 999px;
}

#jood-app :where(input[type="checkbox"]::before) {
  content: "";
  width: 9px;
  height: 5px;
  border-inline-start: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0;
  transform: rotate(-45deg) translate(1px, -1px);
}

#jood-app :where(input[type="radio"]::before) {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: scale(.7);
}

#jood-app :where(input[type="checkbox"]:checked, input[type="radio"]:checked) {
  background: var(--jood-gold);
  border-color: var(--jood-gold);
  color: var(--jood-ink);
}

#jood-app :where(input[type="checkbox"]:checked::before, input[type="radio"]:checked::before) {
  opacity: 1;
}

#jood-app :where(input[type="checkbox"]:focus-visible, input[type="radio"]:focus-visible) {
  outline: none;
  box-shadow: var(--jood-field-focus-shadow);
}

#jood-app :where(input[type="checkbox"]:disabled, input[type="radio"]:disabled) {
  cursor: not-allowed;
  opacity: var(--jood-disabled-opacity);
}

/* =========================================================
   03.15 CHECKBOX / RADIO LABEL ROWS
========================================================= */

#jood-app :where(
  label.checkbox,
  label.radio,
  .woocommerce-form__label,
  .jood-checkbox,
  .jood-radio
) {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--jood-text);
  font-size: var(--jood-fs-13);
  line-height: var(--jood-lh-body);
  font-weight: var(--jood-fw-bold);
  cursor: pointer;
}

#jood-app :where(
  label.checkbox input,
  label.radio input,
  .woocommerce-form__label input,
  .jood-checkbox input,
  .jood-radio input
) {
  margin-top: 3px;
  flex: 0 0 auto;
}

/* =========================================================
   03.16 SEARCH FIELD / INLINE FORMS
========================================================= */

#jood-app :where(
  .jood-search-form,
  .jood-inline-form
) {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: var(--jood-gap-sm);
}

#jood-app :where(
  .jood-search-form input,
  .jood-inline-form input,
  .jood-search-form select,
  .jood-inline-form select
) {
  flex: 1 1 auto;
  min-width: 0;
}

#jood-app :where(
  .jood-search-form .jood-btn,
  .jood-inline-form .jood-btn
) {
  flex: 0 0 auto;
}

/* =========================================================
   03.17 QUANTITY CONTROLS
========================================================= */

#jood-app :where(.quantity, .jood-quantity, .jood-qty) {
  width: fit-content;
  min-width: 0;
  max-width: 100%;
  min-height: 40px;
  display: inline-grid;
  grid-template-columns: 38px minmax(48px, 64px) 38px;
  align-items: center;
  border: 1px solid rgba(232, 220, 199, .95);
  border-radius: var(--jood-radius-pill);
  background: var(--jood-white);
  color: var(--jood-ink);
  box-shadow: var(--jood-shadow-hair);
  overflow: hidden;
}

#jood-app :where(.quantity input.qty, .jood-quantity input, .jood-qty input) {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  padding: 0 4px;
  border: 0;
  border-inline: 1px solid rgba(232, 220, 199, .9);
  border-radius: 0;
  background: transparent;
  color: var(--jood-ink);
  text-align: center;
  font-size: var(--jood-fs-14);
  font-weight: var(--jood-fw-heavy);
  box-shadow: none;
}

#jood-app :where(.quantity input.qty:focus, .jood-quantity input:focus, .jood-qty input:focus) {
  box-shadow: inset 0 0 0 2px rgba(214, 181, 109, .24);
}

#jood-app :where(.jood-qty-btn, .jood-quantity-btn, .quantity button) {
  width: 38px;
  height: 38px;
  min-width: 38px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--jood-ink);
  font-size: var(--jood-fs-18);
  line-height: 1;
  font-weight: var(--jood-fw-heavy);
  cursor: pointer;
  transition:
    background-color var(--jood-speed-fast) var(--jood-ease),
    color var(--jood-speed-fast) var(--jood-ease);
}

#jood-app :where(.jood-qty-btn:hover, .jood-quantity-btn:hover, .quantity button:hover) {
  background: var(--jood-gold-4);
  color: var(--jood-brown);
}

/* =========================================================
   03.18 COUPON / CODE FIELDS
========================================================= */

#jood-app :where(
  .jood-coupon-form,
  .coupon
) {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--jood-gap-sm);
  align-items: center;
}

#jood-app :where(
  .jood-coupon-form input,
  .coupon input
) {
  min-width: 0;
}

#jood-app :where(
  .jood-coupon-form .jood-btn,
  .coupon .button
) {
  min-width: 120px;
}

/* =========================================================
   03.19 FORM PANELS
========================================================= */

#jood-app :where(
  .jood-form-panel,
  .jood-auth-form,
  .jood-profile-form,
  .jood-checkout-form,
  .jood-cart-form
) {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: grid;
  gap: var(--jood-gap-md);
}

#jood-app :where(
  .jood-form-panel__head,
  .jood-auth-form__head,
  .jood-profile-form__head
) {
  min-width: 0;
  display: grid;
  gap: 5px;
}

#jood-app :where(
  .jood-form-panel__head h2,
  .jood-auth-form__head h2,
  .jood-profile-form__head h2
) {
  color: var(--jood-ink);
  font-size: var(--jood-fs-22);
  line-height: var(--jood-lh-heading);
  font-weight: var(--jood-fw-heavy);
}

#jood-app :where(
  .jood-form-panel__head p,
  .jood-auth-form__head p,
  .jood-profile-form__head p
) {
  color: var(--jood-muted);
  font-size: var(--jood-fs-13);
  line-height: var(--jood-lh-body);
  font-weight: var(--jood-fw-semibold);
}

/* =========================================================
   03.20 FIELD ICON WRAPPERS
========================================================= */

#jood-app :where(
  .jood-field-with-icon,
  .jood-input-with-icon
) {
  position: relative;
  min-width: 0;
}

#jood-app :where(
  .jood-field-with-icon > .jood-svg-icon,
  .jood-input-with-icon > .jood-svg-icon
) {
  position: absolute;
  z-index: 2;
  top: 50%;
  inset-inline-start: 14px;
  width: 18px;
  height: 18px;
  color: var(--jood-muted);
  transform: translateY(-50%);
  pointer-events: none;
}

#jood-app :where(
  .jood-field-with-icon input,
  .jood-input-with-icon input,
  .jood-field-with-icon select,
  .jood-input-with-icon select
) {
  padding-inline-start: 42px;
}

#jood-app :where(
  .jood-field-with-icon textarea,
  .jood-input-with-icon textarea
) {
  padding-inline-start: 42px;
}

/* =========================================================
   03.21 VALIDATION / HELP MESSAGES
========================================================= */

#jood-app :where(
  .jood-field-error,
  .jood-form-error,
  .woocommerce-invalid-required-field .error
) {
  width: 100%;
  display: block;
  color: var(--jood-danger);
  font-size: var(--jood-fs-12);
  line-height: var(--jood-lh-body);
  font-weight: var(--jood-fw-bold);
}

#jood-app :where(
  .jood-field-success,
  .jood-form-success
) {
  width: 100%;
  display: block;
  color: var(--jood-success);
  font-size: var(--jood-fs-12);
  line-height: var(--jood-lh-body);
  font-weight: var(--jood-fw-bold);
}

#jood-app :where(
  .jood-field-hint,
  .jood-form-hint
) {
  width: 100%;
  display: block;
  color: var(--jood-muted);
  font-size: var(--jood-fs-12);
  line-height: var(--jood-lh-body);
  font-weight: var(--jood-fw-semibold);
}

/* =========================================================
   03.22 LOADING STATES
========================================================= */

#jood-app .jood-is-loading,
#jood-app .is-loading,
#jood-app [aria-busy="true"] {
  cursor: progress;
}

#jood-app .jood-btn.is-loading,
#jood-app .jood-btn[aria-busy="true"] {
  pointer-events: none;
  color: transparent !important;
}

#jood-app .jood-btn.is-loading::after,
#jood-app .jood-btn[aria-busy="true"]::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  inset: 50% auto auto 50%;
  margin: -9px 0 0 -9px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 999px;
  color: #FFFFFF;
  animation: jood-button-spin 760ms linear infinite;
}

#jood-app .jood-btn-ghost.is-loading::after,
#jood-app .jood-btn-ghost[aria-busy="true"]::after,
#jood-app .jood-btn-light.is-loading::after,
#jood-app .jood-btn-light[aria-busy="true"]::after {
  color: var(--jood-ink);
}

@keyframes jood-button-spin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================================================
   03.23 SELECT2 / ENHANCED SELECT SAFETY
========================================================= */

#jood-app :where(.select2-container) {
  width: 100% !important;
  max-width: 100%;
  min-width: 0;
  font-family: inherit;
  font-size: var(--jood-fs-14);
}

#jood-app :where(.select2-container .select2-selection--single) {
  min-height: var(--jood-field-height);
  display: flex;
  align-items: center;
  border: 1px solid var(--jood-field-border);
  border-radius: var(--jood-field-radius);
  background: var(--jood-field-bg);
  box-shadow: var(--jood-field-shadow);
}

#jood-app :where(.select2-container .select2-selection--single .select2-selection__rendered) {
  padding-inline: var(--jood-field-pad-x) 42px;
  color: var(--jood-field-text);
  font-weight: var(--jood-fw-bold);
  line-height: var(--jood-field-height);
}

#jood-app :where(.select2-container .select2-selection--single .select2-selection__arrow) {
  top: 50%;
  inset-inline-end: 12px;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
}

#jood-app :where(.select2-container--default .select2-selection--single .select2-selection__arrow b) {
  border-color: var(--jood-muted) transparent transparent transparent;
}

/* =========================================================
   03.24 WOO FORM ROW SAFETY
========================================================= */

#jood-app :where(.woocommerce form .form-row) {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

#jood-app :where(.woocommerce form .form-row-first, .woocommerce form .form-row-last) {
  float: none;
  width: 100%;
  overflow: visible;
}

#jood-app :where(.woocommerce form .form-row label) {
  margin: 0;
  color: var(--jood-field-label);
  font-size: var(--jood-fs-13);
  line-height: 1.45;
  font-weight: var(--jood-fw-black);
}

#jood-app :where(.woocommerce form .form-row .input-text) {
  width: 100%;
}

#jood-app :where(.woocommerce form .form-row textarea) {
  height: auto;
}

/* =========================================================
   03.25 PAYMENT METHOD FORM ELEMENTS
========================================================= */

#jood-app :where(
  .wc_payment_methods,
  .woocommerce-checkout-payment,
  .payment_methods
) {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

#jood-app :where(
  .wc_payment_methods li,
  .payment_methods li
) {
  max-width: 100%;
  min-width: 0;
}

#jood-app :where(
  .wc_payment_methods label,
  .payment_methods label
) {
  max-width: 100%;
  min-width: 0;
}

#jood-app :where(
  .payment_box,
  .woocommerce-checkout-payment .payment_box
) {
  max-width: 100%;
  min-width: 0;
}

/* =========================================================
   03.26 RESPONSIVE BUTTONS / FORMS TABLET
========================================================= */

@media (max-width: 1180px) {
  #jood-app .jood-form-grid.is-four,
  #jood-app .jood-form-grid.jood-form-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #jood-app .jood-form-grid.is-three,
  #jood-app .jood-form-grid.jood-form-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  #jood-app .jood-form-grid {
    gap: var(--jood-gap-sm);
  }

  #jood-app .jood-btn-lg,
  #jood-app .jood-btn-xl {
    min-height: var(--jood-btn-height-md);
    padding: var(--jood-btn-pad-md);
    font-size: var(--jood-fs-14);
  }
}

/* =========================================================
   03.27 RESPONSIVE BUTTONS / FORMS MOBILE
========================================================= */

@media (max-width: 782px) {
  #jood-app .jood-form-grid,
  #jood-app .jood-form-grid.is-three,
  #jood-app .jood-form-grid.is-four,
  #jood-app .jood-form-grid.jood-form-grid-3,
  #jood-app .jood-form-grid.jood-form-grid-4 {
    grid-template-columns: 1fr;
    gap: var(--jood-mobile-gap);
  }

  #jood-app :where(
    .jood-field,
    .jood-form-field,
    .form-row,
    label.jood-product-variation-field
  ) {
    gap: 6px;
  }

  #jood-app :where(
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="password"],
    input[type="search"],
    input[type="url"],
    input[type="date"],
    input[type="time"],
    input[type="datetime-local"],
    textarea,
    select
  ) {
    min-height: 45px;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: var(--jood-fs-13);
  }

  #jood-app :where(select) {
    padding-inline-end: 38px;
    background-position:
      calc(100% - 21px) 50%,
      calc(100% - 15px) 50%;
  }

  #jood-app :where(textarea) {
    min-height: 96px;
  }

  #jood-app .jood-btn,
  #jood-app a.jood-btn,
  #jood-app button.jood-btn,
  #jood-app input[type="submit"].jood-btn,
  #jood-app input[type="button"].jood-btn {
    min-height: 44px;
    padding: 10px 14px;
    font-size: var(--jood-fs-13);
  }

  #jood-app :where(
    .jood-actions,
    .jood-action-row,
    .jood-button-row,
    .jood-form-actions,
    .jood-card-actions
  ) {
    gap: 8px;
  }

  #jood-app :where(
    .jood-search-form,
    .jood-inline-form
  ) {
    gap: 8px;
  }

  #jood-app :where(
    .jood-coupon-form,
    .coupon
  ) {
    grid-template-columns: 1fr;
  }

  #jood-app :where(
    .jood-coupon-form .jood-btn,
    .coupon .button
  ) {
    width: 100%;
    min-width: 0;
  }

  #jood-app :where(.quantity, .jood-quantity, .jood-qty) {
    grid-template-columns: 36px minmax(44px, 58px) 36px;
    min-height: 38px;
  }

  #jood-app :where(.quantity input.qty, .jood-quantity input, .jood-qty input) {
    min-height: 36px;
    font-size: var(--jood-fs-13);
  }

  #jood-app :where(.jood-qty-btn, .jood-quantity-btn, .quantity button) {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
}

/* =========================================================
   03.28 TINY MOBILE BUTTONS / FORMS
========================================================= */

@media (max-width: 480px) {
  #jood-app .jood-btn,
  #jood-app a.jood-btn,
  #jood-app button.jood-btn,
  #jood-app input[type="submit"].jood-btn,
  #jood-app input[type="button"].jood-btn {
    width: 100%;
    white-space: normal;
  }

  #jood-app .jood-btn-fit,
  #jood-app .jood-btn-icon,
  #jood-app .jood-btn-square {
    width: auto;
  }

  #jood-app .jood-btn-icon,
  #jood-app .jood-btn-square {
    width: 42px;
    min-width: 42px;
    max-width: 42px;
  }

  #jood-app :where(
    .jood-actions,
    .jood-action-row,
    .jood-button-row,
    .jood-form-actions,
    .jood-card-actions
  ) {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  #jood-app :where(
    .jood-actions .jood-btn,
    .jood-action-row .jood-btn,
    .jood-button-row .jood-btn,
    .jood-form-actions .jood-btn,
    .jood-card-actions .jood-btn
  ) {
    width: 100%;
  }

  #jood-app :where(
    .jood-search-form,
    .jood-inline-form
  ) {
    display: grid;
    grid-template-columns: 1fr;
  }

  #jood-app :where(
    .jood-search-form .jood-btn,
    .jood-inline-form .jood-btn
  ) {
    width: 100%;
  }

  #jood-app :where(
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="password"],
    input[type="search"],
    input[type="url"],
    input[type="date"],
    input[type="time"],
    input[type="datetime-local"],
    textarea,
    select
  ) {
    min-height: 44px;
    border-radius: 13px;
  }

  #jood-app :where(
    .jood-field > label,
    .jood-form-field > label,
    .jood-field > span:first-child,
    .jood-form-field > span:first-child,
    .form-row > label,
    label.jood-product-variation-field > span:first-child
  ) {
    font-size: var(--jood-fs-12);
  }
}

/* =========================================================
   03.29 PRINT SAFETY FOR FORMS / BUTTONS
========================================================= */

@media print {
  #jood-app .jood-btn,
  #jood-app a.jood-btn,
  #jood-app button.jood-btn,
  #jood-app input[type="submit"].jood-btn,
  #jood-app input[type="button"].jood-btn,
  #jood-app :where(
    .woocommerce a.button,
    .woocommerce button.button,
    .woocommerce input.button,
    .woocommerce #respond input#submit
  ) {
    display: none !important;
  }

  #jood-app :where(
    input,
    textarea,
    select
  ) {
    border: 1px solid var(--jood-print-border) !important;
    background: #FFFFFF !important;
    color: var(--jood-print-text) !important;
    box-shadow: none !important;
  }
}

/* =========================================================
   04 SHARED HERO + SECTION HEADS
   Paste the next batch directly under this line
========================================================= */
/* =========================================================
   04 SHARED HERO + SECTION HEADS
   Shared visual hierarchy: page hero, eyebrow, section heads,
   section kicker, empty states, Woo notices, breadcrumbs,
   pagination base, shared compact headers.
   Paste this block directly under 03 Buttons + Forms + SVG.
========================================================= */

/* =========================================================
   04.01 SHARED TYPOGRAPHY FOUNDATION
========================================================= */

#jood-app :where(
  .jood-page-hero,
  .jood-section-head,
  .jood-empty-state,
  .jood-wc-notices,
  .jood-pagination
) {
  max-width: 100%;
  min-width: 0;
}

#jood-app :where(
  .jood-page-hero h1,
  .jood-section-head h2,
  .jood-empty-state h3,
  .jood-app-missing-template h2
) {
  text-wrap: balance;
}

#jood-app :where(
  .jood-page-hero p,
  .jood-section-head p,
  .jood-empty-state p,
  .jood-app-missing-template p
) {
  text-wrap: pretty;
}

#jood-app :where(
  .jood-page-hero h1,
  .jood-section-head h2,
  .jood-empty-state h3
) {
  color: var(--jood-ink);
  margin: 0;
}

#jood-app :where(
  .jood-page-hero p,
  .jood-section-head p,
  .jood-empty-state p
) {
  color: var(--jood-muted);
  margin: 0;
}

/* =========================================================
   04.02 EYEBROW / BRAND LABEL
========================================================= */

#jood-app .jood-eyebrow,
#jood-app .jood-app-eyebrow,
#jood-app .jood-section-kicker {
  width: fit-content;
  max-width: 100%;
  min-height: 25px;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  position: relative;
  border: 1px solid rgba(214, 181, 109, .34);
  border-radius: var(--jood-radius-pill);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(245, 234, 216, .74));
  color: var(--jood-brown);
  font-size: var(--jood-fs-11);
  line-height: 1.35;
  font-weight: var(--jood-fw-heavy);
  letter-spacing: 0;
  white-space: nowrap;
  box-shadow: var(--jood-shadow-hair);
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

#jood-app .jood-eyebrow::before,
#jood-app .jood-section-kicker::before {
  content: "";
  width: 5px;
  height: 5px;
  min-width: 5px;
  border-radius: 999px;
  background: var(--jood-gold);
  box-shadow: 0 0 0 4px rgba(214, 181, 109, .13);
}

#jood-app .jood-app-eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  min-width: 5px;
  border-radius: 999px;
  background: var(--jood-gold);
  box-shadow: 0 0 0 4px rgba(214, 181, 109, .13);
}

#jood-app .jood-section-kicker {
  min-height: 23px;
  padding: 3px 9px;
  font-size: var(--jood-fs-11);
}

#jood-app :where(
  .jood-eyebrow .jood-svg-icon,
  .jood-section-kicker .jood-svg-icon,
  .jood-app-eyebrow .jood-svg-icon
) {
  width: 14px;
  height: 14px;
  min-width: 14px;
  font-size: 14px;
  color: var(--jood-gold);
}

#jood-app :where(
  .jood-eyebrow:focus-visible,
  .jood-section-kicker:focus-visible,
  .jood-app-eyebrow:focus-visible
) {
  outline: var(--jood-focus-outline);
  outline-offset: var(--jood-focus-outline-offset);
}

/* =========================================================
   04.03 SHARED PAGE HERO
========================================================= */

#jood-app .jood-page-hero {
  width: 100%;
  min-height: 118px;
  margin: 0 0 var(--jood-space-8);
  padding: clamp(16px, 2.4vw, 24px);
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: var(--jood-border-normal);
  border-radius: var(--jood-radius-hero);
  background:
    radial-gradient(circle at 8% 12%, rgba(214, 181, 109, .12), transparent 30%),
    linear-gradient(135deg, var(--jood-surface) 0%, var(--jood-white-soft) 58%, var(--jood-surface-soft) 100%);
  color: var(--jood-text);
  box-shadow: var(--jood-shadow-xs);
}

#jood-app .jood-page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset-block: 0;
  inset-inline-start: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--jood-gold), var(--jood-gold-3));
  opacity: .94;
  pointer-events: none;
}

#jood-app .jood-page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 220px;
  height: 220px;
  inset-inline-end: -90px;
  top: -120px;
  border-radius: 999px;
  border: 1px solid rgba(214, 181, 109, .18);
  background: radial-gradient(circle, rgba(214, 181, 109, .08), transparent 68%);
  pointer-events: none;
}

#jood-app .jood-page-hero > div {
  width: min(760px, 100%);
  max-width: 100%;
  min-width: 0;
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  justify-items: start;
}

#jood-app .jood-page-hero h1 {
  margin-top: 8px;
  color: var(--jood-ink);
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: var(--jood-lh-tight);
  font-weight: var(--jood-fw-heavy);
  letter-spacing: var(--jood-letter-tight);
}

#jood-app .jood-page-hero p {
  width: min(650px, 100%);
  margin-top: 9px;
  color: var(--jood-muted);
  font-size: clamp(13px, 1.18vw, 15px);
  line-height: var(--jood-lh-loose);
  font-weight: var(--jood-fw-semibold);
}

#jood-app.jood-app-shell-view-cart .jood-page-hero,
#jood-app.jood-app-shell-view-checkout .jood-page-hero,
#jood-app.jood-app-shell-view-account .jood-page-hero,
#jood-app.jood-app-shell-view-invoice .jood-page-hero,
#jood-app.jood-app-shell-view-thank-you .jood-page-hero {
  min-height: 96px;
  margin-bottom: var(--jood-space-6);
  padding: 14px 16px;
  border-radius: var(--jood-radius-panel);
}

#jood-app.jood-app-shell-view-cart .jood-page-hero h1,
#jood-app.jood-app-shell-view-checkout .jood-page-hero h1,
#jood-app.jood-app-shell-view-account .jood-page-hero h1,
#jood-app.jood-app-shell-view-invoice .jood-page-hero h1,
#jood-app.jood-app-shell-view-thank-you .jood-page-hero h1 {
  font-size: clamp(22px, 2.5vw, 32px);
}

#jood-app.jood-app-shell-view-cart .jood-page-hero p,
#jood-app.jood-app-shell-view-checkout .jood-page-hero p,
#jood-app.jood-app-shell-view-account .jood-page-hero p,
#jood-app.jood-app-shell-view-invoice .jood-page-hero p,
#jood-app.jood-app-shell-view-thank-you .jood-page-hero p {
  margin-top: 7px;
  font-size: var(--jood-fs-13);
  line-height: 1.75;
}

/* =========================================================
   04.04 SECTION HEAD BASE
========================================================= */

#jood-app .jood-section-head {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 0 var(--jood-space-8);
  padding: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--jood-gap-lg);
  position: relative;
}

#jood-app .jood-section-head > div {
  min-width: 0;
  max-width: min(760px, 100%);
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 0;
}

#jood-app .jood-section-head h2 {
  margin-top: 8px;
  color: var(--jood-ink);
  font-size: clamp(22px, 2.55vw, 34px);
  line-height: var(--jood-lh-heading);
  font-weight: var(--jood-fw-heavy);
  letter-spacing: var(--jood-letter-tight);
}

#jood-app .jood-section-head p {
  width: min(620px, 100%);
  margin-top: 7px;
  color: var(--jood-muted);
  font-size: var(--jood-fs-14);
  line-height: var(--jood-lh-loose);
  font-weight: var(--jood-fw-semibold);
}

#jood-app .jood-section-head__link {
  min-width: 0;
  min-height: 42px;
  max-width: 100%;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  position: relative;
  border: var(--jood-border-normal);
  border-radius: var(--jood-radius-pill);
  background: var(--jood-surface);
  color: var(--jood-ink);
  font-size: var(--jood-fs-13);
  line-height: 1.35;
  font-weight: var(--jood-fw-heavy);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--jood-shadow-xs);
  overflow: hidden;
  transition: var(--jood-transition-base);
}

#jood-app .jood-section-head__link::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(214, 181, 109, .12), rgba(255, 255, 255, 0));
  transition: opacity var(--jood-speed-fast) var(--jood-ease);
}

#jood-app .jood-section-head__link:hover {
  transform: translateY(var(--jood-hover-y));
  border-color: rgba(214, 181, 109, .58);
  background: var(--jood-white);
  color: var(--jood-ink);
  box-shadow: var(--jood-shadow-sm);
}

#jood-app .jood-section-head__link:hover::before {
  opacity: 1;
}

#jood-app .jood-section-head__link:active {
  transform: translateY(0) scale(var(--jood-active-scale));
}

#jood-app .jood-section-head__link:focus {
  outline: none;
}

#jood-app .jood-section-head__link:focus-visible {
  outline: var(--jood-focus-outline);
  outline-offset: var(--jood-focus-outline-offset);
}

#jood-app .jood-section-head__link span {
  min-width: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

#jood-app .jood-section-head__link .jood-svg-icon {
  width: 16px;
  height: 16px;
  min-width: 16px;
  position: relative;
  z-index: 1;
  color: var(--jood-gold);
  transition: transform var(--jood-speed-fast) var(--jood-ease);
}

#jood-app .jood-section-head__link:hover .jood-svg-icon {
  transform: translateX(-2px);
}

/* =========================================================
   04.05 SECTION HEAD VARIATIONS BY CONTEXT
========================================================= */

#jood-app :where(
  .jood-store-section,
  .jood-category-section,
  .jood-product-section,
  .jood-cart-section,
  .jood-checkout-section,
  .jood-account-section,
  .jood-invoice-section
) > .jood-section-head {
  margin-bottom: var(--jood-space-7);
}

#jood-app :where(
  .jood-cart-page,
  .jood-checkout-page,
  .jood-account-page,
  .jood-invoice-page
) .jood-section-head {
  margin-bottom: var(--jood-space-6);
}

#jood-app :where(
  .jood-cart-page,
  .jood-checkout-page,
  .jood-account-page,
  .jood-invoice-page
) .jood-section-head h2 {
  font-size: clamp(20px, 2vw, 28px);
}

#jood-app :where(
  .jood-cart-page,
  .jood-checkout-page,
  .jood-account-page,
  .jood-invoice-page
) .jood-section-head p {
  font-size: var(--jood-fs-13);
  line-height: 1.75;
}

/* =========================================================
   04.06 COMPACT CARD HEADS USED ACROSS TEMPLATES
========================================================= */

#jood-app :where(
  .jood-checkout-card__head,
  .jood-cart-summary-card__head,
  .jood-cart-coupon-card__head,
  .jood-account-card__head,
  .jood-invoice-meta-card__head,
  .jood-product-variations__head
) {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: var(--jood-gap-sm);
  margin: 0;
  padding: 0;
}

#jood-app :where(
  .jood-checkout-card__head > .jood-svg-icon,
  .jood-cart-summary-card__head > .jood-svg-icon,
  .jood-cart-coupon-card__head > .jood-svg-icon,
  .jood-account-card__head > .jood-svg-icon,
  .jood-invoice-meta-card__head > .jood-svg-icon,
  .jood-product-variations__head > .jood-svg-icon
) {
  width: var(--jood-icon-box-sm);
  height: var(--jood-icon-box-sm);
  min-width: var(--jood-icon-box-sm);
  display: grid;
  place-items: center;
  border-radius: var(--jood-radius-md);
  background: var(--jood-gold-4);
  color: var(--jood-brown);
  border: 1px solid rgba(214, 181, 109, .24);
}

#jood-app :where(
  .jood-checkout-card__head > div,
  .jood-cart-summary-card__head > div,
  .jood-cart-coupon-card__head > div,
  .jood-account-card__head > div,
  .jood-invoice-meta-card__head > div,
  .jood-product-variations__head > div
) {
  min-width: 0;
  display: grid;
  gap: 3px;
}

#jood-app :where(
  .jood-checkout-card__head h3,
  .jood-cart-summary-card__head h3,
  .jood-cart-coupon-card__head h3,
  .jood-account-card__head h3,
  .jood-invoice-meta-card__head h3,
  .jood-product-variations__head strong
) {
  margin: 0;
  color: var(--jood-ink);
  font-size: var(--jood-fs-17);
  line-height: var(--jood-lh-heading);
  font-weight: var(--jood-fw-heavy);
}

#jood-app :where(
  .jood-checkout-card__head p,
  .jood-cart-summary-card__head p,
  .jood-cart-coupon-card__head p,
  .jood-account-card__head p,
  .jood-invoice-meta-card__head p
) {
  margin: 0;
  color: var(--jood-muted);
  font-size: var(--jood-fs-12);
  line-height: 1.55;
  font-weight: var(--jood-fw-semibold);
}

/* =========================================================
   04.07 INLINE SECTION HEADS USED IN PAGES
========================================================= */

#jood-app :where(
  .jood-category-products__head,
  .jood-invoice-section-head,
  .jood-product-related-head,
  .jood-cart-items-head,
  .jood-account-orders-head
) {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 0 var(--jood-space-6);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--jood-gap-md);
}

#jood-app :where(
  .jood-category-products__head > div,
  .jood-invoice-section-head > div,
  .jood-product-related-head > div,
  .jood-cart-items-head > div,
  .jood-account-orders-head > div
) {
  min-width: 0;
  display: grid;
  justify-items: start;
  gap: 0;
}

#jood-app :where(
  .jood-category-products__head h2,
  .jood-invoice-section-head h3,
  .jood-product-related-head h2,
  .jood-cart-items-head h2,
  .jood-account-orders-head h2
) {
  margin: 7px 0 0;
  color: var(--jood-ink);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: var(--jood-lh-heading);
  font-weight: var(--jood-fw-heavy);
  letter-spacing: -.35px;
}

#jood-app :where(
  .jood-category-products__head p,
  .jood-invoice-section-head p,
  .jood-product-related-head p,
  .jood-cart-items-head p,
  .jood-account-orders-head p
) {
  width: min(620px, 100%);
  margin: 6px 0 0;
  color: var(--jood-muted);
  font-size: var(--jood-fs-13);
  line-height: var(--jood-lh-body);
  font-weight: var(--jood-fw-semibold);
}

/* =========================================================
   04.08 BACK / COUNT ACTIONS INSIDE INLINE HEADS
========================================================= */

#jood-app :where(
  .jood-category-products__back,
  .jood-invoice-items-count,
  .jood-cart-items-count,
  .jood-account-orders-count
) {
  min-height: 38px;
  max-width: 100%;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex: 0 0 auto;
  border: var(--jood-border-light);
  border-radius: var(--jood-radius-pill);
  background: var(--jood-surface);
  color: var(--jood-ink);
  font-size: var(--jood-fs-12);
  line-height: 1.35;
  font-weight: var(--jood-fw-heavy);
  white-space: nowrap;
  box-shadow: var(--jood-shadow-hair);
}

#jood-app :where(
  .jood-category-products__back .jood-svg-icon,
  .jood-invoice-items-count .jood-svg-icon,
  .jood-cart-items-count .jood-svg-icon,
  .jood-account-orders-count .jood-svg-icon
) {
  width: 15px;
  height: 15px;
  min-width: 15px;
  color: var(--jood-gold);
}

#jood-app :where(.jood-category-products__back) {
  transition: var(--jood-transition-base);
}

#jood-app :where(.jood-category-products__back:hover) {
  transform: translateY(var(--jood-hover-y));
  border-color: rgba(214, 181, 109, .55);
  box-shadow: var(--jood-shadow-xs);
}

/* =========================================================
   04.09 BREADCRUMBS BASE
========================================================= */

#jood-app :where(
  .jood-breadcrumbs,
  .jood-product-breadcrumbs,
  .jood-category-breadcrumbs
) {
  width: fit-content;
  max-width: 100%;
  min-height: 30px;
  margin: 0 0 var(--jood-space-5);
  padding: 5px 9px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  border: var(--jood-border-light);
  border-radius: var(--jood-radius-pill);
  background: var(--jood-surface-glass);
  color: var(--jood-muted);
  font-size: var(--jood-fs-12);
  line-height: 1.4;
  font-weight: var(--jood-fw-bold);
  box-shadow: var(--jood-shadow-hair);
}

#jood-app :where(
  .jood-breadcrumbs a,
  .jood-product-breadcrumbs a,
  .jood-category-breadcrumbs a
) {
  color: var(--jood-muted);
  transition: color var(--jood-speed-fast) var(--jood-ease);
}

#jood-app :where(
  .jood-breadcrumbs a:hover,
  .jood-product-breadcrumbs a:hover,
  .jood-category-breadcrumbs a:hover
) {
  color: var(--jood-brown);
}

#jood-app :where(
  .jood-breadcrumbs span,
  .jood-product-breadcrumbs span,
  .jood-category-breadcrumbs span
) {
  min-width: 0;
}

#jood-app :where(
  .jood-breadcrumbs .separator,
  .jood-product-breadcrumbs .separator,
  .jood-category-breadcrumbs .separator
) {
  color: var(--jood-gold);
  opacity: .8;
}

/* =========================================================
   04.10 WOOCOMMERCE NOTICES WRAPPER
========================================================= */

#jood-app .jood-wc-notices {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 0 var(--jood-space-6);
  padding: 0;
  display: grid;
  gap: var(--jood-gap-sm);
}

#jood-app .jood-wc-notices:empty {
  display: none;
}

#jood-app .jood-wc-notices :where(
  .woocommerce-error,
  .woocommerce-info,
  .woocommerce-message
) {
  width: 100%;
  min-height: 44px;
  margin: 0;
  padding: 11px 14px;
  display: grid;
  align-items: center;
  gap: 7px;
  position: relative;
  border: var(--jood-border-normal);
  border-radius: var(--jood-radius-lg);
  background: var(--jood-surface);
  color: var(--jood-ink);
  box-shadow: var(--jood-shadow-xs);
  overflow: hidden;
  font-size: var(--jood-fs-13);
  line-height: var(--jood-lh-body);
  font-weight: var(--jood-fw-bold);
}

#jood-app .jood-wc-notices :where(
  .woocommerce-error,
  .woocommerce-info,
  .woocommerce-message
)::before {
  content: "";
  display: block;
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 4px;
  background: var(--jood-gold);
  opacity: .9;
}

#jood-app .jood-wc-notices .woocommerce-error {
  border-color: rgba(184, 64, 52, .24);
  background: var(--jood-danger-soft);
  color: var(--jood-ink);
}

#jood-app .jood-wc-notices .woocommerce-error::before {
  background: var(--jood-danger);
}

#jood-app .jood-wc-notices .woocommerce-info {
  border-color: rgba(47, 111, 143, .22);
  background: var(--jood-info-soft);
  color: var(--jood-ink);
}

#jood-app .jood-wc-notices .woocommerce-info::before {
  background: var(--jood-info);
}

#jood-app .jood-wc-notices .woocommerce-message {
  border-color: rgba(31, 138, 91, .22);
  background: var(--jood-success-soft);
  color: var(--jood-ink);
}

#jood-app .jood-wc-notices .woocommerce-message::before {
  background: var(--jood-success);
}

#jood-app .jood-wc-notices :where(
  .woocommerce-error a,
  .woocommerce-info a,
  .woocommerce-message a
) {
  width: fit-content;
  max-width: 100%;
  min-height: 32px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--jood-radius-pill);
  background: var(--jood-white);
  color: var(--jood-ink);
  border: var(--jood-border-light);
  font-size: var(--jood-fs-12);
  font-weight: var(--jood-fw-heavy);
  box-shadow: var(--jood-shadow-hair);
}

/* =========================================================
   04.11 EMPTY STATE
========================================================= */

#jood-app .jood-empty-state {
  width: 100%;
  min-height: 280px;
  padding: clamp(22px, 4vw, 42px);
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  gap: var(--jood-gap-md);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: var(--jood-border-normal);
  border-radius: var(--jood-radius-hero);
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 181, 109, .12), transparent 34%),
    linear-gradient(180deg, var(--jood-white) 0%, var(--jood-white-soft) 100%);
  color: var(--jood-text);
  box-shadow: var(--jood-shadow-sm);
}

#jood-app .jood-empty-state::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 260px;
  height: 260px;
  inset-inline-start: -120px;
  bottom: -130px;
  border-radius: 999px;
  border: 1px solid rgba(214, 181, 109, .16);
  background: radial-gradient(circle, rgba(214, 181, 109, .08), transparent 65%);
  pointer-events: none;
}

#jood-app .jood-empty-state__icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  display: grid;
  place-items: center;
  border-radius: var(--jood-radius-2xl);
  background:
    linear-gradient(135deg, var(--jood-ink), var(--jood-ink-2));
  color: var(--jood-gold);
  box-shadow: 0 14px 32px rgba(10, 22, 37, .16);
}

#jood-app .jood-empty-state__icon .jood-svg-icon,
#jood-app .jood-empty-state__icon svg {
  width: 30px;
  height: 30px;
  font-size: 30px;
}

#jood-app .jood-empty-state h3 {
  margin: var(--jood-space-2) 0 0;
  color: var(--jood-ink);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: var(--jood-lh-heading);
  font-weight: var(--jood-fw-heavy);
}

#jood-app .jood-empty-state p {
  width: min(560px, 100%);
  color: var(--jood-muted);
  font-size: var(--jood-fs-14);
  line-height: var(--jood-lh-loose);
  font-weight: var(--jood-fw-semibold);
}

#jood-app .jood-empty-state .jood-btn {
  margin-top: var(--jood-space-3);
}

/* =========================================================
   04.12 PAGINATION BASE
========================================================= */

#jood-app .jood-pagination {
  width: 100%;
  max-width: 100%;
  margin: var(--jood-space-10) 0 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
}

#jood-app .jood-pagination :where(a, span) {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: var(--jood-border-light);
  border-radius: var(--jood-radius-pill);
  background: var(--jood-surface);
  color: var(--jood-ink);
  font-size: var(--jood-fs-12);
  line-height: 1;
  font-weight: var(--jood-fw-heavy);
  text-decoration: none;
  box-shadow: var(--jood-shadow-hair);
  transition: var(--jood-transition-fast);
}

#jood-app .jood-pagination a:hover {
  transform: translateY(var(--jood-hover-y));
  border-color: rgba(214, 181, 109, .58);
  background: var(--jood-surface-soft);
  color: var(--jood-ink);
  box-shadow: var(--jood-shadow-xs);
}

#jood-app .jood-pagination .current {
  background: var(--jood-ink);
  color: var(--jood-white);
  border-color: var(--jood-ink);
  box-shadow: 0 8px 20px rgba(10, 22, 37, .13);
}

#jood-app .jood-pagination .dots {
  min-width: 24px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

/* =========================================================
   04.13 SHARED STATUS PILLS
========================================================= */

#jood-app :where(
  .jood-status,
  .jood-stock,
  .jood-product-stock,
  .jood-order-status,
  .jood-payment-status
) {
  width: fit-content;
  max-width: 100%;
  min-height: 28px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: var(--jood-border-light);
  border-radius: var(--jood-radius-pill);
  background: var(--jood-surface-soft);
  color: var(--jood-muted);
  font-size: var(--jood-fs-12);
  line-height: 1.35;
  font-weight: var(--jood-fw-heavy);
  white-space: nowrap;
}

#jood-app :where(
  .jood-status .jood-svg-icon,
  .jood-stock .jood-svg-icon,
  .jood-product-stock .jood-svg-icon,
  .jood-order-status .jood-svg-icon,
  .jood-payment-status .jood-svg-icon
) {
  width: 14px;
  height: 14px;
  min-width: 14px;
}

#jood-app :where(
  .jood-status.is-success,
  .jood-stock.is-in-stock,
  .jood-product-stock.is-in-stock,
  .jood-payment-status.is-paid
) {
  background: var(--jood-success-soft);
  border-color: rgba(31, 138, 91, .24);
  color: var(--jood-success);
}

#jood-app :where(
  .jood-status.is-danger,
  .jood-stock.is-out-of-stock,
  .jood-product-stock.is-out-of-stock,
  .jood-payment-status.is-failed
) {
  background: var(--jood-danger-soft);
  border-color: rgba(184, 64, 52, .24);
  color: var(--jood-danger);
}

#jood-app :where(
  .jood-status.is-warning,
  .jood-order-status.is-processing,
  .jood-payment-status.is-pending
) {
  background: var(--jood-warning-soft);
  border-color: rgba(184, 121, 33, .24);
  color: var(--jood-warning);
}

#jood-app :where(
  .jood-status.is-info,
  .jood-order-status.is-completed
) {
  background: var(--jood-info-soft);
  border-color: rgba(47, 111, 143, .22);
  color: var(--jood-info);
}

/* =========================================================
   04.14 SHARED MICRO TEXT / META ROWS
========================================================= */

#jood-app :where(
  .jood-meta-row,
  .jood-info-row,
  .jood-detail-row
) {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--jood-gap-sm);
  color: var(--jood-muted);
  font-size: var(--jood-fs-13);
  line-height: var(--jood-lh-body);
  font-weight: var(--jood-fw-semibold);
}

#jood-app :where(
  .jood-meta-row span,
  .jood-info-row span,
  .jood-detail-row span
) {
  min-width: 0;
}

#jood-app :where(
  .jood-meta-row strong,
  .jood-info-row strong,
  .jood-detail-row strong
) {
  color: var(--jood-ink);
  font-weight: var(--jood-fw-heavy);
}

/* =========================================================
   04.15 SHARED DIVIDERS
========================================================= */

#jood-app :where(
  .jood-divider,
  .jood-card-divider
) {
  width: 100%;
  height: 1px;
  margin: var(--jood-space-4) 0;
  border: 0;
  background: rgba(232, 220, 199, .82);
}

#jood-app :where(
  .jood-soft-divider
) {
  width: 100%;
  height: 1px;
  margin: var(--jood-space-3) 0;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(232, 220, 199, .9), transparent);
}

/* =========================================================
   04.16 SHARED RESPONSIVE TABLET
========================================================= */

@media (max-width: 1180px) {
  #jood-app .jood-page-hero {
    min-height: 108px;
  }

  #jood-app .jood-section-head {
    gap: var(--jood-gap-md);
  }

  #jood-app .jood-section-head h2 {
    font-size: clamp(21px, 2.7vw, 31px);
  }

  #jood-app :where(
    .jood-category-products__head h2,
    .jood-invoice-section-head h3,
    .jood-product-related-head h2,
    .jood-cart-items-head h2,
    .jood-account-orders-head h2
  ) {
    font-size: clamp(20px, 2.5vw, 28px);
  }
}

@media (max-width: 900px) {
  #jood-app .jood-page-hero {
    padding: 15px;
    border-radius: var(--jood-radius-panel);
  }

  #jood-app .jood-page-hero h1 {
    font-size: clamp(22px, 4vw, 32px);
  }

  #jood-app .jood-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--jood-gap-sm);
    margin-bottom: var(--jood-space-6);
  }

  #jood-app .jood-section-head > div {
    width: 100%;
    max-width: 100%;
  }

  #jood-app .jood-section-head__link {
    min-height: 40px;
  }

  #jood-app :where(
    .jood-category-products__head,
    .jood-invoice-section-head,
    .jood-product-related-head,
    .jood-cart-items-head,
    .jood-account-orders-head
  ) {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--jood-gap-sm);
  }

  #jood-app :where(
    .jood-category-products__back,
    .jood-invoice-items-count,
    .jood-cart-items-count,
    .jood-account-orders-count
  ) {
    min-height: 36px;
  }
}

/* =========================================================
   04.17 SHARED RESPONSIVE MOBILE
========================================================= */

@media (max-width: 782px) {
  #jood-app .jood-eyebrow,
  #jood-app .jood-app-eyebrow,
  #jood-app .jood-section-kicker {
    min-height: 22px;
    padding: 3px 8px;
    gap: 6px;
    font-size: 10.5px;
  }

  #jood-app .jood-eyebrow::before,
  #jood-app .jood-app-eyebrow::before,
  #jood-app .jood-section-kicker::before {
    width: 4px;
    height: 4px;
    min-width: 4px;
    box-shadow: 0 0 0 3px rgba(214, 181, 109, .12);
  }

  #jood-app .jood-page-hero {
    min-height: 84px;
    margin-bottom: var(--jood-space-5);
    padding: 12px;
    border-radius: var(--jood-mobile-hero-radius);
  }

  #jood-app .jood-page-hero::before {
    width: 4px;
  }

  #jood-app .jood-page-hero::after {
    width: 150px;
    height: 150px;
    inset-inline-end: -75px;
    top: -90px;
  }

  #jood-app .jood-page-hero h1 {
    margin-top: 6px;
    font-size: clamp(20px, 6vw, 26px);
    line-height: 1.18;
    letter-spacing: -.35px;
  }

  #jood-app .jood-page-hero p {
    margin-top: 6px;
    font-size: var(--jood-fs-12);
    line-height: 1.65;
  }

  #jood-app .jood-section-head {
    margin-bottom: var(--jood-space-5);
    gap: var(--jood-gap-sm);
  }

  #jood-app .jood-section-head h2 {
    margin-top: 6px;
    font-size: clamp(20px, 5.6vw, 26px);
    line-height: 1.22;
    letter-spacing: -.35px;
  }

  #jood-app .jood-section-head p {
    margin-top: 5px;
    font-size: var(--jood-fs-12);
    line-height: 1.65;
  }

  #jood-app .jood-section-head__link {
    min-height: 38px;
    padding: 8px 12px;
    font-size: var(--jood-fs-12);
  }

  #jood-app :where(
    .jood-checkout-card__head,
    .jood-cart-summary-card__head,
    .jood-cart-coupon-card__head,
    .jood-account-card__head,
    .jood-invoice-meta-card__head,
    .jood-product-variations__head
  ) {
    gap: 8px;
  }

  #jood-app :where(
    .jood-checkout-card__head > .jood-svg-icon,
    .jood-cart-summary-card__head > .jood-svg-icon,
    .jood-cart-coupon-card__head > .jood-svg-icon,
    .jood-account-card__head > .jood-svg-icon,
    .jood-invoice-meta-card__head > .jood-svg-icon,
    .jood-product-variations__head > .jood-svg-icon
  ) {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 12px;
  }

  #jood-app :where(
    .jood-checkout-card__head h3,
    .jood-cart-summary-card__head h3,
    .jood-cart-coupon-card__head h3,
    .jood-account-card__head h3,
    .jood-invoice-meta-card__head h3,
    .jood-product-variations__head strong
  ) {
    font-size: var(--jood-fs-15);
    line-height: 1.35;
  }

  #jood-app :where(
    .jood-category-products__head h2,
    .jood-invoice-section-head h3,
    .jood-product-related-head h2,
    .jood-cart-items-head h2,
    .jood-account-orders-head h2
  ) {
    margin-top: 6px;
    font-size: clamp(18px, 5vw, 23px);
    line-height: 1.25;
  }

  #jood-app :where(
    .jood-category-products__head p,
    .jood-invoice-section-head p,
    .jood-product-related-head p,
    .jood-cart-items-head p,
    .jood-account-orders-head p
  ) {
    font-size: var(--jood-fs-12);
    line-height: 1.6;
  }

  #jood-app .jood-wc-notices {
    margin-bottom: var(--jood-space-5);
    gap: 7px;
  }

  #jood-app .jood-wc-notices :where(
    .woocommerce-error,
    .woocommerce-info,
    .woocommerce-message
  ) {
    min-height: 40px;
    padding: 9px 11px;
    border-radius: var(--jood-radius-md);
    font-size: var(--jood-fs-12);
    line-height: 1.6;
  }

  #jood-app .jood-empty-state {
    min-height: 230px;
    padding: 22px 14px;
    border-radius: var(--jood-mobile-hero-radius);
    gap: var(--jood-gap-sm);
  }

  #jood-app .jood-empty-state__icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 20px;
  }

  #jood-app .jood-empty-state__icon .jood-svg-icon,
  #jood-app .jood-empty-state__icon svg {
    width: 25px;
    height: 25px;
    font-size: 25px;
  }

  #jood-app .jood-empty-state h3 {
    font-size: clamp(20px, 5.5vw, 25px);
  }

  #jood-app .jood-empty-state p {
    font-size: var(--jood-fs-12);
    line-height: 1.7;
  }

  #jood-app .jood-pagination {
    margin-top: var(--jood-space-7);
    gap: 6px;
  }

  #jood-app .jood-pagination :where(a, span) {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    font-size: var(--jood-fs-11);
  }

  #jood-app :where(
    .jood-status,
    .jood-stock,
    .jood-product-stock,
    .jood-order-status,
    .jood-payment-status
  ) {
    min-height: 26px;
    padding: 4px 8px;
    font-size: var(--jood-fs-11);
  }
}

/* =========================================================
   04.18 TINY MOBILE FIXES
========================================================= */

@media (max-width: 480px) {
  #jood-app .jood-page-hero {
    padding: 11px;
    border-radius: 17px;
  }

  #jood-app .jood-page-hero h1 {
    font-size: clamp(19px, 6.4vw, 24px);
  }

  #jood-app .jood-section-head__link {
    width: 100%;
  }

  #jood-app :where(
    .jood-category-products__back,
    .jood-invoice-items-count,
    .jood-cart-items-count,
    .jood-account-orders-count
  ) {
    width: 100%;
  }

  #jood-app :where(
    .jood-breadcrumbs,
    .jood-product-breadcrumbs,
    .jood-category-breadcrumbs
  ) {
    width: 100%;
    border-radius: 14px;
    font-size: var(--jood-fs-11);
  }

  #jood-app .jood-wc-notices :where(
    .woocommerce-error a,
    .woocommerce-info a,
    .woocommerce-message a
  ) {
    width: 100%;
  }

  #jood-app .jood-empty-state .jood-btn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  #jood-app .jood-page-hero h1,
  #jood-app .jood-section-head h2 {
    letter-spacing: 0;
  }

  #jood-app .jood-page-hero p,
  #jood-app .jood-section-head p {
    line-height: 1.58;
  }

  #jood-app .jood-pagination :where(a, span) {
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
  }
}

/* =========================================================
   04.19 PRINT MODE
========================================================= */

@media print {
  #jood-app .jood-page-hero,
  #jood-app .jood-section-head__link,
  #jood-app .jood-wc-notices,
  #jood-app .jood-pagination {
    display: none !important;
  }

  #jood-app .jood-section-head {
    margin: 0 0 10px !important;
    display: block !important;
  }

  #jood-app .jood-section-head h2 {
    margin: 0 !important;
    color: #2B170F !important;
    font-size: 18px !important;
    line-height: 1.35 !important;
  }

  #jood-app .jood-section-head p,
  #jood-app .jood-eyebrow,
  #jood-app .jood-section-kicker {
    display: none !important;
  }

  #jood-app .jood-empty-state {
    min-height: auto !important;
    padding: 18px !important;
    border: 1px solid #F6E9D8 !important;
    background: #FFFFFF !important;
    color: #2B170F !important;
    box-shadow: none !important;
  }
}

/* =========================================================
   05 STORE PAGE — JOOD ROYAL APP FINAL
   Built from the actual templates:
   - templates/store.php
   - templates/parts.php
   - templates/app-layout.php
   Goal: compact premium mobile-app store, not WooCommerce look.
========================================================= */

/* =========================================================
   05.00 VIEW LOCK + STORE TOKENS
========================================================= */

#jood-app.jood-app-shell-view-store {
  --jood-current-max: 1180px;
  --jood-store-max: 1180px;
  --jood-store-ink: #2B170F;
  --jood-store-ink-2: #2B170F;
  --jood-store-ink-3: #3A2116;
  --jood-store-gold: #B9854D;
  --jood-store-gold-2: #D7B179;
  --jood-store-gold-3: #F6E9D8;
  --jood-store-cream: #FFFFFF;
  --jood-store-cream-2: #FFFFFF;
  --jood-store-paper: #FFFFFF;
  --jood-store-line: rgba(214, 181, 109, .58);
  --jood-store-line-soft: rgba(232, 220, 199, .88);
  --jood-store-muted: #7B6758;
  --jood-store-brown: #2B170F;
  --jood-store-radius-page: 30px;
  --jood-store-radius-panel: 24px;
  --jood-store-radius-card: 22px;
  --jood-store-radius-control: 16px;
  --jood-store-shadow-soft: 0 16px 44px rgba(10, 22, 37, .055);
  --jood-store-shadow-card: 0 12px 30px rgba(10, 22, 37, .07);
  --jood-store-shadow-hover: 0 20px 50px rgba(10, 22, 37, .11);
  --jood-store-ease: cubic-bezier(.2, .75, .25, 1);
  background:
    radial-gradient(circle at 92% 0%, rgba(214, 181, 109, .12), transparent 34%),
    radial-gradient(circle at 8% 25%, rgba(10, 22, 37, .045), transparent 30%),
    linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 48%, #FFFFFF 100%);
}

#jood-app.jood-app-shell-view-store,
#jood-app.jood-app-shell-view-store *,
#jood-app.jood-app-shell-view-store *::before,
#jood-app.jood-app-shell-view-store *::after {
  box-sizing: border-box;
}

#jood-app.jood-app-shell-view-store .jood-app-main {
  width: min(var(--jood-store-max), calc(100% - 28px)) !important;
  max-width: 100% !important;
  margin-inline: auto !important;
  padding-top: 12px !important;
  padding-bottom: max(44px, var(--jood-main-bottom, 70px)) !important;
}

#jood-app.jood-app-shell-view-store .jood-app-content-store {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow: visible !important;
}

#jood-app.jood-app-shell-view-store :where(
  .jood-store-stage,
  .jood-store-hero,
  .jood-store-quick-links,
  .jood-store-section-offers,
  .jood-store-section-featured,
  .jood-featured-layout,
  .jood-featured-grid,
  .jood-product-carousel,
  .jood-store-service-strip,
  .jood-products-panel
) {
  display: none !important;
}

/* =========================================================
   05.01 STORE APP FOUNDATION
========================================================= */

#jood-app.jood-app-shell-view-store .jood-store-app {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 12px !important;
  position: relative !important;
  isolation: isolate !important;
}

#jood-app.jood-app-shell-view-store .jood-store-app::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset-inline: 10%;
  top: 70px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(214, 181, 109, .10), transparent 68%);
  pointer-events: none;
}

#jood-app.jood-app-shell-view-store :where(a, button) {
  touch-action: manipulation;
}

#jood-app.jood-app-shell-view-store :where(input, select, button, a) {
  -webkit-tap-highlight-color: rgba(214, 181, 109, .18);
}

/* =========================================================
   05.02 ROYAL COMPACT TOPBAR
========================================================= */

#jood-app.jood-app-shell-view-store .jood-store-topbar {
  width: 100% !important;
  min-height: 154px !important;
  margin: 0 !important;
  padding: clamp(18px, 2.4vw, 28px) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  grid-template-areas: "copy meta" !important;
  align-items: center !important;
  gap: clamp(18px, 3vw, 42px) !important;
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid rgba(214, 181, 109, .32) !important;
  border-radius: 30px !important;
  background:
    radial-gradient(circle at 12% 42%, rgba(214, 181, 109, .20), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, .08), transparent 30%),
    linear-gradient(135deg, #191a21 0%, #2B170F 54%, #151821 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0 22px 55px rgba(10, 22, 37, .18), inset 0 1px 0 rgba(255, 255, 255, .12) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

#jood-app.jood-app-shell-view-store .jood-store-topbar::after {
  content: "";
  position: absolute;
  inset-inline: 28px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, transparent, var(--jood-store-gold), transparent);
  opacity: .95;
  pointer-events: none;
}

#jood-app.jood-app-shell-view-store .jood-store-topbar__copy {
  grid-area: copy !important;
  min-width: 0 !important;
  display: grid !important;
  justify-items: start !important;
  align-content: center !important;
  gap: 8px !important;
  position: relative !important;
  z-index: 1 !important;
}

#jood-app.jood-app-shell-view-store .jood-store-kicker {
  width: fit-content !important;
  max-width: 100% !important;
  min-height: 28px !important;
  padding: 5px 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(214, 181, 109, .46) !important;
  background: rgba(255, 255, 255, .08) !important;
  color: #f1d8ad !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  letter-spacing: .1px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-kicker::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--jood-store-gold);
  box-shadow: 0 0 0 4px rgba(214, 181, 109, .16);
}

#jood-app.jood-app-shell-view-store .jood-store-topbar h1 {
  margin: 0 !important;
  color: #FFFFFF !important;
  font-size: clamp(36px, 5vw, 64px) !important;
  line-height: .98 !important;
  font-weight: 950 !important;
  letter-spacing: -1.6px !important;
  text-shadow: 0 12px 28px rgba(0,0,0,.18) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-topbar p {
  width: min(640px, 100%) !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, .82) !important;
  font-size: clamp(13px, 1.2vw, 15px) !important;
  line-height: 1.8 !important;
  font-weight: 800 !important;
}

#jood-app.jood-app-shell-view-store .jood-store-topbar__meta {
  grid-area: meta !important;
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(106px, 126px)) !important;
  gap: 10px !important;
  align-items: stretch !important;
  position: relative !important;
  z-index: 1 !important;
  direction: rtl !important;
}

#jood-app.jood-app-shell-view-store .jood-store-meta-card {
  min-width: 0 !important;
  min-height: 96px !important;
  padding: 14px 12px !important;
  display: grid !important;
  align-content: center !important;
  justify-items: center !important;
  gap: 4px !important;
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, .14) !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, .075) !important;
  color: rgba(255,255,255,.92) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 12px 30px rgba(0,0,0,.12) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  transition: transform .22s var(--jood-store-ease), border-color .22s var(--jood-store-ease), background .22s var(--jood-store-ease) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-meta-card:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(214, 181, 109, .45) !important;
  background: rgba(255, 255, 255, .105) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-meta-card.is-cart {
  background: linear-gradient(135deg, #d9bf93 0%, #B9854D 100%) !important;
  border-color: rgba(255, 255, 255, .22) !important;
  color: #2B170F !important;
  box-shadow: 0 16px 34px rgba(214, 181, 109, .20), inset 0 1px 0 rgba(255,255,255,.28) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-meta-card strong {
  display: block !important;
  color: inherit !important;
  font-size: 34px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  letter-spacing: -.6px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-meta-card span {
  display: block !important;
  color: inherit !important;
  opacity: .9 !important;
  font-size: 11px !important;
  line-height: 1.35 !important;
  font-weight: 900 !important;
}

#jood-app.jood-app-shell-view-store .jood-store-meta-card .jood-svg-icon {
  width: 34px !important;
  height: 34px !important;
  display: grid !important;
  place-items: center !important;
  color: currentColor !important;
  stroke-width: 2 !important;
}

/* =========================================================
   05.03 CATEGORY TABS — APP CHIPS
========================================================= */

#jood-app.jood-app-shell-view-store .jood-store-tabs {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 64px !important;
  margin: 0 !important;
  padding: 9px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  overscroll-behavior-inline: contain !important;
  scroll-snap-type: x proximity !important;
  border: 1px solid rgba(232, 220, 199, .96) !important;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, .82) !important;
  box-shadow: 0 10px 32px rgba(10, 22, 37, .055), inset 0 1px 0 rgba(255,255,255,.86) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  scrollbar-width: none !important;
}

#jood-app.jood-app-shell-view-store .jood-store-tabs::-webkit-scrollbar {
  display: none !important;
}

#jood-app.jood-app-shell-view-store .jood-store-tab {
  flex: 0 0 auto !important;
  min-width: 138px !important;
  min-height: 46px !important;
  padding: 9px 13px !important;
  display: inline-grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 8px !important;
  scroll-snap-align: start !important;
  border: 1px solid rgba(232, 220, 199, .98) !important;
  border-radius: 16px !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
  font-weight: 950 !important;
  box-shadow: 0 3px 10px rgba(10, 22, 37, .035) !important;
  transition: transform .18s var(--jood-store-ease), border-color .18s var(--jood-store-ease), background .18s var(--jood-store-ease), color .18s var(--jood-store-ease) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-tab:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(214, 181, 109, .50) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-tab.is-active {
  background: linear-gradient(135deg, #2B170F, #2B170F) !important;
  border-color: #2B170F !important;
  color: #FFFFFF !important;
  box-shadow: 0 10px 24px rgba(10, 22, 37, .13) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-tab .jood-svg-icon {
  width: 18px !important;
  height: 18px !important;
  color: currentColor !important;
}

#jood-app.jood-app-shell-view-store .jood-store-tab span {
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

#jood-app.jood-app-shell-view-store .jood-store-tab em {
  min-width: 22px !important;
  height: 22px !important;
  padding: 0 7px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: rgba(214, 181, 109, .16) !important;
  color: inherit !important;
  font-size: 11px !important;
  font-style: normal !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-store .jood-store-tab.is-active em {
  background: rgba(214, 181, 109, .22) !important;
  color: #f4dcb5 !important;
}

/* =========================================================
   05.04 PRODUCTS SHELL
========================================================= */

#jood-app.jood-app-shell-view-store .jood-store-products-shell {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: clamp(14px, 2vw, 22px) !important;
  display: grid !important;
  gap: 14px !important;
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid rgba(232, 220, 199, .96) !important;
  border-radius: 30px !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(214, 181, 109, .08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .74)) !important;
  box-shadow: 0 18px 50px rgba(10, 22, 37, .06), inset 0 1px 0 rgba(255,255,255,.92) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-products-shell::before {
  content: "";
  position: absolute;
  inset-inline: 24px;
  top: 0;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, transparent, rgba(214, 181, 109, .80), transparent);
  pointer-events: none;
}

#jood-app.jood-app-shell-view-store .jood-store-toolbar {
  width: 100% !important;
  min-width: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  position: relative !important;
  z-index: 1 !important;
}

#jood-app.jood-app-shell-view-store .jood-store-toolbar__title {
  min-width: 0 !important;
  display: grid !important;
  gap: 3px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-toolbar__title span {
  width: fit-content !important;
  padding: 5px 9px !important;
  display: inline-flex !important;
  border: 1px solid rgba(214, 181, 109, .34) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .86) !important;
  color: var(--jood-store-brown) !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-store .jood-store-toolbar__title h2 {
  margin: 0 !important;
  color: #2B170F !important;
  font-size: clamp(24px, 3.1vw, 38px) !important;
  line-height: 1.1 !important;
  font-weight: 950 !important;
  letter-spacing: -.8px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-toolbar__count {
  flex: 0 0 auto !important;
  min-height: 42px !important;
  padding: 8px 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  border: 1px solid rgba(232, 220, 199, .96) !important;
  border-radius: 999px !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
  box-shadow: 0 5px 16px rgba(10, 22, 37, .04) !important;
  font-size: 11px !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-store .jood-store-toolbar__count .jood-svg-icon {
  width: 17px !important;
  height: 17px !important;
  color: var(--jood-store-gold) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-toolbar__count strong {
  color: #2B170F !important;
  font-size: 15px !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-store .jood-store-toolbar__count span {
  color: var(--jood-store-muted) !important;
}

/* =========================================================
   05.05 FILTERS — SINGLE PREMIUM CONTROL BAR
========================================================= */

#jood-app.jood-app-shell-view-store .jood-store-filter-shell {
  width: 100% !important;
  min-width: 0 !important;
  padding: 10px !important;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  align-items: stretch !important;
  gap: 10px !important;
  border: 1px solid rgba(232, 220, 199, .96) !important;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, .76) !important;
  box-shadow: 0 10px 28px rgba(10, 22, 37, .045), inset 0 1px 0 rgba(255,255,255,.9) !important;
  position: relative !important;
  z-index: 1 !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-shell > .jood-svg-icon {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  align-self: center !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 15px !important;
  border: 1px solid rgba(232, 220, 199, .96) !important;
  background: #2B170F !important;
  color: var(--jood-store-gold) !important;
  padding: 10px !important;
  box-shadow: 0 8px 18px rgba(10, 22, 37, .10) !important;
}

#jood-app.jood-app-shell-view-store form.jood-store-filters,
#jood-app.jood-app-shell-view-store .jood-store-filters {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(260px, 1fr) auto !important;
  align-items: end !important;
  gap: 10px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search {
  min-width: 0 !important;
  height: 48px !important;
  padding: 0 14px !important;
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 10px !important;
  border: 1px solid rgba(214, 181, 109, .82) !important;
  border-radius: 17px !important;
  background: #FFFFFF !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.86), 0 5px 13px rgba(10,22,37,.025) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search .jood-svg-icon {
  width: 18px !important;
  height: 18px !important;
  color: var(--jood-store-brown) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search input {
  width: 100% !important;
  height: 46px !important;
  min-height: 46px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #2B170F !important;
  box-shadow: none !important;
  font-size: 13px !important;
  line-height: 46px !important;
  font-weight: 800 !important;
  outline: none !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search input::placeholder {
  color: rgba(117, 108, 96, .70) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects {
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(136px, 156px)) auto auto !important;
  align-items: end !important;
  gap: 8px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects label {
  min-width: 0 !important;
  margin: 0 !important;
  display: grid !important;
  gap: 5px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects label > span {
  padding-inline: 6px !important;
  color: var(--jood-store-brown) !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects select {
  width: 100% !important;
  height: 48px !important;
  min-height: 48px !important;
  padding: 0 13px !important;
  border: 1px solid rgba(214, 181, 109, .82) !important;
  border-radius: 16px !important;
  background-color: #FFFFFF !important;
  color: #2B170F !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.86), 0 5px 13px rgba(10,22,37,.025) !important;
  font-size: 12px !important;
  line-height: 48px !important;
  font-weight: 900 !important;
  outline: none !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects :where(select:focus, input:focus),
#jood-app.jood-app-shell-view-store .jood-store-filter-search:focus-within {
  border-color: rgba(214, 181, 109, .92) !important;
  box-shadow: 0 0 0 4px rgba(214,181,109,.14), inset 0 1px 0 rgba(255,255,255,.86) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects .jood-btn,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects button,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects a.jood-btn {
  min-width: 76px !important;
  height: 48px !important;
  min-height: 48px !important;
  padding: 0 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 16px !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  text-align: center !important;
  box-shadow: none !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects .jood-btn-primary,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects button[type="submit"] {
  border: 1px solid #2B170F !important;
  background: #2B170F !important;
  color: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects .jood-btn-ghost,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects a.jood-btn-ghost {
  border: 1px solid rgba(214, 181, 109, .82) !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
}

/* =========================================================
   05.06 SEARCH NOTE + PAGINATION
========================================================= */

#jood-app.jood-app-shell-view-store .jood-search-result-note {
  width: 100% !important;
  min-height: 42px !important;
  margin: 0 !important;
  padding: 8px 12px !important;
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  border: 1px solid rgba(214, 181, 109, .32) !important;
  border-radius: 16px !important;
  background: rgba(245, 234, 216, .72) !important;
  color: #2B170F !important;
  font-size: 12px !important;
  font-weight: 850 !important;
}

#jood-app.jood-app-shell-view-store .jood-search-result-note strong {
  color: var(--jood-store-brown) !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-store .jood-search-result-note a {
  margin-inline-start: auto !important;
  min-height: 30px !important;
  padding: 6px 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  border-radius: 999px !important;
  background: #FFFFFF !important;
  border: 1px solid rgba(214, 181, 109, .82) !important;
  color: #2B170F !important;
  font-size: 11px !important;
  font-weight: 950 !important;
}

/* =========================================================
   05.07 PRODUCT GRID — NO EMPTY STRETCH
========================================================= */

#jood-app.jood-app-shell-view-store .jood-products-grid,
#jood-app.jood-app-shell-view-store ul.products {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 2px !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(230px, 268px)) !important;
  justify-content: start !important;
  align-items: stretch !important;
  gap: 14px !important;
  list-style: none !important;
}

#jood-app.jood-app-shell-view-store .jood-products-grid > *,
#jood-app.jood-app-shell-view-store ul.products > * {
  min-width: 0 !important;
  width: 100% !important;
  margin: 0 !important;
}

/* =========================================================
   05.08 PRODUCT CARD — ROYAL APP TILE
========================================================= */

#jood-app.jood-app-shell-view-store .jood-product-card,
#jood-app.jood-app-shell-view-store ul.products li.product {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-rows: auto 1fr !important;
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid rgba(214, 181, 109, .72) !important;
  border-radius: 24px !important;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%) !important;
  color: #2B170F !important;
  box-shadow: 0 14px 34px rgba(10, 22, 37, .07), inset 0 1px 0 rgba(255,255,255,.90) !important;
  transition: transform .22s var(--jood-store-ease), box-shadow .22s var(--jood-store-ease), border-color .22s var(--jood-store-ease) !important;
}

#jood-app.jood-app-shell-view-store .jood-product-card:hover,
#jood-app.jood-app-shell-view-store ul.products li.product:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(214, 181, 109, .68) !important;
  box-shadow: 0 22px 52px rgba(10, 22, 37, .11), inset 0 1px 0 rgba(255,255,255,.90) !important;
}

#jood-app.jood-app-shell-view-store .jood-product-card::after {
  content: "";
  position: absolute;
  inset-inline: 16px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, transparent, rgba(214,181,109,.72), transparent);
  opacity: .0;
  transition: opacity .22s var(--jood-store-ease) !important;
  pointer-events: none;
}

#jood-app.jood-app-shell-view-store .jood-product-card:hover::after {
  opacity: 1 !important;
}

#jood-app.jood-app-shell-view-store .jood-product-media {
  width: 100% !important;
  aspect-ratio: 1 / .72 !important;
  min-height: 0 !important;
  max-height: 210px !important;
  display: block !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 22px 22px 18px 18px !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(214,181,109,.22), transparent 38%),
    linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%) !important;
}

#jood-app.jood-app-shell-view-store .jood-product-media img,
#jood-app.jood-app-shell-view-store ul.products li.product img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 10px !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: translateZ(0) !important;
  transition: transform .34s var(--jood-store-ease), filter .34s var(--jood-store-ease) !important;
}

#jood-app.jood-app-shell-view-store .jood-product-card:hover .jood-product-media img {
  transform: scale(1.035) translateY(-2px) !important;
  filter: saturate(1.04) contrast(1.03) !important;
}

#jood-app.jood-app-shell-view-store .jood-product-media i {
  position: absolute !important;
  inset-inline-start: 12px !important;
  bottom: 12px !important;
  z-index: 4 !important;
  width: 42px !important;
  height: 42px !important;
  display: grid !important;
  place-items: center !important;
  border: 1px solid rgba(255,255,255,.40) !important;
  border-radius: 15px !important;
  background: #2B170F !important;
  color: #D7B179 !important;
  box-shadow: 0 12px 24px rgba(10, 22, 37, .22) !important;
}

#jood-app.jood-app-shell-view-store .jood-product-media i::before,
#jood-app.jood-app-shell-view-store .jood-product-media i::after {
  content: "" !important;
  position: absolute !important;
  inset: 50% auto auto 50% !important;
  transform: translate(-50%, -50%) !important;
  border-radius: 999px !important;
  background: currentColor !important;
}

#jood-app.jood-app-shell-view-store .jood-product-media i::before {
  width: 16px !important;
  height: 2px !important;
}

#jood-app.jood-app-shell-view-store .jood-product-media i::after {
  width: 2px !important;
  height: 16px !important;
}

#jood-app.jood-app-shell-view-store .jood-product-badges,
#jood-app.jood-app-shell-view-store .jood-badges,
#jood-app.jood-app-shell-view-store .onsale {
  position: absolute !important;
  z-index: 5 !important;
  top: 10px !important;
  inset-inline-end: 10px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 5px !important;
  max-width: calc(100% - 20px) !important;
}

#jood-app.jood-app-shell-view-store .jood-product-badge,
#jood-app.jood-app-shell-view-store .jood-badge,
#jood-app.jood-app-shell-view-store .onsale {
  min-height: 24px !important;
  padding: 5px 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 999px !important;
  background: rgba(10, 22, 37, .92) !important;
  color: #FFFFFF !important;
  box-shadow: 0 9px 18px rgba(10,22,37,.15) !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-store .jood-product-info {
  min-width: 0 !important;
  padding: 13px 13px 14px !important;
  display: grid !important;
  grid-template-rows: auto auto 1fr auto auto !important;
  align-content: start !important;
  gap: 10px !important;
}

#jood-app.jood-app-shell-view-store .jood-product-cat {
  width: fit-content !important;
  max-width: 100% !important;
  min-height: 26px !important;
  padding: 5px 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  border: 1px solid rgba(214, 181, 109, .34) !important;
  border-radius: 999px !important;
  background: rgba(245, 234, 216, .72) !important;
  color: #2B170F !important;
  font-size: 10.5px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

#jood-app.jood-app-shell-view-store .jood-product-title,
#jood-app.jood-app-shell-view-store .jood-product-title a,
#jood-app.jood-app-shell-view-store ul.products li.product .woocommerce-loop-product__title {
  min-width: 0 !important;
  min-height: 39px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  color: #2B170F !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  font-weight: 950 !important;
  letter-spacing: -.2px !important;
  text-decoration: none !important;
}

#jood-app.jood-app-shell-view-store .jood-product-title:hover {
  color: #2B170F !important;
}

#jood-app.jood-app-shell-view-store .jood-product-excerpt {
  margin: 0 !important;
  color: var(--jood-store-muted) !important;
  font-size: 12px !important;
  line-height: 1.65 !important;
  font-weight: 750 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-store .jood-product-price,
#jood-app.jood-app-shell-view-store .jood-price,
#jood-app.jood-app-shell-view-store .price,
#jood-app.jood-app-shell-view-store ul.products li.product .price {
  min-width: 0 !important;
  margin: 2px 0 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: baseline !important;
  flex-wrap: wrap !important;
  gap: 5px !important;
  color: #2B170F !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-store .jood-product-price .amount,
#jood-app.jood-app-shell-view-store .jood-price .amount,
#jood-app.jood-app-shell-view-store .price .amount {
  color: #2B170F !important;
  font-size: 16px !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-store .jood-product-price del,
#jood-app.jood-app-shell-view-store .price del {
  color: rgba(117, 108, 96, .70) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
}

#jood-app.jood-app-shell-view-store .jood-product-price ins,
#jood-app.jood-app-shell-view-store .price ins {
  color: #2B170F !important;
  text-decoration: none !important;
}

#jood-app.jood-app-shell-view-store .jood-product-actions {
  width: 100% !important;
  min-width: 0 !important;
  margin-top: 2px !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 82px !important;
  align-items: center !important;
  gap: 8px !important;
}

#jood-app.jood-app-shell-view-store .jood-product-actions .jood-btn,
#jood-app.jood-app-shell-view-store .jood-product-card .button,
#jood-app.jood-app-shell-view-store .jood-product-card button,
#jood-app.jood-app-shell-view-store .jood-product-card input[type="submit"] {
  width: 100% !important;
  min-width: 0 !important;
  height: 42px !important;
  min-height: 42px !important;
  padding: 0 13px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 15px !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  text-align: center !important;
  white-space: nowrap !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

#jood-app.jood-app-shell-view-store .jood-product-actions .jood-btn-primary,
#jood-app.jood-app-shell-view-store .jood-product-card .jood-add-cart,
#jood-app.jood-app-shell-view-store .jood-product-card button.jood-add-cart {
  border: 1px solid #2B170F !important;
  background: linear-gradient(135deg, #2B170F 0%, #2B170F 100%) !important;
  color: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-store .jood-product-actions .jood-btn-primary:hover,
#jood-app.jood-app-shell-view-store .jood-product-card .jood-add-cart:hover {
  transform: translateY(-1px) !important;
  border-color: #2B170F !important;
  background: linear-gradient(135deg, #2B170F 0%, #3A2116 100%) !important;
}

#jood-app.jood-app-shell-view-store .jood-product-actions .jood-btn-ghost,
#jood-app.jood-app-shell-view-store .jood-product-actions a.jood-btn-ghost {
  border: 1px solid rgba(214, 181, 109, .82) !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
}

#jood-app.jood-app-shell-view-store .jood-product-actions .jood-btn-ghost:hover {
  border-color: rgba(214, 181, 109, .66) !important;
  background: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-store .jood-add-cart.is-added {
  background: linear-gradient(135deg, #B9854D 0%, #D7B179 100%) !important;
  border-color: rgba(214,181,109,.92) !important;
  color: #2B170F !important;
}

/* =========================================================
   05.09 EMPTY STATE + PAGINATION
========================================================= */

#jood-app.jood-app-shell-view-store .jood-empty-state {
  width: min(520px, 100%) !important;
  margin: 8px auto !important;
  padding: 28px !important;
  display: grid !important;
  place-items: center !important;
  gap: 10px !important;
  text-align: center !important;
  border: 1px solid rgba(232,220,199,.96) !important;
  border-radius: 24px !important;
  background: #FFFFFF !important;
  box-shadow: 0 14px 34px rgba(10,22,37,.06) !important;
}

#jood-app.jood-app-shell-view-store .jood-pagination {
  width: 100% !important;
  margin: 6px 0 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
}

#jood-app.jood-app-shell-view-store .jood-pagination :where(a, span) {
  min-width: 38px !important;
  height: 38px !important;
  padding: 0 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(214,181,109,.82) !important;
  border-radius: 13px !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
  font-size: 12px !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-store .jood-pagination .current {
  background: #2B170F !important;
  border-color: #2B170F !important;
  color: #FFFFFF !important;
}

/* =========================================================
   05.10 MOBILE APP EXPERIENCE
========================================================= */

@media (max-width: 1024px) {
  #jood-app.jood-app-shell-view-store .jood-app-main {
    width: min(100% - 22px, 920px) !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-topbar {
    grid-template-columns: 1fr !important;
    grid-template-areas: "copy" "meta" !important;
    min-height: 0 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-topbar__meta {
    width: 100% !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  #jood-app.jood-app-shell-view-store form.jood-store-filters,
  #jood-app.jood-app-shell-view-store .jood-store-filters {
    grid-template-columns: 1fr !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects {
    grid-template-columns: repeat(3, minmax(0, 1fr)) repeat(2, minmax(88px, auto)) !important;
  }
}

@media (max-width: 782px) {
  #jood-app.jood-app-shell-view-store {
    background:
      radial-gradient(circle at 90% -8%, rgba(214,181,109,.16), transparent 34%),
      linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 62%, #FFFFFF 100%) !important;
  }

  #jood-app.jood-app-shell-view-store .jood-app-main {
    width: calc(100% - 18px) !important;
    padding-top: 9px !important;
    padding-bottom: max(100px, var(--jood-main-bottom, 70px)) !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-app {
    gap: 10px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-topbar {
    padding: 16px !important;
    border-radius: 24px !important;
    gap: 14px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-topbar h1 {
    font-size: 34px !important;
    letter-spacing: -.8px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-topbar p {
    font-size: 12.5px !important;
    line-height: 1.75 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-topbar__meta {
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-meta-card {
    min-height: 68px !important;
    padding: 10px 8px !important;
    border-radius: 17px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-meta-card strong {
    font-size: 25px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-meta-card span {
    font-size: 10px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-meta-card .jood-svg-icon {
    width: 24px !important;
    height: 24px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-tabs {
    min-height: 58px !important;
    padding: 7px !important;
    border-radius: 20px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-tab {
    min-width: 132px !important;
    min-height: 44px !important;
    border-radius: 15px !important;
    font-size: 11.5px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-products-shell {
    padding: 12px !important;
    border-radius: 24px !important;
    gap: 12px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-toolbar {
    align-items: end !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-toolbar__title h2 {
    font-size: 25px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-toolbar__count {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-shell {
    grid-template-columns: 1fr !important;
    padding: 10px !important;
    border-radius: 20px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-shell > .jood-svg-icon {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects label > span {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-search,
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects select,
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects .jood-btn,
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects button,
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects a.jood-btn {
    height: 46px !important;
    min-height: 46px !important;
    border-radius: 15px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects .jood-btn-primary,
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects .jood-btn-ghost {
    width: 100% !important;
  }

  #jood-app.jood-app-shell-view-store .jood-products-grid,
  #jood-app.jood-app-shell-view-store ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    justify-content: stretch !important;
    gap: 10px !important;
    padding: 0 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-card,
  #jood-app.jood-app-shell-view-store ul.products li.product {
    border-radius: 20px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-media {
    aspect-ratio: 1 / .78 !important;
    max-height: 176px !important;
    border-radius: 19px 19px 16px 16px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-media img,
  #jood-app.jood-app-shell-view-store ul.products li.product img {
    padding: 8px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-media i {
    width: 36px !important;
    height: 36px !important;
    border-radius: 13px !important;
    inset-inline-start: 9px !important;
    bottom: 9px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-info {
    padding: 10px !important;
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-cat {
    min-height: 24px !important;
    padding: 5px 8px !important;
    font-size: 9.5px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-title,
  #jood-app.jood-app-shell-view-store .jood-product-title a {
    min-height: 35px !important;
    font-size: 12.5px !important;
    line-height: 1.4 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-price,
  #jood-app.jood-app-shell-view-store .jood-product-price .amount,
  #jood-app.jood-app-shell-view-store .price,
  #jood-app.jood-app-shell-view-store .price .amount {
    font-size: 14px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-actions {
    grid-template-columns: 1fr !important;
    gap: 7px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-actions .jood-btn,
  #jood-app.jood-app-shell-view-store .jood-product-card .button,
  #jood-app.jood-app-shell-view-store .jood-product-card button {
    height: 40px !important;
    min-height: 40px !important;
    font-size: 11.5px !important;
    border-radius: 14px !important;
  }

  #jood-app.jood-app-shell-view-store.jood-app-with-bottom-nav .jood-app-bottom-nav {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    position: fixed !important;
    z-index: var(--jood-bottom-nav-z, 9998) !important;
    inset-inline: 10px !important;
    bottom: max(10px, env(safe-area-inset-bottom)) !important;
    min-height: 64px !important;
    padding: 7px !important;
    border: 1px solid rgba(220, 204, 184, .85) !important;
    border-radius: 22px !important;
    background: rgba(255, 255, 255, .92) !important;
    box-shadow: 0 16px 42px rgba(10, 22, 37, .14) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
  }

  #jood-app.jood-app-shell-view-store .jood-app-bottom-nav a {
    min-width: 0 !important;
    min-height: 50px !important;
    display: grid !important;
    place-items: center !important;
    align-content: center !important;
    gap: 3px !important;
    position: relative !important;
    border-radius: 16px !important;
    color: #7B6758 !important;
    font-size: 10px !important;
    font-weight: 950 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-app-bottom-nav a.is-active {
    background: #2B170F !important;
    color: #FFFFFF !important;
  }

  #jood-app.jood-app-shell-view-store .jood-app-bottom-nav .jood-svg-icon {
    width: 19px !important;
    height: 19px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-app-bottom-nav strong {
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  #jood-app.jood-app-shell-view-store .jood-app-bottom-nav .jood-cart-count {
    position: absolute !important;
    top: 4px !important;
    inset-inline-end: 9px !important;
    min-width: 17px !important;
    height: 17px !important;
    padding: 0 5px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: #B9854D !important;
    color: #2B170F !important;
    font-size: 9px !important;
    line-height: 1 !important;
    font-style: normal !important;
    font-weight: 950 !important;
  }
}

@media (max-width: 420px) {
  #jood-app.jood-app-shell-view-store .jood-store-topbar h1 {
    font-size: 30px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-meta-card strong {
    font-size: 22px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-meta-card.is-cart span {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-store .jood-products-grid,
  #jood-app.jood-app-shell-view-store ul.products {
    grid-template-columns: 1fr !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-card {
    width: min(100%, 330px) !important;
    justify-self: center !important;
  }
}

/* =========================================================
   05.11 ACCESSIBILITY / MOTION GUARDS
========================================================= */

#jood-app.jood-app-shell-view-store a:focus-visible,
#jood-app.jood-app-shell-view-store button:focus-visible,
#jood-app.jood-app-shell-view-store input:focus-visible,
#jood-app.jood-app-shell-view-store select:focus-visible {
  outline: 3px solid rgba(214, 181, 109, .36) !important;
  outline-offset: 3px !important;
}

@media (prefers-reduced-motion: reduce) {
  #jood-app.jood-app-shell-view-store *,
  #jood-app.jood-app-shell-view-store *::before,
  #jood-app.jood-app-shell-view-store *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}

body #jood-app.jood-app-shell-view-store .jood-store-app,
body #jood-app.jood-app-shell-view-store .jood-store-topbar,
body #jood-app.jood-app-shell-view-store .jood-store-tabs,
body #jood-app.jood-app-shell-view-store .jood-store-products-shell,
body #jood-app.jood-app-shell-view-store .jood-products-grid,
body #jood-app.jood-app-shell-view-store .jood-product-card {
  float: none !important;
  clear: none !important;
}

/* =========================================================
   06 CATEGORY PAGE
   Paste the next batch directly under this line
========================================================= */


/* =========================================================
   05 STORE PAGE — POLISH OVERRIDES V2
   Compact premium topbar + refined store controls + card polish
========================================================= */

#jood-app.jood-app-shell-view-store {
  background:
    radial-gradient(circle at 88% 0%, rgba(214, 181, 109, .10), transparent 28%),
    linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 42%, #FFFFFF 100%) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-app {
  gap: 10px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-topbar {
  min-height: 132px !important;
  padding: clamp(14px, 1.8vw, 22px) !important;
  gap: 16px !important;
  border-radius: 28px !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  background:
    radial-gradient(circle at 10% 35%, rgba(214, 181, 109, .18), transparent 26%),
    linear-gradient(135deg, #24262f 0%, #2B170F 44%, #3A2116 100%) !important;
  box-shadow: 0 16px 34px rgba(10,22,37,.14), inset 0 1px 0 rgba(255,255,255,.10) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-topbar::before {
  opacity: .11 !important;
  background-size: 28px 28px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-topbar::after {
  inset-inline: 20px !important;
  height: 2px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-topbar__copy {
  gap: 6px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-kicker {
  min-height: 24px !important;
  padding: 4px 10px !important;
  font-size: 10px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-topbar h1 {
  font-size: clamp(30px, 3.6vw, 54px) !important;
  line-height: .95 !important;
  letter-spacing: -1.2px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-topbar p {
  width: min(560px, 100%) !important;
  font-size: clamp(12px, 1vw, 14px) !important;
  line-height: 1.7 !important;
  color: rgba(255,255,255,.78) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-topbar__meta {
  grid-template-columns: repeat(3, minmax(84px, 108px)) !important;
  gap: 10px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-meta-card {
  min-height: 84px !important;
  padding: 10px 10px !important;
  border-radius: 20px !important;
  gap: 3px !important;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05)) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-meta-card strong {
  font-size: 22px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-meta-card span {
  font-size: 10px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-meta-card .jood-svg-icon {
  width: 26px !important;
  height: 26px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-meta-card.is-cart {
  background: linear-gradient(135deg, #dbc08e 0%, #B9854D 100%) !important;
  border-color: rgba(255,255,255,.18) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-tabs {
  min-height: 58px !important;
  padding: 7px !important;
  border-radius: 22px !important;
  background: rgba(255,255,255,.78) !important;
  box-shadow: 0 8px 24px rgba(10,22,37,.05) !important;
  gap: 8px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-tab {
  min-height: 42px !important;
  padding: 8px 12px !important;
  border-radius: 16px !important;
  font-size: 12px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-products-shell {
  padding: 14px !important;
  border-radius: 28px !important;
  box-shadow: 0 12px 34px rgba(10,22,37,.055) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-toolbar {
  margin-bottom: 10px !important;
  gap: 12px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-toolbar__title h2 {
  font-size: clamp(24px, 2.4vw, 36px) !important;
  line-height: 1.05 !important;
}

#jood-app.jood-app-shell-view-store .jood-store-toolbar__count {
  min-height: 48px !important;
  padding: 10px 12px !important;
  border-radius: 16px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-shell {
  padding: 10px !important;
  border-radius: 22px !important;
  background: linear-gradient(180deg, #FFFFFF 0%, #fff7ed 100%) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-shell > .jood-svg-icon {
  width: 42px !important;
  height: 42px !important;
  border-radius: 14px !important;
}

#jood-app.jood-app-shell-view-store form.jood-store-filters {
  gap: 10px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects {
  gap: 10px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search input,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects select,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects button,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects .button,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="submit"],
#jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="reset"] {
  min-height: 44px !important;
  border-radius: 16px !important;
}

#jood-app.jood-app-shell-view-store .jood-products-grid {
  gap: 14px !important;
}

#jood-app.jood-app-shell-view-store .jood-product-card {
  border-radius: 22px !important;
  border-color: rgba(220, 204, 184, .86) !important;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%) !important;
  box-shadow: 0 10px 26px rgba(10,22,37,.05) !important;
}

#jood-app.jood-app-shell-view-store .jood-product-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 18px 38px rgba(10,22,37,.09) !important;
}

#jood-app.jood-app-shell-view-store .jood-product-media {
  aspect-ratio: 1 / .82 !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg, #fff9ef 0%, #f7efe1 100%) !important;
}

#jood-app.jood-app-shell-view-store .jood-product-media img {
  object-fit: contain !important;
  padding: 8px !important;
}

#jood-app.jood-app-shell-view-store .jood-product-media i {
  width: 44px !important;
  height: 44px !important;
  border-radius: 16px !important;
  background: linear-gradient(180deg, #323848 0%, #2B170F 100%) !important;
  color: #F6E9D8 !important;
  border-color: rgba(255,255,255,.12) !important;
  box-shadow: 0 12px 24px rgba(10,22,37,.16) !important;
}

#jood-app.jood-app-shell-view-store .jood-product-info {
  gap: 10px !important;
  padding: 12px !important;
}

#jood-app.jood-app-shell-view-store .jood-product-cat {
  background: #fbf2e2 !important;
  color: #9a6a3e !important;
  border: 1px solid rgba(214,181,109,.24) !important;
}

#jood-app.jood-app-shell-view-store .jood-product-title {
  font-size: 16px !important;
  line-height: 1.5 !important;
  min-height: auto !important;
}

#jood-app.jood-app-shell-view-store .jood-product-price,
#jood-app.jood-app-shell-view-store .jood-product-price .amount {
  font-size: 15px !important;
}

#jood-app.jood-app-shell-view-store .jood-product-actions {
  grid-template-columns: 88px minmax(0, 1fr) !important;
  gap: 8px !important;
}

#jood-app.jood-app-shell-view-store .jood-product-actions .jood-btn {
  min-height: 42px !important;
  border-radius: 15px !important;
  font-size: 12px !important;
}

#jood-app.jood-app-shell-view-store .jood-product-actions .jood-btn-primary,
#jood-app.jood-app-shell-view-store .jood-add-cart,
#jood-app.jood-app-shell-view-store .add_to_cart_button,
#jood-app.jood-app-shell-view-store .single_add_to_cart_button {
  background: linear-gradient(135deg, #2B170F 0%, #2B170F 100%) !important;
  color: #FFFFFF !important;
  border-color: rgba(10,22,37,.96) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08) !important;
}

#jood-app.jood-app-shell-view-store .jood-product-actions .jood-btn-primary:hover,
#jood-app.jood-app-shell-view-store .jood-add-cart:hover,
#jood-app.jood-app-shell-view-store .add_to_cart_button:hover,
#jood-app.jood-app-shell-view-store .single_add_to_cart_button:hover {
  background: linear-gradient(135deg, #293348 0%, #182030 100%) !important;
}

#jood-app.jood-app-shell-view-store .jood-product-actions .jood-btn-ghost {
  background: #FFFFFF !important;
  color: #2B170F !important;
  border-color: rgba(214,181,109,.82) !important;
}

#jood-app.jood-app-shell-view-store .jood-search-result-note {
  border-radius: 18px !important;
}

@media (max-width: 1120px) {
  #jood-app.jood-app-shell-view-store .jood-store-topbar {
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-areas:
      "copy"
      "meta" !important;
    min-height: auto !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-topbar__copy {
    justify-items: start !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-topbar__meta {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  #jood-app.jood-app-shell-view-store .jood-app-main {
    width: min(100%, calc(100% - 12px)) !important;
    padding-top: 6px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-app {
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-topbar {
    padding: 12px !important;
    border-radius: 22px !important;
    gap: 12px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-kicker {
    order: -1;
  }

  #jood-app.jood-app-shell-view-store .jood-store-topbar h1 {
    font-size: 36px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-topbar p {
    font-size: 12px !important;
    line-height: 1.65 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-topbar__meta {
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-meta-card {
    min-height: 72px !important;
    border-radius: 18px !important;
    padding: 8px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-meta-card strong {
    font-size: 18px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-tabs {
    padding: 6px !important;
    min-height: 52px !important;
    border-radius: 18px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-tab {
    min-height: 38px !important;
    padding: 7px 10px !important;
    border-radius: 14px !important;
    font-size: 11px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-products-shell {
    padding: 10px !important;
    border-radius: 22px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-toolbar__title h2 {
    font-size: 30px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-shell {
    padding: 8px !important;
    border-radius: 18px !important;
  }

  #jood-app.jood-app-shell-view-store form.jood-store-filters {
    display: grid !important;
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-search,
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-card {
    border-radius: 18px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-media {
    aspect-ratio: 1 / .9 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-info {
    padding: 10px !important;
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-title {
    font-size: 14px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-actions {
    grid-template-columns: 1fr !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-actions .jood-btn,
  #jood-app.jood-app-shell-view-store .jood-product-actions .jood-btn-ghost,
  #jood-app.jood-app-shell-view-store .jood-product-actions .jood-btn-primary {
    width: 100% !important;
  }
}

@media (max-width: 420px) {
  #jood-app.jood-app-shell-view-store .jood-store-topbar h1 {
    font-size: 32px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-meta-card span {
    font-size: 9px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-products-grid {
    grid-template-columns: 1fr !important;
  }
}


/* =========================================================
   05 STORE PAGE — ROYAL POLISH PATCH V3
   Fixes from live screenshots:
   - White text/icon on cart meta card.
   - White number/text inside active category tab.
   - Custom premium selects instead of Windows XP native look.
   - Centered product copy and balanced card.
   - Non-cropped product image.
   - Better plus button position/color.
   - More creative compact topbar while keeping mobile stable.
========================================================= */

/* ---------- Topbar: tighter, more premium, less heavy ---------- */

#jood-app.jood-app-shell-view-store .jood-store-topbar {
  min-height: 118px !important;
  padding: clamp(12px, 1.55vw, 20px) !important;
  border-radius: 26px !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  background:
    linear-gradient(90deg, rgba(214,181,109,.12), transparent 23%, transparent 76%, rgba(214,181,109,.10)),
    radial-gradient(circle at 11% 36%, rgba(214,181,109,.20), transparent 25%),
    radial-gradient(circle at 92% 28%, rgba(255,255,255,.08), transparent 22%),
    linear-gradient(135deg, #24252b 0%, #202839 44%, #151b29 100%) !important;
  box-shadow:
    0 16px 34px rgba(10, 22, 37, .13),
    inset 0 1px 0 rgba(255,255,255,.10),
    inset 0 -1px 0 rgba(214,181,109,.20) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-topbar::before {
  opacity: .085 !important;
  background-size: 26px 26px !important;
  mask-image: linear-gradient(90deg, transparent 0%, #2B170F 14%, #2B170F 86%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #2B170F 14%, #2B170F 86%, transparent 100%) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-topbar::after {
  inset-inline: clamp(18px, 3vw, 42px) !important;
  height: 2px !important;
  background:
    linear-gradient(90deg, transparent, rgba(214,181,109,.0), rgba(214,181,109,.95), rgba(234,215,183,.95), rgba(214,181,109,.0), transparent) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-topbar__copy {
  gap: 5px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-kicker {
  min-height: 24px !important;
  padding: 4px 10px !important;
  background: rgba(255,255,255,.075) !important;
  border-color: rgba(214,181,109,.45) !important;
  color: #f7dfb4 !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 6px 16px rgba(0,0,0,.12) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-topbar h1 {
  font-size: clamp(30px, 3.35vw, 50px) !important;
  line-height: .96 !important;
  letter-spacing: -1.25px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-topbar p {
  max-width: 620px !important;
  font-size: clamp(12px, .95vw, 14px) !important;
  line-height: 1.55 !important;
  color: rgba(255,255,255,.80) !important;
}

/* ---------- Topbar meta cards: balanced + white active text ---------- */

#jood-app.jood-app-shell-view-store .jood-store-topbar__meta {
  grid-template-columns: repeat(3, minmax(76px, 100px)) !important;
  gap: 9px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-meta-card {
  min-height: 72px !important;
  padding: 9px 10px !important;
  border-radius: 18px !important;
  display: grid !important;
  grid-template-rows: auto auto !important;
  place-items: center !important;
  gap: 2px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.045)) !important;
  border-color: rgba(255,255,255,.14) !important;
  color: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-store .jood-store-meta-card strong {
  color: #FFFFFF !important;
  font-size: 21px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
}

#jood-app.jood-app-shell-view-store .jood-store-meta-card span {
  color: rgba(255,255,255,.86) !important;
  opacity: 1 !important;
  font-size: 10px !important;
  font-weight: 900 !important;
}

#jood-app.jood-app-shell-view-store .jood-store-meta-card.is-cart {
  grid-template-columns: auto auto !important;
  grid-template-rows: 1fr !important;
  justify-content: center !important;
  align-content: center !important;
  gap: 8px !important;
  background:
    linear-gradient(135deg, #d6b77f 0%, #c19a63 100%) !important;
  color: #FFFFFF !important;
  text-shadow: 0 1px 0 rgba(0,0,0,.12) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-meta-card.is-cart span,
#jood-app.jood-app-shell-view-store .jood-store-meta-card.is-cart strong,
#jood-app.jood-app-shell-view-store .jood-store-meta-card.is-cart .jood-svg-icon {
  color: #FFFFFF !important;
  opacity: 1 !important;
}

#jood-app.jood-app-shell-view-store .jood-store-meta-card.is-cart .jood-svg-icon {
  width: 29px !important;
  height: 29px !important;
  padding: 5px !important;
  border-radius: 12px !important;
  background: rgba(10,22,37,.18) !important;
  stroke-width: 2.2 !important;
}

#jood-app.jood-app-shell-view-store .jood-store-meta-card:not(.is-cart)::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.045);
  pointer-events: none;
}

/* ---------- Category tabs: active chip number and text must be white ---------- */

#jood-app.jood-app-shell-view-store .jood-store-tabs {
  align-items: center !important;
  border-color: rgba(220,204,184,.78) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.80)) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-tab.is-active,
#jood-app.jood-app-shell-view-store .jood-store-tab.is-active:hover {
  background: linear-gradient(135deg, #2B170F 0%, #141a25 100%) !important;
  border-color: rgba(10,22,37,.95) !important;
  color: #FFFFFF !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 8px 20px rgba(10,22,37,.12) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-tab.is-active span,
#jood-app.jood-app-shell-view-store .jood-store-tab.is-active strong,
#jood-app.jood-app-shell-view-store .jood-store-tab.is-active .jood-svg-icon {
  color: #FFFFFF !important;
  opacity: 1 !important;
}

#jood-app.jood-app-shell-view-store .jood-store-tab.is-active em {
  background: rgba(255,255,255,.16) !important;
  color: #FFFFFF !important;
  border-color: rgba(255,255,255,.16) !important;
}

/* ---------- Filters: kill native Windows XP select look ---------- */

#jood-app.jood-app-shell-view-store .jood-store-filter-shell {
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,248,239,.88)) !important;
  border-color: rgba(220,204,184,.82) !important;
  box-shadow:
    0 10px 28px rgba(10,22,37,.045),
    inset 0 1px 0 rgba(255,255,255,.78) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects label {
  position: relative !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects label::after {
  content: "";
  position: absolute;
  inset-inline-start: 14px;
  bottom: 18px;
  width: 8px;
  height: 8px;
  border-inline-end: 2px solid #2B170F;
  border-bottom: 2px solid #2B170F;
  transform: rotate(45deg);
  pointer-events: none;
  opacity: .86;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  padding-inline: 16px 36px !important;
  background:
    linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%) !important;
  color: #2B170F !important;
  border: 1px solid rgba(214,181,109,.82) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.92),
    0 4px 12px rgba(10,22,37,.025) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects select:focus {
  border-color: rgba(214,181,109,.95) !important;
  box-shadow:
    0 0 0 4px rgba(214,181,109,.14),
    inset 0 1px 0 rgba(255,255,255,.92) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects select option {
  color: #2B170F !important;
  background: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search input {
  background:
    linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%) !important;
  border-color: rgba(214,181,109,.82) !important;
  color: #2B170F !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search .jood-svg-icon,
#jood-app.jood-app-shell-view-store .jood-store-filter-search button .jood-svg-icon {
  color: #2B170F !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-shell > .jood-svg-icon {
  background:
    linear-gradient(180deg, #2B170F 0%, #151b26 100%) !important;
  color: #F6E9D8 !important;
  box-shadow:
    0 9px 18px rgba(10,22,37,.12),
    inset 0 1px 0 rgba(255,255,255,.10) !important;
}

/* ---------- Product card: centered, refined, no crop ---------- */

#jood-app.jood-app-shell-view-store .jood-product-card {
  text-align: center !important;
  justify-items: stretch !important;
  background:
    linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 55%, #FFFFFF 100%) !important;
}

#jood-app.jood-app-shell-view-store .jood-product-media {
  aspect-ratio: 1 / .78 !important;
  display: grid !important;
  place-items: center !important;
  overflow: visible !important;
  background:
    radial-gradient(circle at 50% 22%, rgba(214,181,109,.16), transparent 46%),
    linear-gradient(180deg, #FFF8EF 0%, #FFFFFF 100%) !important;
}

#jood-app.jood-app-shell-view-store .jood-product-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  padding: 10px !important;
  transform: none !important;
}

#jood-app.jood-app-shell-view-store .jood-product-card:hover .jood-product-media img {
  transform: scale(1.025) !important;
}

#jood-app.jood-app-shell-view-store .jood-product-info {
  justify-items: center !important;
  text-align: center !important;
  align-content: start !important;
}

#jood-app.jood-app-shell-view-store .jood-product-cat {
  margin-inline: auto !important;
  justify-content: center !important;
  text-align: center !important;
}

#jood-app.jood-app-shell-view-store .jood-product-title {
  width: 100% !important;
  text-align: center !important;
  justify-self: center !important;
}

#jood-app.jood-app-shell-view-store .jood-product-price,
#jood-app.jood-app-shell-view-store .jood-price,
#jood-app.jood-app-shell-view-store .price {
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
}

#jood-app.jood-app-shell-view-store .jood-product-actions {
  width: 100% !important;
  align-self: end !important;
}

/* ---------- Plus button: white plus + better premium position ---------- */

#jood-app.jood-app-shell-view-store .jood-product-media i {
  inset-inline-start: 14px !important;
  bottom: 14px !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 15px !important;
  background:
    linear-gradient(180deg, #242b3b 0%, #171d2a 100%) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  box-shadow:
    0 14px 26px rgba(10,22,37,.18),
    inset 0 1px 0 rgba(255,255,255,.14) !important;
}

#jood-app.jood-app-shell-view-store .jood-product-media i::before,
#jood-app.jood-app-shell-view-store .jood-product-media i::after {
  background: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-store .jood-product-media i::before {
  width: 15px !important;
  height: 2px !important;
}

#jood-app.jood-app-shell-view-store .jood-product-media i::after {
  width: 2px !important;
  height: 15px !important;
}

/* ---------- Badges ---------- */

#jood-app.jood-app-shell-view-store .jood-product-badge,
#jood-app.jood-app-shell-view-store .jood-badge,
#jood-app.jood-app-shell-view-store .onsale {
  background:
    linear-gradient(135deg, #2B170F 0%, #2B170F 100%) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  box-shadow: 0 8px 18px rgba(10,22,37,.14) !important;
}

/* ---------- Buttons: premium navy/gold, no green ---------- */

#jood-app.jood-app-shell-view-store .jood-product-actions .jood-btn-primary,
#jood-app.jood-app-shell-view-store .jood-add-cart,
#jood-app.jood-app-shell-view-store .add_to_cart_button,
#jood-app.jood-app-shell-view-store .single_add_to_cart_button,
#jood-app.jood-app-shell-view-store .jood-product-actions a.ajax_add_to_cart {
  background:
    linear-gradient(135deg, #2B170F 0%, #131a26 100%) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(10,22,37,.92) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.09),
    0 10px 20px rgba(10,22,37,.10) !important;
}

#jood-app.jood-app-shell-view-store .jood-product-actions .jood-btn-primary:hover,
#jood-app.jood-app-shell-view-store .jood-add-cart:hover,
#jood-app.jood-app-shell-view-store .add_to_cart_button:hover,
#jood-app.jood-app-shell-view-store .single_add_to_cart_button:hover,
#jood-app.jood-app-shell-view-store .jood-product-actions a.ajax_add_to_cart:hover {
  background:
    linear-gradient(135deg, #2B170F 0%, #2B170F 100%) !important;
  transform: translateY(-1px) !important;
}

#jood-app.jood-app-shell-view-store .jood-product-actions .jood-btn-ghost {
  background: #FFFFFF !important;
  color: #2B170F !important;
  border: 1px solid rgba(214,181,109,.82) !important;
}

/* ---------- Mobile: compact app feel, no broken layout ---------- */

@media (max-width: 767px) {
  #jood-app.jood-app-shell-view-store .jood-store-topbar {
    min-height: 0 !important;
    padding: 11px !important;
    border-radius: 21px !important;
    gap: 10px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-topbar h1 {
    font-size: 32px !important;
    letter-spacing: -.9px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-topbar p {
    font-size: 11px !important;
    line-height: 1.55 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-topbar__meta {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-meta-card {
    min-height: 62px !important;
    padding: 7px !important;
    border-radius: 16px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-meta-card strong {
    font-size: 17px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-meta-card.is-cart {
    grid-template-columns: 1fr !important;
    gap: 2px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-meta-card.is-cart .jood-svg-icon {
    width: 23px !important;
    height: 23px !important;
    padding: 4px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-tabs {
    min-height: 48px !important;
    padding: 5px !important;
    gap: 6px !important;
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-tab {
    flex: 0 0 auto !important;
    min-height: 37px !important;
    padding: 7px 10px !important;
    font-size: 11px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects label::after {
    bottom: 17px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-media {
    aspect-ratio: 1 / .82 !important;
    overflow: hidden !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-media img {
    padding: 8px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-media i {
    width: 39px !important;
    height: 39px !important;
    bottom: 10px !important;
    inset-inline-start: 10px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-actions {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 420px) {
  #jood-app.jood-app-shell-view-store .jood-store-topbar h1 {
    font-size: 29px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-meta-card {
    min-height: 58px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-products-grid {
    grid-template-columns: 1fr !important;
  }
}


/* =========================================================
   05 STORE PAGE — FILTER + MOBILE GRID FIX V4
   هدف التصحيح:
   - الديسكتوب: الفلاتر صف واحد متوازن بدون زحمة.
   - الجوال: البحث صف كامل، 3 قوائم في صف واحد، الزرين في صف واحد.
   - المنتجات على الجوال: منتجين في الصف بمساحة مريحة بدون لزق.
========================================================= */

/* ---------- Filter shell: less height, better alignment ---------- */

#jood-app.jood-app-shell-view-store .jood-store-filter-shell {
  padding: 12px !important;
  border-radius: 22px !important;
  align-items: center !important; background: #FFFFFF !important; border: 1px solid rgba(214,181,109,.38) !important;
}

#jood-app.jood-app-shell-view-store form.jood-store-filters {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(360px, 1.4fr) minmax(0, 1.6fr) !important;
  align-items: end !important;
  gap: 10px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search {
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  align-items: end !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects {
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns:
    minmax(130px, 1fr)
    minmax(130px, 1fr)
    minmax(130px, 1fr)
    minmax(96px, .72fr)
    minmax(92px, .68fr) !important;
  align-items: end !important;
  gap: 8px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search label,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects label {
  min-width: 0 !important;
  width: 100% !important;
  display: grid !important;
  gap: 4px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search label > span,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects label > span {
  min-height: 14px !important;
  color: #2B170F !important;
  font-size: 10px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  padding-inline: 6px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search input,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects select,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects button,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects .button,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="submit"],
#jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="reset"] {
  min-height: 44px !important;
  height: 44px !important;
  border-radius: 15px !important;
  font-size: 11px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects select {
  padding-inline: 12px 34px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects label::after {
  bottom: 17px !important;
  inset-inline-start: 13px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects button,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects .button,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="submit"],
#jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="reset"] {
  align-self: end !important;
  justify-content: center !important;
  padding-inline: 12px !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects button[type="submit"],
#jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="submit"] {
  background: linear-gradient(135deg, #2B170F 0%, #2B170F 100%) !important;
  color: #FFFFFF !important;
  border-color: #2B170F !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects button[type="reset"],
#jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="reset"],
#jood-app.jood-app-shell-view-store .jood-store-filter-selects .jood-btn-ghost {
  background: #FFFFFF !important;
  color: #2B170F !important;
  border-color: rgba(214,181,109,.82) !important;
}

/* ---------- Product grid: desktop/tablet comfort ---------- */

#jood-app.jood-app-shell-view-store .jood-products-grid {
  align-items: stretch !important;
  justify-content: start !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

@media (max-width: 1180px) {
  #jood-app.jood-app-shell-view-store form.jood-store-filters {
    grid-template-columns: 1fr !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects {
    grid-template-columns:
      minmax(120px, 1fr)
      minmax(120px, 1fr)
      minmax(120px, 1fr)
      minmax(86px, .65fr)
      minmax(78px, .6fr) !important;
  }

  #jood-app.jood-app-shell-view-store .jood-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 900px) {
  #jood-app.jood-app-shell-view-store .jood-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }
}

/* ---------- Mobile filter layout exactly as requested ---------- */

@media (max-width: 767px) {
  #jood-app.jood-app-shell-view-store .jood-store-products-shell {
    padding: 10px !important;
    border-radius: 22px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-toolbar {
    margin-bottom: 8px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-shell {
    padding: 9px !important;
    border-radius: 20px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-shell > .jood-svg-icon {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-store form.jood-store-filters {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    width: 100% !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-search {
    grid-column: 1 / -1 !important;
    width: 100% !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-search label {
    width: 100% !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-search input {
    width: 100% !important;
    height: 40px !important;
    min-height: 40px !important;
    border-radius: 14px !important;
    font-size: 11px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;
    align-items: stretch !important;
    width: 100% !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects label {
    min-width: 0 !important;
    width: 100% !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects label > span {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects select {
    width: 100% !important;
    height: 38px !important;
    min-height: 38px !important;
    padding-inline: 7px 24px !important;
    border-radius: 13px !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    text-overflow: ellipsis !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects label::after {
    width: 6px !important;
    height: 6px !important;
    bottom: 16px !important;
    inset-inline-start: 9px !important;
    border-width: 1.8px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects button,
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects .button,
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="submit"],
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="reset"] {
    height: 40px !important;
    min-height: 40px !important;
    border-radius: 13px !important;
    font-size: 11px !important;
    width: 100% !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects button:nth-last-child(2),
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="submit"] {
    grid-column: 1 / span 2 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects button:nth-last-child(1),
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="reset"],
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects .jood-btn-ghost {
    grid-column: span 1 !important;
  }

  /* Mobile product grid: two comfortable cards in one row */
  #jood-app.jood-app-shell-view-store .jood-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    padding-top: 2px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-card {
    border-radius: 18px !important;
    min-width: 0 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-media {
    aspect-ratio: 1 / .86 !important;
    border-radius: 15px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-media img {
    padding: 7px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-info {
    padding: 9px !important;
    gap: 7px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-cat {
    min-height: 22px !important;
    padding: 4px 7px !important;
    font-size: 9px !important;
    max-width: 100% !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-title {
    font-size: 12px !important;
    line-height: 1.45 !important;
    min-height: 34px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-price,
  #jood-app.jood-app-shell-view-store .jood-product-price .amount,
  #jood-app.jood-app-shell-view-store .price,
  #jood-app.jood-app-shell-view-store .price .amount {
    font-size: 13px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-actions {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-actions .jood-btn {
    min-height: 38px !important;
    height: 38px !important;
    border-radius: 13px !important;
    font-size: 10px !important;
    padding-inline: 8px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-media i {
    width: 36px !important;
    height: 36px !important;
    border-radius: 13px !important;
    bottom: 8px !important;
    inset-inline-start: 8px !important;
  }
}

/* ---------- Very small phones: still two per row unless screen is too narrow ---------- */

@media (max-width: 390px) {
  #jood-app.jood-app-shell-view-store .jood-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-info {
    padding: 8px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-title {
    font-size: 11px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-actions .jood-btn {
    font-size: 9px !important;
  }
}

@media (max-width: 330px) {
  #jood-app.jood-app-shell-view-store .jood-products-grid {
    grid-template-columns: 1fr !important;
  }
}


/* =========================================================
   05 STORE PAGE — MOBILE APP EXPERIENCE FIX V5
   حل المشاكل الظاهرة في لقطات الجوال:
   - الفلاتر بدون كارت داخل كارت وبدون زحمة.
   - البحث صف كامل واضح.
   - الثلاث قوائم في صف واحد متساوي.
   - تطبيق/مسح في صف واحد متوازن.
   - المنتجات على الجوال كتالوج تطبيق: صورتين/منتجين في الصف براحة.
   - لو المنتج واحد فقط: يتمدد بشكل أنيق بدل ما يترمي يمين ويترك فراغ.
========================================================= */

/* ---------- Kill extra nested look inside filter panel ---------- */

#jood-app.jood-app-shell-view-store .jood-store-filter-shell {
  overflow: visible !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-shell,
#jood-app.jood-app-shell-view-store .jood-store-filter-shell form,
#jood-app.jood-app-shell-view-store form.jood-store-filters {
  max-width: 100% !important;
  min-width: 0 !important;
}

/* ---------- Desktop filter refinement ---------- */

@media (min-width: 768px) {
  #jood-app.jood-app-shell-view-store .jood-store-filter-shell {
    padding: 8px !important;
    border-radius: 20px !important;
  }

  #jood-app.jood-app-shell-view-store form.jood-store-filters {
    display: grid !important;
    grid-template-columns: minmax(300px, 1.15fr) minmax(0, 1.85fr) !important;
    gap: 10px !important;
    align-items: end !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects {
    display: grid !important;
    grid-template-columns:
      minmax(118px, 1fr)
      minmax(118px, 1fr)
      minmax(118px, 1fr)
      minmax(82px, .6fr)
      minmax(76px, .55fr) !important;
    gap: 8px !important;
    align-items: end !important;
  }
}

/* =========================================================
   V5 MOBILE FILTERS — MEASURED APP BAR
========================================================= */

@media (max-width: 767px) {
  #jood-app.jood-app-shell-view-store .jood-store-products-shell {
    padding: 8px !important;
    border-radius: 22px !important;
    background:
      linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.88) 100%) !important;
    box-shadow: 0 10px 28px rgba(10,22,37,.045) !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-toolbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
    padding-inline: 2px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-toolbar__title h2 {
    font-size: 25px !important;
    line-height: 1.05 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-toolbar__count {
    min-height: 38px !important;
    padding: 7px 10px !important;
    border-radius: 14px !important;
    font-size: 10px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-shell {
    padding: 8px !important;
    border-radius: 20px !important;
    display: block !important;
    background:
      linear-gradient(180deg, #FFFFFF 0%, #fff8ee 100%) !important;
    border: 1px solid rgba(220,204,184,.72) !important;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.86),
      0 8px 18px rgba(10,22,37,.035) !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-shell > .jood-svg-icon {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-store form.jood-store-filters {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-search {
    width: 100% !important;
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-search label {
    width: 100% !important;
    min-width: 0 !important;
    display: block !important;
    position: relative !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-search label > span {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-search input {
    width: 100% !important;
    height: 44px !important;
    min-height: 44px !important;
    padding-inline: 44px 14px !important;
    border-radius: 17px !important;
    border: 1px solid rgba(214,181,109,.76) !important;
    background:
      linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%) !important;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.96),
      0 4px 10px rgba(10,22,37,.025) !important;
    color: #2B170F !important;
    font-size: 11px !important;
    font-weight: 800 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-search input::placeholder {
    color: rgba(117,108,96,.68) !important;
    font-weight: 800 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-search .jood-svg-icon,
  #jood-app.jood-app-shell-view-store .jood-store-filter-search button,
  #jood-app.jood-app-shell-view-store .jood-store-filter-search button .jood-svg-icon {
    position: absolute !important;
    inset-inline-start: 13px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 19px !important;
    height: 19px !important;
    color: #2B170F !important;
    z-index: 2 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects {
    width: 100% !important;
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-template-areas:
      "cat sort stock"
      "apply apply reset" !important;
    gap: 7px !important;
    padding: 0 !important;
    margin: 0 !important;
    align-items: stretch !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects label {
    width: 100% !important;
    min-width: 0 !important;
    display: block !important;
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects label:nth-of-type(1) {
    grid-area: cat !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects label:nth-of-type(2) {
    grid-area: sort !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects label:nth-of-type(3) {
    grid-area: stock !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects label > span {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects select {
    width: 100% !important;
    max-width: 100% !important;
    height: 40px !important;
    min-height: 40px !important;
    padding: 0 9px 0 25px !important;
    border-radius: 14px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    border: 1px solid rgba(214,181,109,.74) !important;
    background:
      linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%) !important;
    color: #2B170F !important;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.94),
      0 4px 10px rgba(10,22,37,.02) !important;
    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    text-align: center !important;
    text-align-last: center !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects label::after {
    content: "" !important;
    position: absolute !important;
    inset-inline-start: 9px !important;
    top: 50% !important;
    width: 6px !important;
    height: 6px !important;
    margin-top: -5px !important;
    border-inline-end: 2px solid #2B170F !important;
    border-bottom: 2px solid #2B170F !important;
    transform: rotate(45deg) !important;
    pointer-events: none !important;
    opacity: .84 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects button,
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects .button,
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="submit"],
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="reset"],
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects a {
    width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;
    margin: 0 !important;
    padding: 0 10px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 14px !important;
    font-size: 11px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects button[type="submit"],
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="submit"],
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects .jood-btn-primary {
    grid-area: apply !important;
    background:
      linear-gradient(135deg, #2B170F 0%, #2B170F 100%) !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(10,22,37,.95) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08) !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects button[type="reset"],
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="reset"],
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects .jood-btn-ghost,
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects a:not(.jood-btn-primary) {
    grid-area: reset !important;
    background: #FFFFFF !important;
    color: #2B170F !important;
    border: 1px solid rgba(214,181,109,.76) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.92) !important;
  }
}

/* =========================================================
   V5 MOBILE PRODUCT CATALOG — 2 PRODUCTS PER ROW WITH BREATHING
========================================================= */

@media (max-width: 767px) {
  #jood-app.jood-app-shell-view-store .jood-products-grid {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 13px !important;
    align-items: stretch !important;
    justify-content: stretch !important;
    padding: 8px 0 2px !important;
    margin: 0 !important;
    direction: rtl !important;
  }

  #jood-app.jood-app-shell-view-store .jood-products-grid > * {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* If only one product exists in the database, center it instead of leaving dead space */
  #jood-app.jood-app-shell-view-store .jood-products-grid:has(> :only-child) {
    grid-template-columns: minmax(0, min(100%, 290px)) !important;
    justify-content: center !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-rows: auto 1fr !important;
    border-radius: 18px !important;
    border: 1px solid rgba(220,204,184,.74) !important;
    background:
      linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 55%, #FFFFFF 100%) !important;
    box-shadow:
      0 8px 18px rgba(10,22,37,.045),
      inset 0 1px 0 rgba(255,255,255,.88) !important;
    overflow: hidden !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-media {
    width: 100% !important;
    aspect-ratio: 1 / .92 !important;
    min-height: 0 !important;
    border-radius: 16px !important;
    display: grid !important;
    place-items: center !important;
    overflow: hidden !important;
    background:
      radial-gradient(circle at 50% 22%, rgba(214,181,109,.12), transparent 46%),
      linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%) !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-media img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    padding: 7px !important;
    object-fit: contain !important;
    object-position: center center !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-badges,
  #jood-app.jood-app-shell-view-store .jood-badges {
    top: 8px !important;
    inset-inline-end: 8px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-badge,
  #jood-app.jood-app-shell-view-store .jood-badge,
  #jood-app.jood-app-shell-view-store .onsale {
    min-height: 22px !important;
    padding: 4px 7px !important;
    font-size: 9px !important;
    border-radius: 999px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-media i {
    width: 35px !important;
    height: 35px !important;
    bottom: 8px !important;
    inset-inline-start: 8px !important;
    border-radius: 13px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-media i::before {
    width: 13px !important;
    height: 2px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-media i::after {
    width: 2px !important;
    height: 13px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-info {
    padding: 9px !important;
    display: grid !important;
    grid-template-rows: auto auto auto 1fr !important;
    gap: 7px !important;
    justify-items: center !important;
    text-align: center !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-cat {
    max-width: 100% !important;
    min-height: 21px !important;
    padding: 3px 7px !important;
    font-size: 9px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-title {
    width: 100% !important;
    min-height: 34px !important;
    color: #2B170F !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
    font-weight: 950 !important;
    text-align: center !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-price,
  #jood-app.jood-app-shell-view-store .jood-price,
  #jood-app.jood-app-shell-view-store .price {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    color: #2B170F !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 950 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-price .amount,
  #jood-app.jood-app-shell-view-store .jood-price .amount,
  #jood-app.jood-app-shell-view-store .price .amount {
    color: #2B170F !important;
    font-size: 13px !important;
    font-weight: 950 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-actions {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    align-self: end !important;
    margin-top: 2px !important;
    padding-top: 0 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-actions .jood-btn,
  #jood-app.jood-app-shell-view-store .jood-product-actions a,
  #jood-app.jood-app-shell-view-store .jood-product-actions button {
    width: 100% !important;
    min-height: 37px !important;
    height: 37px !important;
    border-radius: 13px !important;
    padding: 0 8px !important;
    font-size: 10px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    justify-content: center !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-actions .jood-btn-primary,
  #jood-app.jood-app-shell-view-store .jood-product-actions .jood-add-cart,
  #jood-app.jood-app-shell-view-store .jood-product-actions .add_to_cart_button {
    background:
      linear-gradient(135deg, #2B170F 0%, #2B170F 100%) !important;
    color: #FFFFFF !important;
    border-color: rgba(10,22,37,.95) !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-actions .jood-btn-ghost {
    background: #FFFFFF !important;
    color: #2B170F !important;
    border-color: rgba(214,181,109,.76) !important;
  }
}

/* Keep 2 products per row on normal phones, only collapse on extremely tiny widths */
@media (max-width: 350px) {
  #jood-app.jood-app-shell-view-store .jood-products-grid {
    gap: 9px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-info {
    padding: 7px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-title {
    font-size: 11px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-actions .jood-btn,
  #jood-app.jood-app-shell-view-store .jood-product-actions a,
  #jood-app.jood-app-shell-view-store .jood-product-actions button {
    font-size: 9px !important;
  }
}

@media (max-width: 310px) {
  #jood-app.jood-app-shell-view-store .jood-products-grid {
    grid-template-columns: 1fr !important;
  }
}


/* =========================================================
   05 STORE PAGE — WHITE CLEAN PRODUCT FIX V6
   المطلوب من المعاينة:
   - خلفية صفحة المتجر بيضاء بالكامل.
   - خلفية صورة المنتج بيضاء بدون كريم/بيج.
   - الصورة كاملة بدون قص.
   - زر + لا يركب على صورة المنتج ولا الكلام.
   - تقليل المسافة بين العنوان والسعر.
   - إصلاح أيقونات select التي راكبة على الكلام.
========================================================= */

/* ---------- Store page white background ---------- */

#jood-app.jood-app-shell-view-store,
#jood-app.jood-app-shell-view-store .jood-app-main,
#jood-app.jood-app-shell-view-store .jood-app-content-store,
#jood-app.jood-app-shell-view-store .jood-store-app,
#jood-app.jood-app-shell-view-store .jood-store-products-shell {
  background: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-store .jood-store-app::before,
#jood-app.jood-app-shell-view-store .jood-store-products-shell::before,
#jood-app.jood-app-shell-view-store .jood-store-products-shell::after {
  display: none !important;
  content: none !important;
}

/* ---------- Filters: fix dropdown arrow riding over text ---------- */

#jood-app.jood-app-shell-view-store .jood-store-filter-selects select {
  padding-inline-start: 34px !important;
  padding-inline-end: 12px !important;
  text-align: center !important;
  text-align-last: center !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects label::after {
  inset-inline-start: 14px !important;
  inset-inline-end: auto !important;
  z-index: 3 !important;
}

@media (max-width: 767px) {
  #jood-app.jood-app-shell-view-store .jood-store-filter-shell {
    background: #FFFFFF !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects select {
    padding-inline-start: 24px !important;
    padding-inline-end: 7px !important;
    font-size: 10px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects label::after {
    inset-inline-start: 8px !important;
  }
}

/* ---------- Product card white clean catalogue style ---------- */

#jood-app.jood-app-shell-view-store .jood-product-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(220, 204, 184, .70) !important;
  box-shadow: 0 8px 18px rgba(10, 22, 37, .04) !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-store .jood-product-card:hover {
  box-shadow: 0 14px 30px rgba(10, 22, 37, .07) !important;
}

/* Image area: white background, full image, no crop */
#jood-app.jood-app-shell-view-store .jood-product-media {
  position: relative !important;
  overflow: hidden !important;
  background: #FFFFFF !important;
  border-radius: 16px !important;
  display: grid !important;
  place-items: center !important;
  aspect-ratio: 1 / .78 !important;
}

#jood-app.jood-app-shell-view-store .jood-product-media::before,
#jood-app.jood-app-shell-view-store .jood-product-media::after {
  display: none !important;
  content: none !important;
}

#jood-app.jood-app-shell-view-store .jood-product-media img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  padding: 8px !important;
  background: #FFFFFF !important;
  transform: none !important;
}

#jood-app.jood-app-shell-view-store .jood-product-card:hover .jood-product-media img {
  transform: scale(1.012) !important;
}

/* Plus button: smaller and placed inside media corner without covering product too much */
#jood-app.jood-app-shell-view-store .jood-product-media i {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  inset-inline-start: 8px !important;
  bottom: 8px !important;
  border-radius: 12px !important;
  background: linear-gradient(180deg, #2B170F 0%, #2B170F 100%) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, .30) !important;
  box-shadow: 0 8px 18px rgba(10, 22, 37, .16) !important;
}

#jood-app.jood-app-shell-view-store .jood-product-media i::before,
#jood-app.jood-app-shell-view-store .jood-product-media i::after {
  background: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-store .jood-product-media i::before {
  width: 13px !important;
  height: 2px !important;
}

#jood-app.jood-app-shell-view-store .jood-product-media i::after {
  width: 2px !important;
  height: 13px !important;
}

/* Product content: remove dead vertical gaps */
#jood-app.jood-app-shell-view-store .jood-product-info {
  padding: 9px 10px 10px !important;
  gap: 5px !important;
  display: grid !important;
  justify-items: center !important;
  text-align: center !important;
  align-content: start !important;
}

#jood-app.jood-app-shell-view-store .jood-product-cat {
  margin-bottom: 1px !important;
}

#jood-app.jood-app-shell-view-store .jood-product-title {
  min-height: 0 !important;
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 1.38 !important;
  font-weight: 950 !important;
  text-align: center !important;
}

#jood-app.jood-app-shell-view-store .jood-product-excerpt {
  display: none !important;
}

#jood-app.jood-app-shell-view-store .jood-product-price,
#jood-app.jood-app-shell-view-store .jood-price,
#jood-app.jood-app-shell-view-store .price {
  margin: 1px 0 0 !important;
  padding: 0 !important;
  justify-content: center !important;
  line-height: 1.2 !important;
  font-size: 13px !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-store .jood-product-price .amount,
#jood-app.jood-app-shell-view-store .jood-price .amount,
#jood-app.jood-app-shell-view-store .price .amount {
  font-size: 13px !important;
  font-weight: 950 !important;
}

/* Actions closer and balanced */
#jood-app.jood-app-shell-view-store .jood-product-actions {
  margin-top: 4px !important;
  gap: 6px !important;
}

/* ---------- Mobile exact product comfort ---------- */

@media (max-width: 767px) {
  #jood-app.jood-app-shell-view-store {
    background: #FFFFFF !important;
  }

  #jood-app.jood-app-shell-view-store .jood-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    padding: 8px 0 0 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-products-grid:has(> :only-child) {
    grid-template-columns: minmax(0, min(100%, 280px)) !important;
    justify-content: center !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-card {
    border-radius: 17px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-media {
    aspect-ratio: 1 / .82 !important;
    border-radius: 15px !important;
    background: #FFFFFF !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-media img {
    padding: 6px !important;
    object-fit: contain !important;
    background: #FFFFFF !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-media i {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    bottom: 7px !important;
    inset-inline-start: 7px !important;
    border-radius: 11px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-info {
    padding: 8px 8px 9px !important;
    gap: 5px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-cat {
    min-height: 20px !important;
    padding: 3px 7px !important;
    font-size: 8.5px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-title {
    min-height: 0 !important;
    font-size: 11.5px !important;
    line-height: 1.35 !important;
    -webkit-line-clamp: 2 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-price,
  #jood-app.jood-app-shell-view-store .jood-product-price .amount,
  #jood-app.jood-app-shell-view-store .jood-price,
  #jood-app.jood-app-shell-view-store .jood-price .amount,
  #jood-app.jood-app-shell-view-store .price,
  #jood-app.jood-app-shell-view-store .price .amount {
    font-size: 12.5px !important;
    line-height: 1.15 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-actions {
    margin-top: 4px !important;
    gap: 5px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-actions .jood-btn,
  #jood-app.jood-app-shell-view-store .jood-product-actions a,
  #jood-app.jood-app-shell-view-store .jood-product-actions button {
    min-height: 35px !important;
    height: 35px !important;
    border-radius: 12px !important;
    font-size: 9.5px !important;
  }
}

@media (max-width: 360px) {
  #jood-app.jood-app-shell-view-store .jood-products-grid {
    gap: 9px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-media {
    aspect-ratio: 1 / .86 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-product-info {
    padding: 7px !important;
  }
}


/* =========================================================
   05 STORE PAGE — PREMIUM TOPBAR REBUILD V7
   إعادة بناء الشريط العلوي فقط:
   - شكل أفخم وأحدث بدل كروت ويندوز القديمة.
   - الشريط مضغوط ومتوازن.
   - الإحصائيات تتحول إلى كبسولات حديثة بدل مربعات ضخمة.
   - السلة تظهر كـ CTA واضح بلون ذهبي راقٍ.
   - تجاوب الموبايل مضبوط ومضغوط.
========================================================= */

/* ---------- Topbar shell: modern compact premium strip ---------- */

#jood-app.jood-app-shell-view-store .jood-store-topbar {
  min-height: 112px !important;
  padding: clamp(13px, 1.7vw, 20px) !important;
  grid-template-columns: minmax(0, 1fr) minmax(330px, auto) !important;
  grid-template-areas: "copy meta" !important;
  align-items: center !important;
  gap: clamp(14px, 2vw, 26px) !important;
  border-radius: 28px !important;
  border: 1px solid rgba(214, 181, 109, .30) !important;
  background:
    linear-gradient(90deg, rgba(214,181,109,.12) 0%, transparent 20%, transparent 82%, rgba(214,181,109,.08) 100%),
    radial-gradient(circle at 7% 50%, rgba(214,181,109,.20), transparent 27%),
    radial-gradient(circle at 96% 18%, rgba(255,255,255,.10), transparent 23%),
    linear-gradient(135deg, #2B170F 0%, #2B170F 48%, #2B170F 100%) !important;
  color: #FFFFFF !important;
  box-shadow:
    0 18px 42px rgba(10, 22, 37, .14),
    inset 0 1px 0 rgba(255,255,255,.11),
    inset 0 -1px 0 rgba(214,181,109,.20) !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-store .jood-store-topbar::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  opacity: .10 !important;
  background-image:
    linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px) !important;
  background-size: 28px 28px !important;
  mask-image: linear-gradient(90deg, transparent 0%, #2B170F 12%, #2B170F 88%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #2B170F 12%, #2B170F 88%, transparent 100%) !important;
  pointer-events: none !important;
}

#jood-app.jood-app-shell-view-store .jood-store-topbar::after {
  content: "" !important;
  position: absolute !important;
  inset-inline: clamp(18px, 3vw, 44px) !important;
  bottom: 0 !important;
  height: 2px !important;
  border-radius: 999px 999px 0 0 !important;
  background:
    linear-gradient(90deg, transparent, rgba(214,181,109,.15), rgba(232,210,176,.95), rgba(214,181,109,.15), transparent) !important;
  opacity: .95 !important;
  pointer-events: none !important;
}

/* ---------- Topbar copy: cleaner hierarchy ---------- */

#jood-app.jood-app-shell-view-store .jood-store-topbar__copy {
  grid-area: copy !important;
  min-width: 0 !important;
  display: grid !important;
  align-content: center !important;
  justify-items: start !important;
  gap: 5px !important;
  position: relative !important;
  z-index: 2 !important;
}

#jood-app.jood-app-shell-view-store .jood-store-kicker {
  min-height: 23px !important;
  padding: 4px 10px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(214,181,109,.42) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.045)) !important;
  color: #F6E9D8 !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 8px 18px rgba(0,0,0,.12) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-kicker::after {
  width: 6px !important;
  height: 6px !important;
  background: #B9854D !important;
  box-shadow: 0 0 0 4px rgba(214,181,109,.16) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-topbar h1 {
  margin: 0 !important;
  color: #FFFFFF !important;
  font-size: clamp(30px, 3.4vw, 50px) !important;
  line-height: .98 !important;
  font-weight: 950 !important;
  letter-spacing: -1.15px !important;
  text-shadow: 0 12px 26px rgba(0,0,0,.18) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-topbar p {
  width: min(620px, 100%) !important;
  margin: 0 !important;
  color: rgba(255,255,255,.78) !important;
  font-size: clamp(11px, .95vw, 13px) !important;
  line-height: 1.6 !important;
  font-weight: 800 !important;
}

/* ---------- Meta zone: modern segmented pills instead of big old blocks ---------- */

#jood-app.jood-app-shell-view-store .jood-store-topbar__meta {
  grid-area: meta !important;
  width: min(390px, 100%) !important;
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns: 1.08fr .82fr .82fr !important;
  gap: 8px !important;
  align-items: center !important;
  justify-self: end !important;
  position: relative !important;
  z-index: 2 !important;
  direction: rtl !important;
}

#jood-app.jood-app-shell-view-store .jood-store-meta-card {
  min-width: 0 !important;
  min-height: 54px !important;
  height: 54px !important;
  padding: 8px 10px !important;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  grid-template-rows: auto auto !important;
  grid-template-areas:
    "num label"
    "num label" !important;
  align-items: center !important;
  justify-items: start !important;
  gap: 2px 8px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255,255,255,.13) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.045)) !important;
  color: #FFFFFF !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 10px 22px rgba(0,0,0,.10) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-store .jood-store-meta-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 8px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(255,255,255,.04) !important;
  pointer-events: none !important;
}

#jood-app.jood-app-shell-view-store .jood-store-meta-card strong {
  grid-area: num !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-grid !important;
  place-items: center !important;
  border-radius: 12px !important;
  background: rgba(255,255,255,.10) !important;
  color: #FFFFFF !important;
  font-size: 17px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  letter-spacing: -.2px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-meta-card span {
  grid-area: label !important;
  display: block !important;
  color: rgba(255,255,255,.86) !important;
  opacity: 1 !important;
  font-size: 10px !important;
  line-height: 1.25 !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}

/* Cart CTA: gold pill, icon and text balanced */
#jood-app.jood-app-shell-view-store .jood-store-meta-card.is-cart {
  grid-template-columns: 34px minmax(0, 1fr) !important;
  grid-template-rows: 1fr !important;
  grid-template-areas: "icon label" !important;
  gap: 8px !important;
  justify-items: start !important;
  align-items: center !important;
  background:
    linear-gradient(135deg, #D7B179 0%, #B9854D 54%, #B9854D 100%) !important;
  color: #FFFFFF !important;
  border-color: rgba(255,255,255,.20) !important;
  box-shadow:
    0 12px 24px rgba(214,181,109,.18),
    inset 0 1px 0 rgba(255,255,255,.24) !important;
  text-shadow: 0 1px 0 rgba(0,0,0,.12) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-meta-card.is-cart strong {
  display: none !important;
}

#jood-app.jood-app-shell-view-store .jood-store-meta-card.is-cart .jood-svg-icon {
  grid-area: icon !important;
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  display: grid !important;
  place-items: center !important;
  padding: 7px !important;
  border-radius: 14px !important;
  background: rgba(10,22,37,.18) !important;
  color: #FFFFFF !important;
  stroke-width: 2.2 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.13) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-meta-card.is-cart span {
  grid-area: label !important;
  color: #FFFFFF !important;
  font-size: 10px !important;
  font-weight: 950 !important;
}

/* ---------- Hover: modern, not exaggerated ---------- */

#jood-app.jood-app-shell-view-store .jood-store-meta-card:hover {
  transform: translateY(-2px) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.07)) !important;
  border-color: rgba(214,181,109,.35) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-meta-card.is-cart:hover {
  background:
    linear-gradient(135deg, #e1c893 0%, #cda86f 55%, #bd9257 100%) !important;
}

/* =========================================================
   V7 TOPBAR RESPONSIVE
========================================================= */

@media (max-width: 980px) {
  #jood-app.jood-app-shell-view-store .jood-store-topbar {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "copy"
      "meta" !important;
    min-height: 0 !important;
    padding: 14px !important;
    gap: 12px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-topbar__meta {
    width: 100% !important;
    justify-self: stretch !important;
  }
}

@media (max-width: 767px) {
  #jood-app.jood-app-shell-view-store .jood-store-topbar {
    padding: 12px !important;
    border-radius: 22px !important;
    gap: 10px !important;
    background:
      radial-gradient(circle at 12% 25%, rgba(214,181,109,.18), transparent 30%),
      linear-gradient(135deg, #2B170F 0%, #2B170F 56%, #2B170F 100%) !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-topbar h1 {
    font-size: 31px !important;
    line-height: 1 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-topbar p {
    font-size: 11px !important;
    line-height: 1.5 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-topbar__meta {
    grid-template-columns: 1fr 1fr 1.06fr !important;
    gap: 7px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-meta-card {
    min-height: 50px !important;
    height: 50px !important;
    padding: 7px 8px !important;
    border-radius: 16px !important;
    grid-template-columns: auto 1fr !important;
    gap: 5px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-meta-card strong {
    width: 26px !important;
    height: 26px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-meta-card span {
    font-size: 9px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-meta-card.is-cart {
    grid-template-columns: 28px minmax(0, 1fr) !important;
    gap: 5px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-meta-card.is-cart .jood-svg-icon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    padding: 6px !important;
    border-radius: 11px !important;
  }
}

@media (max-width: 380px) {
  #jood-app.jood-app-shell-view-store .jood-store-topbar__meta {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-meta-card {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
    justify-items: center !important;
    text-align: center !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-meta-card span {
    white-space: normal !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-meta-card.is-cart {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
  }
}



/* =========================================================
   06 CATEGORY PAGE — JOOD PREMIUM APP CATALOG
   Built from templates/category.php actual classes:
   .jood-category-page
   .jood-category-hero
   .jood-category-hero__content
   .jood-category-hero__visual
   .jood-category-children
   .jood-category-highlight
   .jood-category-products
   .jood-category-products__head
   .jood-products-panel
   .jood-store-filters
   .jood-products-grid
   .jood-product-card
========================================================= */

/* =========================================================
   06.00 CATEGORY VIEW TOKENS + WHITE FOUNDATION
========================================================= */

#jood-app.jood-app-shell-view-category {
  --jood-category-max: 1180px;
  --jood-category-ink: #2B170F;
  --jood-category-ink-2: #2B170F;
  --jood-category-gold: #B9854D;
  --jood-category-gold-2: #D7B179;
  --jood-category-gold-3: #F6E9D8;
  --jood-category-cream: #FFFFFF;
  --jood-category-paper: #FFFFFF;
  --jood-category-line: rgba(214, 181, 109, .70);
  --jood-category-line-soft: rgba(232, 220, 199, .86);
  --jood-category-muted: #7B6758;
  --jood-category-brown: #2B170F;
  --jood-current-max: 1180px;
  background: #FFFFFF !important;
  color: var(--jood-category-ink) !important;
}

#jood-app.jood-app-shell-view-category .jood-app-main {
  width: min(var(--jood-category-max), calc(100% - 28px)) !important;
  max-width: 100% !important;
  margin-inline: auto !important;
  padding-top: 12px !important;
  padding-bottom: max(44px, var(--jood-main-bottom, 70px)) !important;
  background: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-category .jood-app-content-category,
#jood-app.jood-app-shell-view-category .jood-category-page {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 12px !important;
  background: #FFFFFF !important;
  position: relative !important;
  isolation: isolate !important;
}

/* =========================================================
   06.01 CATEGORY HERO — SAME PREMIUM FEEL AS STORE TOPBAR
========================================================= */

#jood-app.jood-app-shell-view-category .jood-category-hero {
  width: 100% !important;
  min-height: 128px !important;
  margin: 0 !important;
  padding: clamp(14px, 1.8vw, 22px) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px) !important;
  align-items: center !important;
  gap: clamp(14px, 2vw, 24px) !important;
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid rgba(214, 181, 109, .30) !important;
  border-radius: 28px !important;
  background:
    linear-gradient(90deg, rgba(214,181,109,.12) 0%, transparent 20%, transparent 82%, rgba(214,181,109,.08) 100%),
    radial-gradient(circle at 7% 50%, rgba(214,181,109,.20), transparent 27%),
    radial-gradient(circle at 96% 18%, rgba(255,255,255,.10), transparent 23%),
    linear-gradient(135deg, #2B170F 0%, #2B170F 48%, #2B170F 100%) !important;
  color: #FFFFFF !important;
  box-shadow:
    0 18px 42px rgba(10, 22, 37, .14),
    inset 0 1px 0 rgba(255,255,255,.11),
    inset 0 -1px 0 rgba(214,181,109,.20) !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  opacity: .10 !important;
  background-image:
    linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px) !important;
  background-size: 28px 28px !important;
  mask-image: linear-gradient(90deg, transparent 0%, #2B170F 12%, #2B170F 88%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #2B170F 12%, #2B170F 88%, transparent 100%) !important;
  pointer-events: none !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero::after {
  content: "" !important;
  position: absolute !important;
  inset-inline: clamp(18px, 3vw, 44px) !important;
  bottom: 0 !important;
  height: 2px !important;
  border-radius: 999px 999px 0 0 !important;
  background:
    linear-gradient(90deg, transparent, rgba(214,181,109,.15), rgba(232,210,176,.95), rgba(214,181,109,.15), transparent) !important;
  pointer-events: none !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__content {
  min-width: 0 !important;
  display: grid !important;
  align-content: center !important;
  justify-items: start !important;
  gap: 7px !important;
  position: relative !important;
  z-index: 2 !important;
}

#jood-app.jood-app-shell-view-category .jood-breadcrumbs {
  width: fit-content !important;
  max-width: 100% !important;
  min-height: 24px !important;
  margin: 0 0 2px !important;
  padding: 4px 9px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(214,181,109,.34) !important;
  background: rgba(255,255,255,.075) !important;
  color: rgba(255,255,255,.78) !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 850 !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-category .jood-breadcrumbs a,
#jood-app.jood-app-shell-view-category .jood-breadcrumbs span {
  color: inherit !important;
  white-space: nowrap !important;
}

#jood-app.jood-app-shell-view-category .jood-breadcrumbs__sep {
  opacity: .6 !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero .jood-eyebrow {
  width: fit-content !important;
  min-height: 23px !important;
  padding: 4px 10px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(214,181,109,.42) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.045)) !important;
  color: #F6E9D8 !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 8px 18px rgba(0,0,0,.12) !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero h2 {
  margin: 0 !important;
  color: #FFFFFF !important;
  font-size: clamp(30px, 3.4vw, 50px) !important;
  line-height: .98 !important;
  font-weight: 950 !important;
  letter-spacing: -1.15px !important;
  text-shadow: 0 12px 26px rgba(0,0,0,.18) !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero p,
#jood-app.jood-app-shell-view-category .jood-category-hero__description,
#jood-app.jood-app-shell-view-category .jood-category-hero__description p {
  width: min(620px, 100%) !important;
  margin: 0 !important;
  color: rgba(255,255,255,.78) !important;
  font-size: clamp(11px, .95vw, 13px) !important;
  line-height: 1.6 !important;
  font-weight: 800 !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__actions {
  margin-top: 4px !important;
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__actions .jood-btn {
  min-height: 38px !important;
  padding: 9px 14px !important;
  border-radius: 14px !important;
  font-size: 11px !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__actions .jood-btn-primary {
  background: linear-gradient(135deg, #D7B179 0%, #B9854D 54%, #B9854D 100%) !important;
  color: #FFFFFF !important;
  border-color: rgba(255,255,255,.18) !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__actions .jood-btn-ghost {
  background: rgba(255,255,255,.08) !important;
  color: #FFFFFF !important;
  border-color: rgba(255,255,255,.14) !important;
}

/* Hero stats as compact premium pills */
#jood-app.jood-app-shell-view-category .jood-category-hero__stats {
  margin-top: 8px !important;
  width: min(390px, 100%) !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__stats div {
  min-width: 0 !important;
  min-height: 52px !important;
  padding: 7px 8px !important;
  display: grid !important;
  grid-template-columns: 24px minmax(0, 1fr) !important;
  grid-template-rows: auto auto !important;
  grid-template-areas:
    "icon value"
    "icon label" !important;
  align-items: center !important;
  gap: 1px 7px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255,255,255,.13) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.045)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 10px 22px rgba(0,0,0,.10) !important;
  color: #FFFFFF !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__stats .jood-svg-icon {
  grid-area: icon !important;
  width: 24px !important;
  height: 24px !important;
  display: grid !important;
  place-items: center !important;
  padding: 5px !important;
  border-radius: 10px !important;
  background: rgba(255,255,255,.10) !important;
  color: #F6E9D8 !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__stats strong {
  grid-area: value !important;
  color: #FFFFFF !important;
  font-size: 16px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__stats span {
  grid-area: label !important;
  color: rgba(255,255,255,.78) !important;
  font-size: 9px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* Hero visual */
#jood-app.jood-app-shell-view-category .jood-category-hero__visual {
  min-width: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 128px !important;
  display: grid !important;
  place-items: center !important;
  position: relative !important;
  z-index: 2 !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__image,
#jood-app.jood-app-shell-view-category .jood-category-hero__abstract {
  width: min(300px, 100%) !important;
  aspect-ratio: 1.55 / 1 !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  background: rgba(255,255,255,.08) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 14px 30px rgba(0,0,0,.13) !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 10px !important;
  background: rgba(255,255,255,.06) !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__abstract {
  position: relative !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__abstract .jood-svg-icon {
  width: 56px !important;
  height: 56px !important;
  color: #F6E9D8 !important;
  position: relative !important;
  z-index: 2 !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__shape {
  position: absolute !important;
  border-radius: 999px !important;
  background: rgba(214,181,109,.18) !important;
  filter: blur(.2px) !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__shape-one {
  width: 120px !important;
  height: 120px !important;
  inset-inline-start: -36px !important;
  bottom: -36px !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__shape-two {
  width: 92px !important;
  height: 92px !important;
  inset-inline-end: -20px !important;
  top: -28px !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__shape-three {
  width: 48px !important;
  height: 48px !important;
  inset-inline-start: 48% !important;
  top: 18px !important;
}

/* =========================================================
   06.02 CHILD CATEGORIES + HIGHLIGHT RAIL
========================================================= */

#jood-app.jood-app-shell-view-category .jood-store-section {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

#jood-app.jood-app-shell-view-category .jood-category-children,
#jood-app.jood-app-shell-view-category .jood-category-highlight {
  display: grid !important;
  gap: 10px !important;
}

#jood-app.jood-app-shell-view-category .jood-section-head {
  padding: 10px 12px !important;
  display: flex !important;
  align-items: end !important;
  justify-content: space-between !important;
  gap: 12px !important;
  border: 1px solid rgba(220,204,184,.68) !important;
  border-radius: 22px !important;
  background: #FFFFFF !important;
  box-shadow: 0 8px 18px rgba(10,22,37,.035) !important;
}

#jood-app.jood-app-shell-view-category .jood-section-head .jood-eyebrow,
#jood-app.jood-app-shell-view-category .jood-section-kicker {
  width: fit-content !important;
  min-height: 22px !important;
  padding: 4px 9px !important;
  display: inline-flex !important;
  align-items: center !important;
  border-radius: 999px !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
  border: 1px solid rgba(214,181,109,.24) !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-category .jood-section-head h2 {
  margin-top: 5px !important;
  color: #2B170F !important;
  font-size: clamp(22px, 2.2vw, 34px) !important;
  line-height: 1.08 !important;
  font-weight: 950 !important;
  letter-spacing: -.7px !important;
}

#jood-app.jood-app-shell-view-category .jood-section-head p {
  margin-top: 5px !important;
  color: #7B6758 !important;
  font-size: 12px !important;
  line-height: 1.6 !important;
  font-weight: 800 !important;
}

#jood-app.jood-app-shell-view-category .jood-category-rail {
  width: 100% !important;
  display: flex !important;
  gap: 10px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  padding: 2px 0 8px !important;
  scroll-snap-type: x mandatory !important;
  scrollbar-width: thin !important;
}

#jood-app.jood-app-shell-view-category .jood-category-card {
  flex: 0 0 min(220px, 72vw) !important;
  scroll-snap-align: start !important;
  border-radius: 20px !important;
  border: 1px solid rgba(220,204,184,.72) !important;
  background: #FFFFFF !important;
  box-shadow: 0 8px 18px rgba(10,22,37,.04) !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-category .jood-product-carousel,
#jood-app.jood-app-shell-view-category .jood-category-highlight__rail {
  width: 100% !important;
  display: grid !important;
  grid-auto-flow: column !important;
  grid-auto-columns: minmax(210px, 260px) !important;
  gap: 12px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  padding: 2px 0 10px !important;
  scroll-snap-type: x mandatory !important;
  scrollbar-width: thin !important;
}

#jood-app.jood-app-shell-view-category .jood-product-carousel > * {
  scroll-snap-align: start !important;
}

/* =========================================================
   06.03 PRODUCTS PANEL — SAME STORE EXPERIENCE
========================================================= */

#jood-app.jood-app-shell-view-category .jood-category-products {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

#jood-app.jood-app-shell-view-category .jood-products-panel {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 12px !important;
  border-radius: 28px !important;
  border: 1px solid rgba(220,204,184,.72) !important;
  background: #FFFFFF !important;
  box-shadow: 0 12px 34px rgba(10,22,37,.045) !important;
  overflow: visible !important;
}

#jood-app.jood-app-shell-view-category .jood-products-panel::before,
#jood-app.jood-app-shell-view-category .jood-products-panel::after {
  display: none !important;
  content: none !important;
}

#jood-app.jood-app-shell-view-category .jood-category-products__head {
  margin: 0 0 10px !important;
  display: flex !important;
  align-items: end !important;
  justify-content: space-between !important;
  gap: 12px !important;
}

#jood-app.jood-app-shell-view-category .jood-category-products__head > div {
  min-width: 0 !important;
}

#jood-app.jood-app-shell-view-category .jood-category-products__head h2 {
  margin-top: 5px !important;
  color: #2B170F !important;
  font-size: clamp(24px, 2.5vw, 38px) !important;
  line-height: 1.05 !important;
  font-weight: 950 !important;
  letter-spacing: -.8px !important;
}

#jood-app.jood-app-shell-view-category .jood-category-products__head p {
  width: min(620px, 100%) !important;
  margin-top: 5px !important;
  color: #7B6758 !important;
  font-size: 12px !important;
  line-height: 1.6 !important;
  font-weight: 800 !important;
}

#jood-app.jood-app-shell-view-category .jood-category-products__back {
  flex: 0 0 auto !important;
  min-height: 40px !important;
  padding: 8px 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  border-radius: 15px !important;
  border: 1px solid rgba(214,181,109,.76) !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.92), 0 4px 10px rgba(10,22,37,.025) !important;
}

#jood-app.jood-app-shell-view-category .jood-category-products__back .jood-svg-icon {
  width: 15px !important;
  height: 15px !important;
  color: #2B170F !important;
}

/* =========================================================
   06.04 CATEGORY FILTERS — MATCH STORE MOBILE FINAL
========================================================= */

#jood-app.jood-app-shell-view-category .jood-products-panel > form.jood-store-filters,
#jood-app.jood-app-shell-view-category form.jood-store-filters {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 0 12px !important;
  padding: 8px !important;
  display: grid !important;
  grid-template-columns: minmax(300px, 1.15fr) minmax(0, 1.85fr) !important;
  gap: 10px !important;
  align-items: end !important;
  border: 1px solid rgba(220,204,184,.72) !important;
  border-radius: 20px !important;
  background: #FFFFFF !important;
  box-shadow: 0 8px 18px rgba(10,22,37,.035), inset 0 1px 0 rgba(255,255,255,.86) !important;
}

#jood-app.jood-app-shell-view-category .jood-store-filter-search {
  min-width: 0 !important;
  display: grid !important;
}

#jood-app.jood-app-shell-view-category .jood-store-filter-selects {
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns:
    minmax(118px, 1fr)
    minmax(118px, 1fr)
    minmax(118px, 1fr)
    minmax(82px, .6fr)
    minmax(76px, .55fr) !important;
  gap: 8px !important;
  align-items: end !important;
}

#jood-app.jood-app-shell-view-category .jood-store-filter-search label,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects label {
  min-width: 0 !important;
  width: 100% !important;
  display: grid !important;
  gap: 4px !important;
  position: relative !important;
}

#jood-app.jood-app-shell-view-category .jood-store-filter-search label > span,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects label > span {
  min-height: 14px !important;
  color: #2B170F !important;
  font-size: 10px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  padding-inline: 6px !important;
}

#jood-app.jood-app-shell-view-category .jood-store-filter-search input,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects select,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects button,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects .button,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="submit"],
#jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="reset"] {
  width: 100% !important;
  min-height: 44px !important;
  height: 44px !important;
  border-radius: 15px !important;
  border: 1px solid rgba(214,181,109,.76) !important;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%) !important;
  color: #2B170F !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.96), 0 4px 10px rgba(10,22,37,.025) !important;
  font-size: 11px !important;
  font-weight: 850 !important;
}

#jood-app.jood-app-shell-view-category .jood-store-filter-search input {
  padding-inline: 42px 14px !important;
}

#jood-app.jood-app-shell-view-category .jood-store-filter-search .jood-svg-icon,
#jood-app.jood-app-shell-view-category .jood-store-filter-search button .jood-svg-icon {
  position: absolute !important;
  inset-inline-start: 13px !important;
  top: calc(50% + 8px) !important;
  transform: translateY(-50%) !important;
  width: 18px !important;
  height: 18px !important;
  color: #2B170F !important;
  z-index: 2 !important;
}

#jood-app.jood-app-shell-view-category .jood-store-filter-selects select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  padding-inline-start: 34px !important;
  padding-inline-end: 12px !important;
  text-align: center !important;
  text-align-last: center !important;
}

#jood-app.jood-app-shell-view-category .jood-store-filter-selects label::after {
  content: "" !important;
  position: absolute !important;
  inset-inline-start: 14px !important;
  bottom: 17px !important;
  width: 7px !important;
  height: 7px !important;
  border-inline-end: 2px solid #2B170F !important;
  border-bottom: 2px solid #2B170F !important;
  transform: rotate(45deg) !important;
  pointer-events: none !important;
  opacity: .86 !important;
  z-index: 3 !important;
}

#jood-app.jood-app-shell-view-category .jood-store-filter-selects button[type="submit"],
#jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="submit"],
#jood-app.jood-app-shell-view-category .jood-store-filter-selects .jood-btn-primary {
  background: linear-gradient(135deg, #2B170F 0%, #2B170F 100%) !important;
  color: #FFFFFF !important;
  border-color: rgba(10,22,37,.95) !important;
}

#jood-app.jood-app-shell-view-category .jood-store-filter-selects button[type="reset"],
#jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="reset"],
#jood-app.jood-app-shell-view-category .jood-store-filter-selects .jood-btn-ghost,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects a:not(.jood-btn-primary) {
  background: #FFFFFF !important;
  color: #2B170F !important;
  border-color: rgba(214,181,109,.76) !important;
}

/* =========================================================
   06.05 CATEGORY PRODUCT GRID + PRODUCT CARD
   Same style as the final Store product cards.
========================================================= */

#jood-app.jood-app-shell-view-category .jood-products-grid {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
  align-items: stretch !important;
  justify-content: start !important;
  padding: 0 !important;
  margin: 0 !important;
}

#jood-app.jood-app-shell-view-category .jood-products-grid > * {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

#jood-app.jood-app-shell-view-category .jood-product-card {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  display: grid !important;
  grid-template-rows: auto 1fr !important;
  position: relative !important;
  border-radius: 18px !important;
  border: 1px solid rgba(220,204,184,.70) !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
  box-shadow: 0 8px 18px rgba(10,22,37,.04) !important;
  overflow: hidden !important;
  transition: transform .22s cubic-bezier(.2,.75,.25,1), box-shadow .22s cubic-bezier(.2,.75,.25,1), border-color .22s cubic-bezier(.2,.75,.25,1) !important;
}

#jood-app.jood-app-shell-view-category .jood-product-card:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(214,181,109,.44) !important;
  box-shadow: 0 14px 30px rgba(10,22,37,.07) !important;
}

#jood-app.jood-app-shell-view-category .jood-product-media {
  width: 100% !important;
  aspect-ratio: 1 / .78 !important;
  min-height: 0 !important;
  display: grid !important;
  place-items: center !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 16px !important;
  background: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-category .jood-product-media::before,
#jood-app.jood-app-shell-view-category .jood-product-media::after {
  display: none !important;
  content: none !important;
}

#jood-app.jood-app-shell-view-category .jood-product-media img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  padding: 8px !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #FFFFFF !important;
  transform: none !important;
  transition: transform .24s cubic-bezier(.2,.75,.25,1) !important;
}

#jood-app.jood-app-shell-view-category .jood-product-card:hover .jood-product-media img {
  transform: scale(1.012) !important;
}

#jood-app.jood-app-shell-view-category .jood-product-badges,
#jood-app.jood-app-shell-view-category .jood-badges {
  position: absolute !important;
  z-index: 3 !important;
  top: 8px !important;
  inset-inline-end: 8px !important;
  display: flex !important;
  gap: 5px !important;
  flex-wrap: wrap !important;
}

#jood-app.jood-app-shell-view-category .jood-product-badge,
#jood-app.jood-app-shell-view-category .jood-badge,
#jood-app.jood-app-shell-view-category .onsale {
  min-height: 22px !important;
  padding: 4px 7px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #2B170F 0%, #2B170F 100%) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  box-shadow: 0 8px 18px rgba(10,22,37,.14) !important;
  font-size: 9px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-category .jood-product-media i {
  position: absolute !important;
  z-index: 4 !important;
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  inset-inline-start: 8px !important;
  bottom: 8px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 12px !important;
  background: linear-gradient(180deg, #2B170F 0%, #2B170F 100%) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255,255,255,.30) !important;
  box-shadow: 0 8px 18px rgba(10,22,37,.16) !important;
}

#jood-app.jood-app-shell-view-category .jood-product-media i::before,
#jood-app.jood-app-shell-view-category .jood-product-media i::after {
  content: "" !important;
  position: absolute !important;
  inset: 50% auto auto 50% !important;
  background: #FFFFFF !important;
  border-radius: 999px !important;
  transform: translate(-50%, -50%) !important;
}

#jood-app.jood-app-shell-view-category .jood-product-media i::before {
  width: 13px !important;
  height: 2px !important;
}

#jood-app.jood-app-shell-view-category .jood-product-media i::after {
  width: 2px !important;
  height: 13px !important;
}

#jood-app.jood-app-shell-view-category .jood-product-info {
  padding: 9px 10px 10px !important;
  display: grid !important;
  grid-template-rows: auto auto auto auto !important;
  align-content: start !important;
  justify-items: center !important;
  text-align: center !important;
  gap: 5px !important;
}

#jood-app.jood-app-shell-view-category .jood-product-cat {
  width: fit-content !important;
  max-width: 100% !important;
  min-height: 20px !important;
  margin: 0 auto 1px !important;
  padding: 3px 7px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
  border: 1px solid rgba(214,181,109,.24) !important;
  font-size: 9px !important;
  line-height: 1.2 !important;
  font-weight: 950 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

#jood-app.jood-app-shell-view-category .jood-product-title {
  width: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  color: #2B170F !important;
  font-size: 13px !important;
  line-height: 1.38 !important;
  font-weight: 950 !important;
  text-align: center !important;
  text-decoration: none !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-category .jood-product-excerpt {
  display: none !important;
}

#jood-app.jood-app-shell-view-category .jood-product-price,
#jood-app.jood-app-shell-view-category .jood-price,
#jood-app.jood-app-shell-view-category .price {
  width: 100% !important;
  margin: 1px 0 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 4px !important;
  color: #2B170F !important;
  text-align: center !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-category .jood-product-price .amount,
#jood-app.jood-app-shell-view-category .jood-price .amount,
#jood-app.jood-app-shell-view-category .price .amount {
  color: #2B170F !important;
  font-size: 13px !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-category .jood-product-actions {
  width: 100% !important;
  margin-top: 4px !important;
  padding-top: 0 !important;
  display: grid !important;
  grid-template-columns: 88px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 6px !important;
}

#jood-app.jood-app-shell-view-category .jood-product-actions .jood-btn,
#jood-app.jood-app-shell-view-category .jood-product-actions a,
#jood-app.jood-app-shell-view-category .jood-product-actions button {
  width: 100% !important;
  min-height: 35px !important;
  height: 35px !important;
  padding: 0 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 12px !important;
  font-size: 9.5px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-category .jood-product-actions .jood-btn-primary,
#jood-app.jood-app-shell-view-category .jood-product-actions .jood-add-cart,
#jood-app.jood-app-shell-view-category .jood-product-actions .add_to_cart_button {
  background: linear-gradient(135deg, #2B170F 0%, #2B170F 100%) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(10,22,37,.95) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 8px 16px rgba(10,22,37,.08) !important;
}

#jood-app.jood-app-shell-view-category .jood-product-actions .jood-btn-ghost {
  background: #FFFFFF !important;
  color: #2B170F !important;
  border: 1px solid rgba(214,181,109,.76) !important;
}

/* =========================================================
   06.06 SEARCH NOTE + PAGINATION + EMPTY STATE
========================================================= */

#jood-app.jood-app-shell-view-category .jood-search-result-note {
  width: 100% !important;
  margin: 0 0 12px !important;
  padding: 9px 11px !important;
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(214,181,109,.25) !important;
  background: #FFFFFF !important;
  color: #7B6758 !important;
  font-size: 11px !important;
  font-weight: 850 !important;
}

#jood-app.jood-app-shell-view-category .jood-search-result-note .jood-svg-icon {
  width: 16px !important;
  height: 16px !important;
  color: #2B170F !important;
}

#jood-app.jood-app-shell-view-category .jood-search-result-note strong {
  color: #2B170F !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-category .jood-search-result-note a {
  margin-inline-start: auto !important;
  min-height: 30px !important;
  padding: 6px 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  border-radius: 999px !important;
  border: 1px solid rgba(214,181,109,.76) !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
  font-size: 10px !important;
  font-weight: 950 !important;
}

/* =========================================================
   06.07 RESPONSIVE CATEGORY PAGE
========================================================= */

@media (max-width: 1180px) {
  #jood-app.jood-app-shell-view-category .jood-products-panel > form.jood-store-filters,
  #jood-app.jood-app-shell-view-category form.jood-store-filters {
    grid-template-columns: 1fr !important;
  }

  #jood-app.jood-app-shell-view-category .jood-store-filter-selects {
    grid-template-columns:
      minmax(120px, 1fr)
      minmax(120px, 1fr)
      minmax(120px, 1fr)
      minmax(86px, .65fr)
      minmax(78px, .6fr) !important;
  }

  #jood-app.jood-app-shell-view-category .jood-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 980px) {
  #jood-app.jood-app-shell-view-category .jood-category-hero {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-hero__visual {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-hero__stats {
    width: 100% !important;
  }
}

@media (max-width: 900px) {
  #jood-app.jood-app-shell-view-category .jood-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }
}

@media (max-width: 767px) {
  #jood-app.jood-app-shell-view-category .jood-app-main {
    width: min(100%, calc(100% - 12px)) !important;
    padding-top: 6px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-page {
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-hero {
    padding: 12px !important;
    border-radius: 22px !important;
    gap: 10px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-hero h2 {
    font-size: 31px !important;
    line-height: 1 !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-hero p,
  #jood-app.jood-app-shell-view-category .jood-category-hero__description,
  #jood-app.jood-app-shell-view-category .jood-category-hero__description p {
    font-size: 11px !important;
    line-height: 1.5 !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-hero__actions {
    gap: 7px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-hero__actions .jood-btn {
    min-height: 36px !important;
    padding: 8px 12px !important;
    border-radius: 13px !important;
    font-size: 10px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-hero__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-hero__stats div {
    min-height: 48px !important;
    padding: 6px !important;
    border-radius: 15px !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "value"
      "label" !important;
    justify-items: center !important;
    text-align: center !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-hero__stats .jood-svg-icon {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-hero__stats strong {
    font-size: 16px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-hero__stats span {
    font-size: 8.5px !important;
    white-space: normal !important;
  }

  #jood-app.jood-app-shell-view-category .jood-products-panel {
    padding: 8px !important;
    border-radius: 22px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-products__head {
    align-items: center !important;
    margin-bottom: 8px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-products__head h2 {
    font-size: 25px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-products__head p {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-products__back {
    min-height: 36px !important;
    padding: 7px 10px !important;
    border-radius: 13px !important;
    font-size: 10px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-products-panel > form.jood-store-filters,
  #jood-app.jood-app-shell-view-category form.jood-store-filters {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin-bottom: 10px !important;
    padding: 8px !important;
    border-radius: 20px !important;
    background: #FFFFFF !important;
  }

  #jood-app.jood-app-shell-view-category .jood-store-filter-search {
    width: 100% !important;
  }

  #jood-app.jood-app-shell-view-category .jood-store-filter-search label > span,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects label > span {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-category .jood-store-filter-search input {
    height: 44px !important;
    min-height: 44px !important;
    padding-inline: 44px 14px !important;
    border-radius: 17px !important;
    font-size: 11px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-store-filter-search .jood-svg-icon,
  #jood-app.jood-app-shell-view-category .jood-store-filter-search button .jood-svg-icon {
    top: 50% !important;
  }

  #jood-app.jood-app-shell-view-category .jood-store-filter-selects {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-template-areas:
      "cat sort stock"
      "apply apply reset" !important;
    gap: 7px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-store-filter-selects label:nth-of-type(1) {
    grid-area: cat !important;
  }

  #jood-app.jood-app-shell-view-category .jood-store-filter-selects label:nth-of-type(2) {
    grid-area: sort !important;
  }

  #jood-app.jood-app-shell-view-category .jood-store-filter-selects label:nth-of-type(3) {
    grid-area: stock !important;
  }

  #jood-app.jood-app-shell-view-category .jood-store-filter-selects select {
    width: 100% !important;
    height: 40px !important;
    min-height: 40px !important;
    padding-inline-start: 24px !important;
    padding-inline-end: 7px !important;
    border-radius: 14px !important;
    font-size: 10px !important;
    text-align: center !important;
    text-align-last: center !important;
  }

  #jood-app.jood-app-shell-view-category .jood-store-filter-selects label::after {
    inset-inline-start: 8px !important;
    bottom: 16px !important;
    width: 6px !important;
    height: 6px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-store-filter-selects button,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects .button,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="submit"],
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="reset"],
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects a {
    height: 42px !important;
    min-height: 42px !important;
    border-radius: 14px !important;
    font-size: 11px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-store-filter-selects button[type="submit"],
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="submit"],
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects .jood-btn-primary {
    grid-area: apply !important;
  }

  #jood-app.jood-app-shell-view-category .jood-store-filter-selects button[type="reset"],
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="reset"],
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects .jood-btn-ghost,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects a:not(.jood-btn-primary) {
    grid-area: reset !important;
  }

  #jood-app.jood-app-shell-view-category .jood-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    padding: 8px 0 0 !important;
  }

  #jood-app.jood-app-shell-view-category .jood-products-grid:has(> :only-child) {
    grid-template-columns: minmax(0, min(100%, 280px)) !important;
    justify-content: center !important;
  }

  #jood-app.jood-app-shell-view-category .jood-product-card {
    border-radius: 17px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-product-media {
    aspect-ratio: 1 / .82 !important;
    border-radius: 15px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-product-media img {
    padding: 6px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-product-media i {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    bottom: 7px !important;
    inset-inline-start: 7px !important;
    border-radius: 11px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-product-info {
    padding: 8px 8px 9px !important;
    gap: 5px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-product-cat {
    min-height: 20px !important;
    padding: 3px 7px !important;
    font-size: 8.5px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-product-title {
    font-size: 11.5px !important;
    line-height: 1.35 !important;
  }

  #jood-app.jood-app-shell-view-category .jood-product-price,
  #jood-app.jood-app-shell-view-category .jood-product-price .amount,
  #jood-app.jood-app-shell-view-category .jood-price,
  #jood-app.jood-app-shell-view-category .jood-price .amount,
  #jood-app.jood-app-shell-view-category .price,
  #jood-app.jood-app-shell-view-category .price .amount {
    font-size: 12.5px !important;
    line-height: 1.15 !important;
  }

  #jood-app.jood-app-shell-view-category .jood-product-actions {
    grid-template-columns: 1fr !important;
    gap: 5px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-product-actions .jood-btn,
  #jood-app.jood-app-shell-view-category .jood-product-actions a,
  #jood-app.jood-app-shell-view-category .jood-product-actions button {
    min-height: 35px !important;
    height: 35px !important;
    border-radius: 12px !important;
    font-size: 9.5px !important;
  }
}

@media (max-width: 360px) {
  #jood-app.jood-app-shell-view-category .jood-products-grid {
    gap: 9px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-product-media {
    aspect-ratio: 1 / .86 !important;
  }

  #jood-app.jood-app-shell-view-category .jood-product-info {
    padding: 7px !important;
  }
}


/* =========================================================
   06 CATEGORY PAGE — HERO BALANCE + MOBILE NAV REMOVE V9
   Fixes from live category screenshots:
   - Better category hero distribution.
   - Buttons match title/content width.
   - Mobile buttons in one row.
   - Hide category visual/image on mobile.
   - Remove plugin bottom mobile nav completely because site already has one.
========================================================= */

/* ---------- Remove plugin mobile bottom nav completely ---------- */

#jood-app .jood-app-bottom-nav {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

#jood-app.jood-app-with-bottom-nav .jood-app-main {
  padding-bottom: var(--jood-main-bottom, 70px) !important;
}

@media (max-width: 767px) {
  #jood-app.jood-app-with-bottom-nav .jood-app-main {
    padding-bottom: 38px !important;
  }
}

/* ---------- Category hero desktop rebalance ---------- */

#jood-app.jood-app-shell-view-category .jood-category-hero {
  grid-template-columns: minmax(0, 1fr) minmax(230px, 300px) !important;
  grid-template-areas: "content visual" !important;
  align-items: center !important;
  padding: clamp(16px, 2vw, 24px) !important;
  gap: clamp(18px, 2.4vw, 34px) !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__content {
  grid-area: content !important;
  width: min(760px, 100%) !important;
  justify-self: end !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__visual {
  grid-area: visual !important;
  justify-self: start !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__image,
#jood-app.jood-app-shell-view-category .jood-category-hero__abstract {
  width: min(280px, 100%) !important;
  aspect-ratio: 1.22 / 1 !important;
  border-radius: 22px !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero h2 {
  max-width: 620px !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero p,
#jood-app.jood-app-shell-view-category .jood-category-hero__description,
#jood-app.jood-app-shell-view-category .jood-category-hero__description p {
  max-width: 620px !important;
}

/* Buttons: same visual width as content/title area */
#jood-app.jood-app-shell-view-category .jood-category-hero__actions {
  width: min(420px, 100%) !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
  margin-top: 8px !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__actions .jood-btn {
  width: 100% !important;
  min-height: 42px !important;
  justify-content: center !important;
  text-align: center !important;
}

/* Stats under buttons, aligned cleanly with content */
#jood-app.jood-app-shell-view-category .jood-category-hero__stats {
  width: min(520px, 100%) !important;
  margin-top: 10px !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

/* Breadcrumbs/kicker stay compact */
#jood-app.jood-app-shell-view-category .jood-breadcrumbs,
#jood-app.jood-app-shell-view-category .jood-category-hero .jood-eyebrow {
  max-width: 100% !important;
}

/* ---------- Category products head balance ---------- */

#jood-app.jood-app-shell-view-category .jood-category-products__head {
  align-items: center !important;
}

#jood-app.jood-app-shell-view-category .jood-category-products__head > div {
  width: min(720px, 100%) !important;
}

#jood-app.jood-app-shell-view-category .jood-category-products__back {
  min-width: 112px !important;
  justify-content: center !important;
}

/* ---------- Mobile: hide visual entirely + buttons in one row ---------- */

@media (max-width: 767px) {
  #jood-app.jood-app-shell-view-category .jood-category-hero {
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-areas: "content" !important;
    padding: 12px !important;
    border-radius: 22px !important;
    text-align: center !important;
    justify-items: center !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-hero__content {
    width: 100% !important;
    justify-self: stretch !important;
    justify-items: center !important;
    text-align: center !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-hero__visual,
  #jood-app.jood-app-shell-view-category .jood-category-hero__image,
  #jood-app.jood-app-shell-view-category .jood-category-hero__abstract {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-category .jood-breadcrumbs {
    max-width: 100% !important;
    justify-content: center !important;
    margin-inline: auto !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-hero .jood-eyebrow {
    margin-inline: auto !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-hero h2 {
    max-width: 100% !important;
    font-size: 30px !important;
    text-align: center !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-hero p,
  #jood-app.jood-app-shell-view-category .jood-category-hero__description,
  #jood-app.jood-app-shell-view-category .jood-category-hero__description p {
    max-width: 100% !important;
    text-align: center !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-hero__actions {
    width: 100% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin-top: 8px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-hero__actions .jood-btn {
    width: 100% !important;
    min-height: 40px !important;
    padding: 8px 10px !important;
    border-radius: 14px !important;
    font-size: 10px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-hero__stats {
    width: 100% !important;
    margin-top: 8px !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-hero__stats div {
    min-height: 50px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-products__head {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-products__head > div {
    width: 100% !important;
    min-width: 0 !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-products__head h2 {
    font-size: 24px !important;
    line-height: 1.1 !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-products__back {
    min-width: 88px !important;
    min-height: 35px !important;
    padding: 7px 9px !important;
    font-size: 9.5px !important;
  }
}

@media (max-width: 380px) {
  #jood-app.jood-app-shell-view-category .jood-category-hero__actions {
    gap: 6px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-hero__actions .jood-btn {
    font-size: 9.5px !important;
    padding-inline: 8px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-hero__stats span {
    font-size: 8px !important;
  }
}



/* =========================================================
   07 PRODUCT PAGE — JOOD PREMIUM PRODUCT EXPERIENCE
   Built from templates/product.php actual classes:
   .jood-product-page
   .jood-product-hero
   .jood-product-gallery
   .jood-product-gallery__main
   .jood-product-gallery__thumbs
   .jood-product-thumb
   .jood-product-summary
   .jood-product-category-links
   .jood-product-short-desc
   .jood-product-summary__price-row
   .jood-product-stock
   .jood-product-trust-row
   .jood-product-cart-form
   .jood-product-variations
   .jood-product-variation-field
   .jood-selected-variation-box
   .jood-product-buy-panel
   .jood-product-quantity
   .jood-qty-control
   .jood-product-add-to-cart
   .jood-product-details-grid
   .jood-product-detail-card
   .jood-product-rich-text
   .jood-product-meta-list
   .jood-product-related
========================================================= */

/* =========================================================
   07.00 PRODUCT VIEW TOKENS + FOUNDATION
========================================================= */

#jood-app.jood-app-shell-view-product {
  --jood-product-page-max: 1180px;
  --jood-product-ink: #2B170F;
  --jood-product-ink-2: #2B170F;
  --jood-product-ink-3: #3A2116;
  --jood-product-gold: #B9854D;
  --jood-product-gold-2: #D7B179;
  --jood-product-gold-3: #F6E9D8;
  --jood-product-cream: #FFFFFF;
  --jood-product-paper: #FFFFFF;
  --jood-product-line: rgba(214, 181, 109, .70);
  --jood-product-line-soft: rgba(232, 220, 199, .86);
  --jood-product-muted: #7B6758;
  --jood-product-brown: #2B170F;
  --jood-current-max: 1180px;
  background: #FFFFFF !important;
  color: var(--jood-product-ink) !important;
}

#jood-app.jood-app-shell-view-product .jood-app-main {
  width: min(var(--jood-product-page-max), calc(100% - 28px)) !important;
  max-width: 100% !important;
  margin-inline: auto !important;
  padding-top: 12px !important;
  padding-bottom: max(44px, var(--jood-main-bottom, 70px)) !important;
  background: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-product .jood-app-content-product,
#jood-app.jood-app-shell-view-product .jood-product-page {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 14px !important;
  background: #FFFFFF !important;
  position: relative !important;
  isolation: isolate !important;
}

#jood-app.jood-app-shell-view-product .jood-product-page::before,
#jood-app.jood-app-shell-view-product .jood-product-page::after {
  display: none !important;
  content: none !important;
}

/* =========================================================
   07.01 PRODUCT HERO — PREMIUM APP PRODUCT LAYOUT
========================================================= */

#jood-app.jood-app-shell-view-product .jood-product-hero {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: clamp(12px, 1.8vw, 18px) !important;
  display: grid !important;
  grid-template-columns: minmax(380px, .92fr) minmax(0, 1.08fr) !important;
  gap: clamp(14px, 2vw, 24px) !important;
  align-items: stretch !important;
  border: 1px solid rgba(220, 204, 184, .72) !important;
  border-radius: 30px !important;
  background:
    linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 62%, #FFFFFF 100%) !important;
  box-shadow:
    0 14px 34px rgba(10, 22, 37, .045),
    inset 0 1px 0 rgba(255,255,255,.90) !important;
  position: relative !important;
  overflow: visible !important;
}

#jood-app.jood-app-shell-view-product .jood-product-hero::before {
  content: "" !important;
  position: absolute !important;
  inset-inline: 28px !important;
  top: 0 !important;
  height: 2px !important;
  border-radius: 0 0 999px 999px !important;
  background: linear-gradient(90deg, transparent, rgba(214,181,109,.62), transparent) !important;
  pointer-events: none !important;
}

/* =========================================================
   07.02 GALLERY — WHITE CLEAN, FULL IMAGE, THUMBS
========================================================= */

#jood-app.jood-app-shell-view-product .jood-product-gallery {
  width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  grid-template-rows: minmax(0, auto) auto !important;
  align-content: start !important;
  gap: 10px !important;
  position: relative !important;
}

#jood-app.jood-app-shell-view-product .jood-product-gallery__main {
  width: 100% !important;
  min-width: 0 !important;
  aspect-ratio: 1 / .82 !important;
  min-height: 360px !important;
  display: grid !important;
  place-items: center !important;
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid rgba(220,204,184,.72) !important;
  border-radius: 26px !important;
  background: #FFFFFF !important;
  box-shadow:
    0 10px 26px rgba(10,22,37,.04),
    inset 0 1px 0 rgba(255,255,255,.92) !important;
}

#jood-app.jood-app-shell-view-product .jood-product-gallery__main::before,
#jood-app.jood-app-shell-view-product .jood-product-gallery__main::after {
  display: none !important;
  content: none !important;
}

#jood-app.jood-app-shell-view-product .jood-product-main-image,
#jood-app.jood-app-shell-view-product .jood-product-gallery__main img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center center !important;
  padding: clamp(10px, 1.6vw, 18px) !important;
  background: #FFFFFF !important;
  transform: none !important;
}

#jood-app.jood-app-shell-view-product .jood-product-gallery__placeholder {
  width: min(180px, 60%) !important;
  aspect-ratio: 1 !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 28px !important;
  border: 1px dashed rgba(214,181,109,.82) !important;
  background: #FFFFFF !important;
  color: #B9854D !important;
}

#jood-app.jood-app-shell-view-product .jood-product-gallery__placeholder .jood-svg-icon {
  width: 56px !important;
  height: 56px !important;
}

#jood-app.jood-app-shell-view-product .jood-product-badges,
#jood-app.jood-app-shell-view-product .jood-badges {
  position: absolute !important;
  z-index: 4 !important;
  top: 12px !important;
  inset-inline-end: 12px !important;
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
}

#jood-app.jood-app-shell-view-product .jood-product-badge,
#jood-app.jood-app-shell-view-product .jood-badge,
#jood-app.jood-app-shell-view-product .onsale {
  min-height: 28px !important;
  padding: 6px 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #2B170F 0%, #2B170F 100%) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  box-shadow: 0 8px 18px rgba(10,22,37,.14) !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-product .jood-product-gallery__thumbs {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  grid-auto-flow: column !important;
  grid-auto-columns: 74px !important;
  gap: 8px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  padding: 2px 0 8px !important;
  scroll-snap-type: x mandatory !important;
  scrollbar-width: thin !important;
}

#jood-app.jood-app-shell-view-product .jood-product-thumb {
  width: 74px !important;
  height: 74px !important;
  padding: 4px !important;
  display: grid !important;
  place-items: center !important;
  border: 1px solid rgba(220,204,184,.70) !important;
  border-radius: 18px !important;
  background: #FFFFFF !important;
  box-shadow: 0 5px 12px rgba(10,22,37,.035) !important;
  overflow: hidden !important;
  scroll-snap-align: start !important;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease !important;
}

#jood-app.jood-app-shell-view-product .jood-product-thumb:hover,
#jood-app.jood-app-shell-view-product .jood-product-thumb.is-active {
  border-color: rgba(214,181,109,.78) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 18px rgba(10,22,37,.065) !important;
}

#jood-app.jood-app-shell-view-product .jood-product-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #FFFFFF !important;
}

/* =========================================================
   07.03 SUMMARY — TITLE, CATEGORY LINKS, PRICE, STOCK
========================================================= */

#jood-app.jood-app-shell-view-product .jood-product-summary {
  width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  align-content: start !important;
  gap: 12px !important;
  padding: clamp(10px, 1.5vw, 16px) !important;
  border-radius: 26px !important;
  border: 1px solid rgba(220,204,184,.62) !important;
  background: #FFFFFF !important;
  box-shadow: 0 10px 26px rgba(10,22,37,.035) !important;
}

#jood-app.jood-app-shell-view-product .jood-product-summary .jood-breadcrumbs {
  width: fit-content !important;
  max-width: 100% !important;
  min-height: 28px !important;
  padding: 5px 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(214,181,109,.72) !important;
  background: #FFFFFF !important;
  color: #7B6758 !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 850 !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-product .jood-product-summary .jood-breadcrumbs a,
#jood-app.jood-app-shell-view-product .jood-product-summary .jood-breadcrumbs span {
  color: inherit !important;
  white-space: nowrap !important;
}

#jood-app.jood-app-shell-view-product .jood-product-category-links {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
}

#jood-app.jood-app-shell-view-product .jood-product-category-links a {
  min-height: 24px !important;
  padding: 4px 9px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
  border: 1px solid rgba(214,181,109,.24) !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-product .jood-product-summary h2 {
  margin: 0 !important;
  color: #2B170F !important;
  font-size: clamp(28px, 3.1vw, 48px) !important;
  line-height: 1.1 !important;
  font-weight: 950 !important;
  letter-spacing: -.9px !important;
}

#jood-app.jood-app-shell-view-product .jood-product-short-desc {
  width: min(680px, 100%) !important;
  margin: 0 !important;
  color: #7B6758 !important;
  font-size: 13px !important;
  line-height: 1.75 !important;
  font-weight: 800 !important;
}

#jood-app.jood-app-shell-view-product .jood-product-summary__price-row {
  width: 100% !important;
  min-width: 0 !important;
  padding: 10px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 10px !important;
  border: 1px solid rgba(220,204,184,.70) !important;
  border-radius: 20px !important;
  background: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-product .jood-product-summary__price-row .jood-product-price,
#jood-app.jood-app-shell-view-product .jood-product-summary__price-row .jood-price,
#jood-app.jood-app-shell-view-product .jood-product-summary__price-row .price {
  margin: 0 !important;
  display: flex !important;
  align-items: baseline !important;
  justify-content: flex-start !important;
  flex-wrap: wrap !important;
  gap: 5px !important;
  color: #2B170F !important;
  font-size: clamp(18px, 2vw, 26px) !important;
  line-height: 1.2 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-product .jood-product-summary__price-row .amount {
  color: #2B170F !important;
  font-size: clamp(18px, 2vw, 26px) !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-product .jood-product-summary__price-row del {
  color: rgba(117,108,96,.70) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

#jood-app.jood-app-shell-view-product .jood-product-summary__price-row ins {
  color: #2B170F !important;
  text-decoration: none !important;
}

#jood-app.jood-app-shell-view-product .jood-product-stock {
  min-height: 36px !important;
  padding: 8px 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  border-radius: 999px !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  white-space: nowrap !important;
  border: 1px solid rgba(31,138,91,.22) !important;
  background: #eaf7f1 !important;
  color: #1f8a5b !important;
}

#jood-app.jood-app-shell-view-product .jood-product-stock.is-out-of-stock {
  border-color: rgba(184,64,52,.22) !important;
  background: #fff0ee !important;
  color: #b84034 !important;
}

#jood-app.jood-app-shell-view-product .jood-product-stock .jood-svg-icon {
  width: 16px !important;
  height: 16px !important;
}

/* =========================================================
   07.04 TRUST ROW
========================================================= */

#jood-app.jood-app-shell-view-product .jood-product-trust-row {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

#jood-app.jood-app-shell-view-product .jood-product-trust-row div {
  min-width: 0 !important;
  min-height: 46px !important;
  padding: 9px 10px !important;
  display: grid !important;
  grid-template-columns: 30px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 8px !important;
  border: 1px solid rgba(220,204,184,.70) !important;
  border-radius: 16px !important;
  background: #FFFFFF !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.92), 0 4px 10px rgba(10,22,37,.025) !important;
}

#jood-app.jood-app-shell-view-product .jood-product-trust-row .jood-svg-icon {
  width: 30px !important;
  height: 30px !important;
  padding: 7px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 12px !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
  border: 1px solid rgba(214,181,109,.24) !important;
}

#jood-app.jood-app-shell-view-product .jood-product-trust-row span {
  min-width: 0 !important;
  color: #7B6758 !important;
  font-size: 11px !important;
  line-height: 1.4 !important;
  font-weight: 850 !important;
}

/* =========================================================
   07.05 CART FORM + VARIATIONS + QUANTITY
========================================================= */

#jood-app.jood-app-shell-view-product .jood-product-cart-form {
  width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  gap: 10px !important;
}

#jood-app.jood-app-shell-view-product .jood-product-variations {
  width: 100% !important;
  padding: 10px !important;
  display: grid !important;
  gap: 10px !important;
  border: 1px solid rgba(220,204,184,.70) !important;
  border-radius: 20px !important;
  background: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-product .jood-product-variations__head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
}

#jood-app.jood-app-shell-view-product .jood-section-kicker {
  width: fit-content !important;
  min-height: 22px !important;
  padding: 4px 9px !important;
  display: inline-flex !important;
  align-items: center !important;
  border-radius: 999px !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
  border: 1px solid rgba(214,181,109,.24) !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-product .jood-product-variations__head strong {
  color: #2B170F !important;
  font-size: 12px !important;
  line-height: 1.3 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-product .jood-product-variation-field {
  width: 100% !important;
  display: grid !important;
  gap: 5px !important;
  position: relative !important;
}

#jood-app.jood-app-shell-view-product .jood-product-variation-field > span {
  color: #2B170F !important;
  font-size: 10px !important;
  line-height: 1.2 !important;
  font-weight: 950 !important;
  padding-inline: 5px !important;
}

#jood-app.jood-app-shell-view-product .jood-product-variation-field select {
  width: 100% !important;
  height: 44px !important;
  min-height: 44px !important;
  padding-inline: 14px 34px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  border: 1px solid rgba(214,181,109,.76) !important;
  border-radius: 15px !important;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%) !important;
  color: #2B170F !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.96), 0 4px 10px rgba(10,22,37,.025) !important;
}

#jood-app.jood-app-shell-view-product .jood-product-variation-field::after {
  content: "" !important;
  position: absolute !important;
  inset-inline-start: 14px !important;
  bottom: 17px !important;
  width: 7px !important;
  height: 7px !important;
  border-inline-end: 2px solid #2B170F !important;
  border-bottom: 2px solid #2B170F !important;
  transform: rotate(45deg) !important;
  pointer-events: none !important;
}

#jood-app.jood-app-shell-view-product .jood-selected-variation-box {
  width: 100% !important;
  padding: 9px 10px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 8px !important;
  border: 1px solid rgba(214,181,109,.24) !important;
  border-radius: 16px !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
}

#jood-app.jood-app-shell-view-product .jood-selected-variation-box[hidden] {
  display: none !important;
}

#jood-app.jood-app-shell-view-product .jood-selected-variation-box span,
#jood-app.jood-app-shell-view-product .jood-selected-variation-box small {
  color: #7B6758 !important;
  font-size: 10px !important;
  font-weight: 850 !important;
}

#jood-app.jood-app-shell-view-product .jood-selected-variation-box strong {
  color: #2B170F !important;
  font-size: 13px !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-product .jood-product-buy-panel {
  width: 100% !important;
  min-width: 0 !important;
  padding: 10px !important;
  display: grid !important;
  grid-template-columns: minmax(150px, .62fr) minmax(0, 1fr) minmax(110px, .42fr) !important;
  align-items: stretch !important;
  gap: 8px !important;
  border: 1px solid rgba(220,204,184,.70) !important;
  border-radius: 20px !important;
  background: #FFFFFF !important;
  box-shadow: 0 8px 18px rgba(10,22,37,.035) !important;
}

#jood-app.jood-app-shell-view-product .jood-product-quantity {
  min-width: 0 !important;
  display: grid !important;
  gap: 5px !important;
}

#jood-app.jood-app-shell-view-product .jood-product-quantity > span {
  color: #2B170F !important;
  font-size: 10px !important;
  line-height: 1.2 !important;
  font-weight: 950 !important;
  padding-inline: 5px !important;
}

#jood-app.jood-app-shell-view-product .jood-qty-control {
  width: 100% !important;
  min-height: 44px !important;
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr) 42px !important;
  overflow: hidden !important;
  border: 1px solid rgba(214,181,109,.76) !important;
  border-radius: 15px !important;
  background: #FFFFFF !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.96), 0 4px 10px rgba(10,22,37,.025) !important;
}

#jood-app.jood-app-shell-view-product .jood-qty-control button {
  width: 100% !important;
  height: 44px !important;
  display: grid !important;
  place-items: center !important;
  color: #2B170F !important;
  background: #FFFFFF !important;
  border: 0 !important;
  font-size: 18px !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-product .jood-qty-control input {
  width: 100% !important;
  height: 44px !important;
  border: 0 !important;
  text-align: center !important;
  color: #2B170F !important;
  background: #FFFFFF !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  appearance: textfield !important;
  -moz-appearance: textfield !important;
}

#jood-app.jood-app-shell-view-product .jood-qty-control input::-webkit-outer-spin-button,
#jood-app.jood-app-shell-view-product .jood-qty-control input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

#jood-app.jood-app-shell-view-product .jood-product-buy-panel .jood-btn,
#jood-app.jood-app-shell-view-product .jood-product-add-to-cart {
  width: 100% !important;
  min-height: 44px !important;
  height: auto !important;
  padding: 10px 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  border-radius: 15px !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-product .jood-product-add-to-cart,
#jood-app.jood-app-shell-view-product .jood-product-buy-panel .jood-btn-primary {
  background: linear-gradient(135deg, #2B170F 0%, #2B170F 100%) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(10,22,37,.95) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 8px 16px rgba(10,22,37,.08) !important;
}

#jood-app.jood-app-shell-view-product .jood-product-add-to-cart:hover,
#jood-app.jood-app-shell-view-product .jood-product-buy-panel .jood-btn-primary:hover {
  background: linear-gradient(135deg, #2B170F 0%, #2B170F 100%) !important;
}

#jood-app.jood-app-shell-view-product .jood-product-buy-panel .jood-btn-ghost {
  background: #FFFFFF !important;
  color: #2B170F !important;
  border: 1px solid rgba(214,181,109,.76) !important;
}

#jood-app.jood-app-shell-view-product .jood-product-add-to-cart .jood-svg-icon,
#jood-app.jood-app-shell-view-product .jood-product-buy-panel .jood-btn .jood-svg-icon {
  width: 17px !important;
  height: 17px !important;
  color: currentColor !important;
}

#jood-app.jood-app-shell-view-product .jood-product-unavailable {
  width: 100% !important;
  padding: 12px !important;
  display: grid !important;
  grid-template-columns: 38px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 10px !important;
  border: 1px solid rgba(184,64,52,.20) !important;
  border-radius: 18px !important;
  background: #fff0ee !important;
  color: #b84034 !important;
}

#jood-app.jood-app-shell-view-product .jood-product-unavailable .jood-svg-icon {
  width: 38px !important;
  height: 38px !important;
  padding: 9px !important;
  border-radius: 14px !important;
  background: rgba(184,64,52,.08) !important;
}

#jood-app.jood-app-shell-view-product .jood-product-unavailable strong {
  display: block !important;
  font-size: 13px !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-product .jood-product-unavailable span {
  display: block !important;
  margin-top: 2px !important;
  font-size: 11px !important;
  font-weight: 800 !important;
}

/* =========================================================
   07.06 DETAILS GRID — DESCRIPTION + META
========================================================= */

#jood-app.jood-app-shell-view-product .jood-product-details-grid {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr) !important;
  gap: 14px !important;
  align-items: start !important;
}

#jood-app.jood-app-shell-view-product .jood-product-detail-card {
  width: 100% !important;
  min-width: 0 !important;
  padding: clamp(12px, 1.6vw, 18px) !important;
  display: grid !important;
  gap: 12px !important;
  border: 1px solid rgba(220,204,184,.72) !important;
  border-radius: 26px !important;
  background: #FFFFFF !important;
  box-shadow: 0 10px 26px rgba(10,22,37,.035) !important;
}

#jood-app.jood-app-shell-view-product .jood-product-detail-card__head {
  display: grid !important;
  grid-template-columns: 40px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 10px !important;
}

#jood-app.jood-app-shell-view-product .jood-product-detail-card__head > .jood-svg-icon {
  width: 40px !important;
  height: 40px !important;
  padding: 10px !important;
  border-radius: 16px !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
  border: 1px solid rgba(214,181,109,.24) !important;
}

#jood-app.jood-app-shell-view-product .jood-product-detail-card__head h3 {
  margin: 5px 0 0 !important;
  color: #2B170F !important;
  font-size: clamp(20px, 2vw, 28px) !important;
  line-height: 1.1 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-product .jood-product-rich-text,
#jood-app.jood-app-shell-view-product .jood-product-muted-text {
  color: #26364d !important;
  font-size: 13px !important;
  line-height: 1.9 !important;
  font-weight: 750 !important;
}

#jood-app.jood-app-shell-view-product .jood-product-rich-text p + p {
  margin-top: 10px !important;
}

#jood-app.jood-app-shell-view-product .jood-product-rich-text ul,
#jood-app.jood-app-shell-view-product .jood-product-rich-text ol {
  display: grid !important;
  gap: 7px !important;
  padding: 0 !important;
  margin: 0 !important;
}

#jood-app.jood-app-shell-view-product .jood-product-rich-text li {
  position: relative !important;
  padding-inline-start: 16px !important;
}

#jood-app.jood-app-shell-view-product .jood-product-rich-text li::before {
  content: "" !important;
  position: absolute !important;
  inset-inline-start: 0 !important;
  top: .78em !important;
  width: 6px !important;
  height: 6px !important;
  border-radius: 999px !important;
  background: #B9854D !important;
}

#jood-app.jood-app-shell-view-product .jood-product-meta-list {
  display: grid !important;
  gap: 8px !important;
}

#jood-app.jood-app-shell-view-product .jood-product-meta-list div {
  min-width: 0 !important;
  min-height: 46px !important;
  padding: 9px 10px !important;
  display: grid !important;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr) !important;
  align-items: center !important;
  gap: 10px !important;
  border: 1px solid rgba(220,204,184,.62) !important;
  border-radius: 16px !important;
  background: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-product .jood-product-meta-list span {
  color: #7B6758 !important;
  font-size: 11px !important;
  line-height: 1.35 !important;
  font-weight: 850 !important;
}

#jood-app.jood-app-shell-view-product .jood-product-meta-list strong {
  min-width: 0 !important;
  color: #2B170F !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
  font-weight: 950 !important;
  text-align: end !important;
  overflow-wrap: anywhere !important;
}

/* =========================================================
   07.07 RELATED PRODUCTS — SAME STORE/CATEGORY PRODUCT CARDS
========================================================= */

#jood-app.jood-app-shell-view-product .jood-product-related {
  width: 100% !important;
  display: grid !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
}

#jood-app.jood-app-shell-view-product .jood-section-head {
  padding: 10px 12px !important;
  display: flex !important;
  align-items: end !important;
  justify-content: space-between !important;
  gap: 12px !important;
  border: 1px solid rgba(220,204,184,.68) !important;
  border-radius: 22px !important;
  background: #FFFFFF !important;
  box-shadow: 0 8px 18px rgba(10,22,37,.035) !important;
}

#jood-app.jood-app-shell-view-product .jood-section-head h2 {
  margin-top: 5px !important;
  color: #2B170F !important;
  font-size: clamp(22px, 2.2vw, 34px) !important;
  line-height: 1.08 !important;
  font-weight: 950 !important;
  letter-spacing: -.7px !important;
}

#jood-app.jood-app-shell-view-product .jood-section-head p {
  margin-top: 5px !important;
  color: #7B6758 !important;
  font-size: 12px !important;
  line-height: 1.6 !important;
  font-weight: 800 !important;
}

#jood-app.jood-app-shell-view-product .jood-section-head__link {
  min-height: 38px !important;
  padding: 8px 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(214,181,109,.76) !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
  font-size: 11px !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-product .jood-product-carousel,
#jood-app.jood-app-shell-view-product .jood-product-related__rail {
  width: 100% !important;
  max-width: 100% !important;
  display: grid !important;
  grid-auto-flow: column !important;
  grid-auto-columns: minmax(210px, 260px) !important;
  gap: 12px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  padding: 2px 0 10px !important;
  scroll-snap-type: x mandatory !important;
  scrollbar-width: thin !important;
}

#jood-app.jood-app-shell-view-product .jood-product-carousel > * {
  scroll-snap-align: start !important;
}

/* Reuse compact card styling for related cards */
#jood-app.jood-app-shell-view-product .jood-product-carousel .jood-product-card {
  border-radius: 18px !important;
  background: #FFFFFF !important;
  border: 1px solid rgba(220,204,184,.70) !important;
  box-shadow: 0 8px 18px rgba(10,22,37,.04) !important;
}

#jood-app.jood-app-shell-view-product .jood-product-carousel .jood-product-media {
  aspect-ratio: 1 / .82 !important;
  background: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-product .jood-product-carousel .jood-product-media img {
  object-fit: contain !important;
  background: #FFFFFF !important;
  padding: 8px !important;
}

#jood-app.jood-app-shell-view-product .jood-product-carousel .jood-product-info {
  padding: 9px 10px 10px !important;
  gap: 5px !important;
  text-align: center !important;
  justify-items: center !important;
}

/* =========================================================
   07.08 RESPONSIVE PRODUCT PAGE
========================================================= */

@media (max-width: 1120px) {
  #jood-app.jood-app-shell-view-product .jood-product-hero {
    grid-template-columns: minmax(330px, .92fr) minmax(0, 1.08fr) !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-buy-panel {
    grid-template-columns: minmax(130px, .58fr) minmax(0, 1fr) !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-buy-panel .jood-btn-ghost {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 980px) {
  #jood-app.jood-app-shell-view-product .jood-product-hero {
    grid-template-columns: 1fr !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-gallery__main {
    min-height: 320px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-details-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 767px) {
  #jood-app.jood-app-shell-view-product .jood-app-main {
    width: min(100%, calc(100% - 12px)) !important;
    padding-top: 6px !important;
    padding-bottom: 38px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-page {
    gap: 10px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-hero {
    padding: 8px !important;
    border-radius: 22px !important;
    gap: 10px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-gallery {
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-gallery__main {
    min-height: 0 !important;
    aspect-ratio: 1 / .86 !important;
    border-radius: 20px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-main-image,
  #jood-app.jood-app-shell-view-product .jood-product-gallery__main img {
    padding: 8px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-badge,
  #jood-app.jood-app-shell-view-product .jood-badge,
  #jood-app.jood-app-shell-view-product .onsale {
    min-height: 24px !important;
    padding: 5px 8px !important;
    font-size: 9px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-gallery__thumbs {
    grid-auto-columns: 58px !important;
    gap: 6px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-thumb {
    width: 58px !important;
    height: 58px !important;
    border-radius: 14px !important;
    padding: 3px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-summary {
    padding: 10px !important;
    border-radius: 20px !important;
    gap: 10px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-summary .jood-breadcrumbs {
    max-width: 100% !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-category-links {
    gap: 5px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-category-links a {
    min-height: 22px !important;
    padding: 4px 8px !important;
    font-size: 9px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-summary h2 {
    font-size: 28px !important;
    line-height: 1.12 !important;
    letter-spacing: -.55px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-short-desc {
    font-size: 12px !important;
    line-height: 1.65 !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-summary__price-row {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 9px !important;
    border-radius: 17px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-summary__price-row .jood-product-price,
  #jood-app.jood-app-shell-view-product .jood-product-summary__price-row .jood-price,
  #jood-app.jood-app-shell-view-product .jood-product-summary__price-row .price {
    justify-content: center !important;
    text-align: center !important;
    font-size: 20px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-summary__price-row .amount {
    font-size: 20px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-stock {
    width: 100% !important;
    justify-content: center !important;
    min-height: 34px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-trust-row {
    grid-template-columns: 1fr !important;
    gap: 7px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-trust-row div {
    min-height: 42px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-variations {
    padding: 9px !important;
    border-radius: 18px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-variations__head {
    display: grid !important;
    gap: 5px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-variation-field select {
    height: 42px !important;
    min-height: 42px !important;
    border-radius: 14px !important;
    font-size: 11px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-buy-panel {
    padding: 9px !important;
    border-radius: 18px !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-quantity {
    grid-template-columns: auto minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-quantity > span {
    padding: 0 !important;
    white-space: nowrap !important;
  }

  #jood-app.jood-app-shell-view-product .jood-qty-control {
    min-height: 42px !important;
    grid-template-columns: 40px minmax(0, 1fr) 40px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-qty-control button,
  #jood-app.jood-app-shell-view-product .jood-qty-control input {
    height: 42px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-buy-panel .jood-btn,
  #jood-app.jood-app-shell-view-product .jood-product-add-to-cart {
    min-height: 42px !important;
    border-radius: 14px !important;
    font-size: 11px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-detail-card {
    padding: 11px !important;
    border-radius: 20px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-detail-card__head {
    grid-template-columns: 36px minmax(0, 1fr) !important;
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-detail-card__head > .jood-svg-icon {
    width: 36px !important;
    height: 36px !important;
    padding: 9px !important;
    border-radius: 14px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-detail-card__head h3 {
    font-size: 21px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-rich-text,
  #jood-app.jood-app-shell-view-product .jood-product-muted-text {
    font-size: 12px !important;
    line-height: 1.85 !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-meta-list div {
    min-height: 42px !important;
    padding: 8px 9px !important;
    border-radius: 14px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-related .jood-section-head {
    padding: 9px !important;
    border-radius: 18px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-section-head h2 {
    font-size: 23px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-section-head p {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-product .jood-section-head__link {
    min-height: 34px !important;
    padding: 7px 10px !important;
    border-radius: 13px !important;
    font-size: 10px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-carousel,
  #jood-app.jood-app-shell-view-product .jood-product-related__rail {
    grid-auto-columns: minmax(160px, 46vw) !important;
    gap: 10px !important;
  }
}

@media (max-width: 390px) {
  #jood-app.jood-app-shell-view-product .jood-product-summary h2 {
    font-size: 25px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-short-desc {
    font-size: 11px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-meta-list div {
    grid-template-columns: 1fr !important;
    gap: 3px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-meta-list strong {
    text-align: start !important;
  }
}


/* =========================================================
   07 PRODUCT PAGE — RELATED PRODUCTS + FULL PRODUCT POLISH V11
   Fixes from screenshot:
   - Related products section was leaving huge empty space.
   - Related card was narrow/plain and missing premium actions layout.
   - Related rail now becomes a real catalog grid on desktop/tablet.
   - On mobile it becomes 2 products per row with comfortable spacing.
   - Product page gets extra creative/premium touches without breaking layout.
========================================================= */

/* ---------- Product page white surface + section spacing ---------- */

#jood-app.jood-app-shell-view-product .jood-product-page {
  gap: 16px !important;
  background: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 12px !important;
  background: #FFFFFF !important;
}

/* ---------- Related section head: compact premium bar ---------- */

#jood-app.jood-app-shell-view-product .jood-product-related .jood-section-head {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 12px 14px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 14px !important;
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid rgba(220, 204, 184, .72) !important;
  border-radius: 24px !important;
  background:
    linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%) !important;
  box-shadow:
    0 10px 24px rgba(10, 22, 37, .04),
    inset 0 1px 0 rgba(255,255,255,.92) !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related .jood-section-head::before {
  content: "" !important;
  position: absolute !important;
  inset-inline: 18px !important;
  top: 0 !important;
  height: 2px !important;
  border-radius: 0 0 999px 999px !important;
  background: linear-gradient(90deg, transparent, rgba(214,181,109,.64), transparent) !important;
  pointer-events: none !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related .jood-section-head > div {
  min-width: 0 !important;
  display: grid !important;
  gap: 5px !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related .jood-eyebrow,
#jood-app.jood-app-shell-view-product .jood-product-related .jood-section-kicker {
  width: fit-content !important;
  min-height: 23px !important;
  padding: 4px 9px !important;
  display: inline-flex !important;
  align-items: center !important;
  border-radius: 999px !important;
  border: 1px solid rgba(214,181,109,.24) !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related .jood-section-head h2 {
  margin: 0 !important;
  color: #2B170F !important;
  font-size: clamp(24px, 2.4vw, 36px) !important;
  line-height: 1.08 !important;
  font-weight: 950 !important;
  letter-spacing: -.75px !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related .jood-section-head p {
  max-width: 620px !important;
  margin: 0 !important;
  color: #7B6758 !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
  font-weight: 800 !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related .jood-section-head__link {
  min-width: 112px !important;
  min-height: 38px !important;
  padding: 8px 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(214,181,109,.76) !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.92),
    0 4px 10px rgba(10,22,37,.025) !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related .jood-section-head__link .jood-svg-icon {
  width: 15px !important;
  height: 15px !important;
  color: #2B170F !important;
}

/* ---------- Related rail: real grid, not a narrow carousel stuck on the right ---------- */

#jood-app.jood-app-shell-view-product .jood-product-related__rail,
#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-carousel {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-auto-flow: initial !important;
  grid-auto-columns: initial !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
  overflow: visible !important;
  scroll-snap-type: none !important;
  background: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related__rail > *,
#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-carousel > * {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  scroll-snap-align: none !important;
}

/* Center if there is only one related product */
#jood-app.jood-app-shell-view-product .jood-product-related__rail:has(> :only-child),
#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-carousel:has(> :only-child) {
  grid-template-columns: minmax(0, min(100%, 280px)) !important;
  justify-content: center !important;
}

/* ---------- Related product card: same final store card style ---------- */

#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-card {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  display: grid !important;
  grid-template-rows: auto 1fr !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  border: 1px solid rgba(220,204,184,.70) !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
  box-shadow:
    0 8px 18px rgba(10,22,37,.04),
    inset 0 1px 0 rgba(255,255,255,.90) !important;
  transition:
    transform .22s cubic-bezier(.2,.75,.25,1),
    box-shadow .22s cubic-bezier(.2,.75,.25,1),
    border-color .22s cubic-bezier(.2,.75,.25,1) !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-card:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(214,181,109,.44) !important;
  box-shadow: 0 14px 30px rgba(10,22,37,.07) !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-media {
  width: 100% !important;
  aspect-ratio: 1 / .82 !important;
  min-height: 0 !important;
  display: grid !important;
  place-items: center !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 16px !important;
  background: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-media::before,
#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-media::after {
  display: none !important;
  content: none !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-media img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  padding: 8px !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #FFFFFF !important;
  transform: none !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-card:hover .jood-product-media img {
  transform: scale(1.012) !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-badges,
#jood-app.jood-app-shell-view-product .jood-product-related .jood-badges {
  position: absolute !important;
  z-index: 4 !important;
  top: 8px !important;
  inset-inline-end: 8px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 5px !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-badge,
#jood-app.jood-app-shell-view-product .jood-product-related .jood-badge,
#jood-app.jood-app-shell-view-product .jood-product-related .onsale {
  min-height: 22px !important;
  padding: 4px 7px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #2B170F 0%, #2B170F 100%) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  box-shadow: 0 8px 18px rgba(10,22,37,.14) !important;
  font-size: 9px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-media i {
  position: absolute !important;
  z-index: 4 !important;
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  inset-inline-start: 8px !important;
  bottom: 8px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 12px !important;
  background: linear-gradient(180deg, #2B170F 0%, #2B170F 100%) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255,255,255,.30) !important;
  box-shadow: 0 8px 18px rgba(10,22,37,.16) !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-media i::before,
#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-media i::after {
  content: "" !important;
  position: absolute !important;
  inset: 50% auto auto 50% !important;
  background: #FFFFFF !important;
  border-radius: 999px !important;
  transform: translate(-50%, -50%) !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-media i::before {
  width: 13px !important;
  height: 2px !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-media i::after {
  width: 2px !important;
  height: 13px !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-info {
  padding: 9px 10px 10px !important;
  display: grid !important;
  grid-template-rows: auto auto auto auto !important;
  align-content: start !important;
  justify-items: center !important;
  text-align: center !important;
  gap: 5px !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-cat {
  width: fit-content !important;
  max-width: 100% !important;
  min-height: 20px !important;
  margin: 0 auto 1px !important;
  padding: 3px 7px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
  border: 1px solid rgba(214,181,109,.24) !important;
  font-size: 9px !important;
  line-height: 1.2 !important;
  font-weight: 950 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-title {
  width: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  color: #2B170F !important;
  font-size: 13px !important;
  line-height: 1.38 !important;
  font-weight: 950 !important;
  text-align: center !important;
  text-decoration: none !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-excerpt {
  display: none !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-price,
#jood-app.jood-app-shell-view-product .jood-product-related .jood-price,
#jood-app.jood-app-shell-view-product .jood-product-related .price {
  width: 100% !important;
  margin: 1px 0 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 4px !important;
  color: #2B170F !important;
  text-align: center !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-price .amount,
#jood-app.jood-app-shell-view-product .jood-product-related .jood-price .amount,
#jood-app.jood-app-shell-view-product .jood-product-related .price .amount {
  color: #2B170F !important;
  font-size: 13px !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-actions {
  width: 100% !important;
  margin-top: 4px !important;
  padding-top: 0 !important;
  display: grid !important;
  grid-template-columns: 88px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 6px !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-actions .jood-btn,
#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-actions a,
#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-actions button {
  width: 100% !important;
  min-height: 35px !important;
  height: 35px !important;
  padding: 0 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 12px !important;
  font-size: 9.5px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-actions .jood-btn-primary,
#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-actions .jood-add-cart,
#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-actions .add_to_cart_button {
  background: linear-gradient(135deg, #2B170F 0%, #2B170F 100%) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(10,22,37,.95) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 8px 16px rgba(10,22,37,.08) !important;
}

#jood-app.jood-app-shell-view-product .jood-product-related .jood-product-actions .jood-btn-ghost {
  background: #FFFFFF !important;
  color: #2B170F !important;
  border: 1px solid rgba(214,181,109,.76) !important;
}

/* ---------- Product page extra polish: hero and details ---------- */

#jood-app.jood-app-shell-view-product .jood-product-hero {
  box-shadow:
    0 16px 38px rgba(10, 22, 37, .05),
    inset 0 1px 0 rgba(255,255,255,.94) !important;
}

#jood-app.jood-app-shell-view-product .jood-product-summary {
  position: relative !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-product .jood-product-summary::before {
  content: "" !important;
  position: absolute !important;
  inset-inline: 16px !important;
  top: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, transparent, rgba(214,181,109,.54), transparent) !important;
  pointer-events: none !important;
}

#jood-app.jood-app-shell-view-product .jood-product-detail-card {
  position: relative !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-product .jood-product-detail-card::before {
  content: "" !important;
  position: absolute !important;
  inset-inline: 18px !important;
  top: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, transparent, rgba(214,181,109,.48), transparent) !important;
  pointer-events: none !important;
}

/* ---------- Responsive related products ---------- */

@media (max-width: 1180px) {
  #jood-app.jood-app-shell-view-product .jood-product-related__rail,
  #jood-app.jood-app-shell-view-product .jood-product-related .jood-product-carousel {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 900px) {
  #jood-app.jood-app-shell-view-product .jood-product-related__rail,
  #jood-app.jood-app-shell-view-product .jood-product-related .jood-product-carousel {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }
}

@media (max-width: 767px) {
  #jood-app.jood-app-shell-view-product .jood-product-related {
    gap: 9px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-related .jood-section-head {
    padding: 10px !important;
    border-radius: 20px !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-related .jood-eyebrow,
  #jood-app.jood-app-shell-view-product .jood-product-related .jood-section-kicker {
    min-height: 21px !important;
    padding: 4px 8px !important;
    font-size: 9px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-related .jood-section-head h2 {
    font-size: 23px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-related .jood-section-head p {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-related .jood-section-head__link {
    min-width: 82px !important;
    min-height: 34px !important;
    padding: 7px 9px !important;
    border-radius: 13px !important;
    font-size: 10px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-related__rail,
  #jood-app.jood-app-shell-view-product .jood-product-related .jood-product-carousel {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    padding: 0 !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-related__rail:has(> :only-child),
  #jood-app.jood-app-shell-view-product .jood-product-related .jood-product-carousel:has(> :only-child) {
    grid-template-columns: minmax(0, min(100%, 280px)) !important;
    justify-content: center !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-related .jood-product-card {
    border-radius: 17px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-related .jood-product-media {
    aspect-ratio: 1 / .82 !important;
    border-radius: 15px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-related .jood-product-media img {
    padding: 6px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-related .jood-product-media i {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    bottom: 7px !important;
    inset-inline-start: 7px !important;
    border-radius: 11px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-related .jood-product-info {
    padding: 8px 8px 9px !important;
    gap: 5px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-related .jood-product-cat {
    min-height: 20px !important;
    padding: 3px 7px !important;
    font-size: 8.5px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-related .jood-product-title {
    font-size: 11.5px !important;
    line-height: 1.35 !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-related .jood-product-price,
  #jood-app.jood-app-shell-view-product .jood-product-related .jood-product-price .amount,
  #jood-app.jood-app-shell-view-product .jood-product-related .jood-price,
  #jood-app.jood-app-shell-view-product .jood-product-related .jood-price .amount,
  #jood-app.jood-app-shell-view-product .jood-product-related .price,
  #jood-app.jood-app-shell-view-product .jood-product-related .price .amount {
    font-size: 12.5px !important;
    line-height: 1.15 !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-related .jood-product-actions {
    grid-template-columns: 1fr !important;
    gap: 5px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-related .jood-product-actions .jood-btn,
  #jood-app.jood-app-shell-view-product .jood-product-related .jood-product-actions a,
  #jood-app.jood-app-shell-view-product .jood-product-related .jood-product-actions button {
    min-height: 35px !important;
    height: 35px !important;
    border-radius: 12px !important;
    font-size: 9.5px !important;
  }
}

@media (max-width: 360px) {
  #jood-app.jood-app-shell-view-product .jood-product-related__rail,
  #jood-app.jood-app-shell-view-product .jood-product-related .jood-product-carousel {
    gap: 9px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-related .jood-product-info {
    padding: 7px !important;
  }
}


/* =========================================================
   07 PRODUCT PAGE — MOBILE COMPACT EXPERIENCE V12
   الهدف:
   - صفحة المنتج على الجوال مضغوطة بدون مساحة طولية مبالغ فيها.
   - الحفاظ على نفس التجاوب وعدم اللزق.
   - صورة المنتج واضحة وكاملة لكن بارتفاع أقل.
   - Summary / Price / Trust / Buy Panel مضغوطين كواجهة تطبيق.
   - الوصف والخصائص والمنتجات المقترحة أقل طولًا وأهدأ.
========================================================= */

@media (max-width: 767px) {
  /* ---------- Page rhythm ---------- */

  #jood-app.jood-app-shell-view-product .jood-app-main {
    width: min(100%, calc(100% - 10px)) !important;
    padding-top: 5px !important;
    padding-bottom: 30px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-page {
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-hero {
    padding: 7px !important;
    gap: 8px !important;
    border-radius: 20px !important;
    box-shadow:
      0 8px 20px rgba(10, 22, 37, .035),
      inset 0 1px 0 rgba(255,255,255,.92) !important;
  }

  /* ---------- Gallery compact but not cropped ---------- */

  #jood-app.jood-app-shell-view-product .jood-product-gallery {
    gap: 6px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-gallery__main {
    aspect-ratio: 1 / .72 !important;
    min-height: 0 !important;
    max-height: 270px !important;
    border-radius: 18px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-main-image,
  #jood-app.jood-app-shell-view-product .jood-product-gallery__main img {
    padding: 6px !important;
    object-fit: contain !important;
    object-position: center center !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-badges,
  #jood-app.jood-app-shell-view-product .jood-badges {
    top: 8px !important;
    inset-inline-end: 8px !important;
    gap: 4px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-badge,
  #jood-app.jood-app-shell-view-product .jood-badge,
  #jood-app.jood-app-shell-view-product .onsale {
    min-height: 22px !important;
    padding: 4px 7px !important;
    font-size: 8.5px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-gallery__thumbs {
    grid-auto-columns: 50px !important;
    gap: 5px !important;
    padding: 1px 0 4px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-thumb {
    width: 50px !important;
    height: 50px !important;
    border-radius: 12px !important;
    padding: 2px !important;
  }

  /* ---------- Summary compact ---------- */

  #jood-app.jood-app-shell-view-product .jood-product-summary {
    padding: 9px !important;
    gap: 8px !important;
    border-radius: 18px !important;
    box-shadow: 0 7px 16px rgba(10,22,37,.03) !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-summary::before {
    inset-inline: 14px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-summary .jood-breadcrumbs {
    min-height: 24px !important;
    padding: 4px 8px !important;
    font-size: 9px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-category-links {
    gap: 4px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-category-links a {
    min-height: 20px !important;
    padding: 3px 7px !important;
    font-size: 8.5px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-summary h2 {
    font-size: 24px !important;
    line-height: 1.12 !important;
    letter-spacing: -.45px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-short-desc {
    font-size: 11px !important;
    line-height: 1.55 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  /* ---------- Price row compact ---------- */

  #jood-app.jood-app-shell-view-product .jood-product-summary__price-row {
    padding: 8px !important;
    gap: 6px !important;
    border-radius: 15px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-summary__price-row .jood-product-price,
  #jood-app.jood-app-shell-view-product .jood-product-summary__price-row .jood-price,
  #jood-app.jood-app-shell-view-product .jood-product-summary__price-row .price {
    font-size: 18px !important;
    line-height: 1.1 !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-summary__price-row .amount {
    font-size: 18px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-stock {
    min-height: 30px !important;
    padding: 6px 9px !important;
    font-size: 10px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-stock .jood-svg-icon {
    width: 14px !important;
    height: 14px !important;
  }

  /* ---------- Trust row as small chips in one row when possible ---------- */

  #jood-app.jood-app-shell-view-product .jood-product-trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 6px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-trust-row div {
    min-height: 36px !important;
    padding: 7px !important;
    grid-template-columns: 24px minmax(0, 1fr) !important;
    gap: 6px !important;
    border-radius: 13px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-trust-row .jood-svg-icon {
    width: 24px !important;
    height: 24px !important;
    padding: 6px !important;
    border-radius: 10px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-trust-row span {
    font-size: 9px !important;
    line-height: 1.25 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  /* ---------- Variations and buy panel compact ---------- */

  #jood-app.jood-app-shell-view-product .jood-product-cart-form {
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-variations {
    padding: 8px !important;
    gap: 8px !important;
    border-radius: 16px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-variations__head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-section-kicker {
    min-height: 20px !important;
    padding: 3px 7px !important;
    font-size: 8.5px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-variations__head strong {
    font-size: 10px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-variation-field {
    gap: 4px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-variation-field > span {
    font-size: 9px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-variation-field select {
    height: 38px !important;
    min-height: 38px !important;
    border-radius: 13px !important;
    font-size: 10px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-variation-field::after {
    bottom: 14px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-selected-variation-box {
    padding: 7px 8px !important;
    border-radius: 13px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-buy-panel {
    padding: 8px !important;
    gap: 7px !important;
    border-radius: 16px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-quantity {
    grid-template-columns: 48px minmax(0, 1fr) !important;
    gap: 7px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-quantity > span {
    font-size: 9px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-qty-control {
    min-height: 38px !important;
    grid-template-columns: 36px minmax(0, 1fr) 36px !important;
    border-radius: 13px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-qty-control button,
  #jood-app.jood-app-shell-view-product .jood-qty-control input {
    height: 38px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-buy-panel .jood-btn,
  #jood-app.jood-app-shell-view-product .jood-product-add-to-cart {
    min-height: 39px !important;
    padding: 8px 10px !important;
    border-radius: 13px !important;
    font-size: 10px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-add-to-cart .jood-svg-icon,
  #jood-app.jood-app-shell-view-product .jood-product-buy-panel .jood-btn .jood-svg-icon {
    width: 15px !important;
    height: 15px !important;
  }

  /* ---------- Details cards compact ---------- */

  #jood-app.jood-app-shell-view-product .jood-product-details-grid {
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-detail-card {
    padding: 9px !important;
    gap: 8px !important;
    border-radius: 18px !important;
    box-shadow: 0 7px 16px rgba(10,22,37,.03) !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-detail-card__head {
    grid-template-columns: 32px minmax(0, 1fr) !important;
    gap: 7px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-detail-card__head > .jood-svg-icon {
    width: 32px !important;
    height: 32px !important;
    padding: 8px !important;
    border-radius: 12px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-detail-card__head h3 {
    margin-top: 3px !important;
    font-size: 19px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-rich-text,
  #jood-app.jood-app-shell-view-product .jood-product-muted-text {
    font-size: 11px !important;
    line-height: 1.7 !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-rich-text p + p {
    margin-top: 6px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-meta-list {
    gap: 6px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-meta-list div {
    min-height: 36px !important;
    padding: 7px 8px !important;
    border-radius: 12px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-meta-list span {
    font-size: 9px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-meta-list strong {
    font-size: 10px !important;
  }

  /* ---------- Related section compact ---------- */

  #jood-app.jood-app-shell-view-product .jood-product-related {
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-related .jood-section-head {
    padding: 9px !important;
    border-radius: 18px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-related .jood-section-head h2 {
    font-size: 21px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-related .jood-section-head__link {
    min-height: 32px !important;
    min-width: 76px !important;
    padding: 6px 9px !important;
    border-radius: 12px !important;
    font-size: 9px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-related__rail,
  #jood-app.jood-app-shell-view-product .jood-product-related .jood-product-carousel {
    gap: 10px !important;
  }
}

@media (max-width: 390px) {
  #jood-app.jood-app-shell-view-product .jood-product-gallery__main {
    max-height: 238px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-summary h2 {
    font-size: 22px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-trust-row {
    gap: 5px !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-trust-row div {
    padding: 6px !important;
  }
}

@media (max-width: 340px) {
  #jood-app.jood-app-shell-view-product .jood-product-trust-row {
    grid-template-columns: 1fr !important;
  }

  #jood-app.jood-app-shell-view-product .jood-product-gallery__main {
    max-height: 220px !important;
  }
}



/* =========================================================
   08 CART PAGE — JOOD PREMIUM COMPACT CART EXPERIENCE
   Built from templates/cart.php actual classes:
   .jood-cart-page
   .jood-cart-hero
   .jood-cart-hero__content
   .jood-cart-steps
   .jood-cart-hero__summary
   .jood-cart-layout
   .jood-cart-main
   .jood-cart-main__head
   .jood-cart-clear
   .jood-cart-items
   .jood-cart-actions-row
   .jood-cart-side
   .jood-cart-side-card
   .jood-cart-coupon-card
   .jood-applied-coupons
   .jood-applied-coupon
   .jood-cart-trust-card
   .jood-cart-trust-list
   + shared partials:
   jood_part_cart_item()
   jood_part_coupon_box()
   jood_part_cart_totals()
========================================================= */

/* =========================================================
   08.00 CART VIEW TOKENS + WHITE APP FOUNDATION
========================================================= */

#jood-app.jood-app-shell-view-cart {
  --jood-cart-max: 1180px;
  --jood-cart-ink: #2B170F;
  --jood-cart-ink-2: #2B170F;
  --jood-cart-ink-3: #3A2116;
  --jood-cart-gold: #B9854D;
  --jood-cart-gold-2: #D7B179;
  --jood-cart-gold-3: #F6E9D8;
  --jood-cart-cream: #FFFFFF;
  --jood-cart-paper: #FFFFFF;
  --jood-cart-line: rgba(214, 181, 109, .70);
  --jood-cart-line-soft: rgba(232, 220, 199, .86);
  --jood-cart-muted: #7B6758;
  --jood-cart-brown: #2B170F;
  --jood-current-max: 1180px;
  background: #FFFFFF !important;
  color: var(--jood-cart-ink) !important;
}

#jood-app.jood-app-shell-view-cart .jood-app-main {
  width: min(var(--jood-cart-max), calc(100% - 28px)) !important;
  max-width: 100% !important;
  margin-inline: auto !important;
  padding-top: 12px !important;
  padding-bottom: max(44px, var(--jood-main-bottom, 70px)) !important;
  background: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-cart .jood-app-content-cart,
#jood-app.jood-app-shell-view-cart .jood-cart-page {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 14px !important;
  background: #FFFFFF !important;
  position: relative !important;
  isolation: isolate !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-page::before,
#jood-app.jood-app-shell-view-cart .jood-cart-page::after {
  display: none !important;
  content: none !important;
}

/* =========================================================
   08.01 CART HERO — COMPACT PREMIUM HEADER
========================================================= */

#jood-app.jood-app-shell-view-cart .jood-cart-hero {
  width: 100% !important;
  min-height: 132px !important;
  margin: 0 !important;
  padding: clamp(14px, 1.8vw, 22px) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 260px) !important;
  align-items: center !important;
  gap: clamp(14px, 2vw, 24px) !important;
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid rgba(214, 181, 109, .30) !important;
  border-radius: 28px !important;
  background:
    linear-gradient(90deg, rgba(214,181,109,.12) 0%, transparent 20%, transparent 82%, rgba(214,181,109,.08) 100%),
    radial-gradient(circle at 7% 50%, rgba(214,181,109,.20), transparent 27%),
    radial-gradient(circle at 96% 18%, rgba(255,255,255,.10), transparent 23%),
    linear-gradient(135deg, #2B170F 0%, #2B170F 48%, #2B170F 100%) !important;
  color: #FFFFFF !important;
  box-shadow:
    0 18px 42px rgba(10, 22, 37, .14),
    inset 0 1px 0 rgba(255,255,255,.11),
    inset 0 -1px 0 rgba(214,181,109,.20) !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  opacity: .10 !important;
  background-image:
    linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px) !important;
  background-size: 28px 28px !important;
  mask-image: linear-gradient(90deg, transparent 0%, #2B170F 12%, #2B170F 88%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #2B170F 12%, #2B170F 88%, transparent 100%) !important;
  pointer-events: none !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-hero::after {
  content: "" !important;
  position: absolute !important;
  inset-inline: clamp(18px, 3vw, 44px) !important;
  bottom: 0 !important;
  height: 2px !important;
  border-radius: 999px 999px 0 0 !important;
  background:
    linear-gradient(90deg, transparent, rgba(214,181,109,.15), rgba(232,210,176,.95), rgba(214,181,109,.15), transparent) !important;
  pointer-events: none !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-hero__content {
  min-width: 0 !important;
  display: grid !important;
  align-content: center !important;
  justify-items: start !important;
  gap: 7px !important;
  position: relative !important;
  z-index: 2 !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-hero .jood-eyebrow {
  width: fit-content !important;
  min-height: 23px !important;
  padding: 4px 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  border-radius: 999px !important;
  border: 1px solid rgba(214,181,109,.42) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.045)) !important;
  color: #F6E9D8 !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 8px 18px rgba(0,0,0,.12) !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-hero h2 {
  margin: 0 !important;
  color: #FFFFFF !important;
  font-size: clamp(30px, 3.4vw, 50px) !important;
  line-height: 1.02 !important;
  font-weight: 950 !important;
  letter-spacing: -1.1px !important;
  text-shadow: 0 12px 26px rgba(0,0,0,.18) !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-hero p {
  width: min(620px, 100%) !important;
  margin: 0 !important;
  color: rgba(255,255,255,.78) !important;
  font-size: clamp(11px, .95vw, 13px) !important;
  line-height: 1.6 !important;
  font-weight: 800 !important;
}

/* Steps: compact segmented progress */
#jood-app.jood-app-shell-view-cart .jood-cart-steps {
  width: min(520px, 100%) !important;
  margin-top: 8px !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 7px !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-steps div {
  min-width: 0 !important;
  min-height: 46px !important;
  padding: 7px 8px !important;
  display: grid !important;
  grid-template-columns: 24px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 7px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255,255,255,.13) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.045)) !important;
  color: #FFFFFF !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 8px 18px rgba(0,0,0,.09) !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-steps div.is-active {
  background: linear-gradient(135deg, #D7B179 0%, #B9854D 54%, #B9854D 100%) !important;
  border-color: rgba(255,255,255,.20) !important;
  color: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-steps span {
  width: 24px !important;
  height: 24px !important;
  display: inline-grid !important;
  place-items: center !important;
  border-radius: 10px !important;
  background: rgba(255,255,255,.12) !important;
  color: #FFFFFF !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-steps strong {
  min-width: 0 !important;
  color: #FFFFFF !important;
  font-size: 10px !important;
  line-height: 1.25 !important;
  font-weight: 950 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* Hero summary card */
#jood-app.jood-app-shell-view-cart .jood-cart-hero__summary {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 126px !important;
  padding: 14px !important;
  display: grid !important;
  place-items: center !important;
  align-content: center !important;
  gap: 5px !important;
  position: relative !important;
  z-index: 2 !important;
  border: 1px solid rgba(255,255,255,.13) !important;
  border-radius: 24px !important;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05)) !important;
  color: #FFFFFF !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 12px 24px rgba(0,0,0,.10) !important;
  text-align: center !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-hero__summary-icon {
  width: 42px !important;
  height: 42px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, #D7B179 0%, #B9854D 100%) !important;
  color: #FFFFFF !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24), 0 10px 20px rgba(214,181,109,.16) !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-hero__summary-icon .jood-svg-icon {
  width: 22px !important;
  height: 22px !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-hero__summary > span {
  color: rgba(255,255,255,.78) !important;
  font-size: 10px !important;
  font-weight: 900 !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-hero__summary strong {
  color: #FFFFFF !important;
  font-size: clamp(18px, 2vw, 26px) !important;
  line-height: 1.15 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-hero__summary small {
  color: rgba(255,255,255,.72) !important;
  font-size: 10px !important;
  font-weight: 850 !important;
}

/* =========================================================
   08.02 EMPTY CART
========================================================= */

#jood-app.jood-app-shell-view-cart .jood-cart-empty-wrap {
  width: 100% !important;
  padding: clamp(12px, 2vw, 18px) !important;
  border: 1px solid rgba(220,204,184,.72) !important;
  border-radius: 26px !important;
  background: #FFFFFF !important;
  box-shadow: 0 10px 26px rgba(10,22,37,.035) !important;
}

/* =========================================================
   08.03 CART LAYOUT
========================================================= */

#jood-app.jood-app-shell-view-cart .jood-cart-layout {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px) !important;
  gap: 14px !important;
  align-items: start !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-main,
#jood-app.jood-app-shell-view-cart .jood-cart-side-card,
#jood-app.jood-app-shell-view-cart .jood-cart-totals,
#jood-app.jood-app-shell-view-cart .cart_totals {
  width: 100% !important;
  min-width: 0 !important;
  border: 1px solid rgba(220,204,184,.72) !important;
  border-radius: 26px !important;
  background: #FFFFFF !important;
  box-shadow: 0 10px 26px rgba(10,22,37,.035) !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-main {
  padding: 12px !important;
  display: grid !important;
  gap: 12px !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-main__head {
  width: 100% !important;
  padding: 0 0 10px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 12px !important;
  border-bottom: 1px solid rgba(232,220,199,.78) !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-main__head > div {
  min-width: 0 !important;
  display: grid !important;
  gap: 4px !important;
}

#jood-app.jood-app-shell-view-cart .jood-section-kicker {
  width: fit-content !important;
  min-height: 22px !important;
  padding: 4px 9px !important;
  display: inline-flex !important;
  align-items: center !important;
  border-radius: 999px !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
  border: 1px solid rgba(214,181,109,.24) !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-main__head h2 {
  margin: 0 !important;
  color: #2B170F !important;
  font-size: clamp(22px, 2.2vw, 32px) !important;
  line-height: 1.1 !important;
  font-weight: 950 !important;
  letter-spacing: -.65px !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-main__head p {
  margin: 0 !important;
  color: #7B6758 !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
  font-weight: 800 !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-clear {
  min-height: 38px !important;
  padding: 8px 11px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  border: 1px solid rgba(184,64,52,.20) !important;
  border-radius: 14px !important;
  background: #fff0ee !important;
  color: #b84034 !important;
  font-size: 10.5px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-clear .jood-svg-icon {
  width: 15px !important;
  height: 15px !important;
}

/* =========================================================
   08.04 CART ITEMS — SUPPORT PARTIAL CLASSES ROBUSTLY
========================================================= */

#jood-app.jood-app-shell-view-cart .jood-cart-items {
  width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  gap: 10px !important;
}

/* Try to catch all likely cart item wrappers from parts.php */
#jood-app.jood-app-shell-view-cart .jood-cart-item,
#jood-app.jood-app-shell-view-cart .jood-cart-line,
#jood-app.jood-app-shell-view-cart .jood-cart-product,
#jood-app.jood-app-shell-view-cart .jood-cart-items > article,
#jood-app.jood-app-shell-view-cart .jood-cart-items > div {
  width: 100% !important;
  min-width: 0 !important;
  padding: 10px !important;
  display: grid !important;
  grid-template-columns: 84px minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 10px !important;
  border: 1px solid rgba(220,204,184,.70) !important;
  border-radius: 20px !important;
  background: #FFFFFF !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.92), 0 5px 12px rgba(10,22,37,.025) !important;
  overflow: hidden !important;
}

/* Image blocks */
#jood-app.jood-app-shell-view-cart .jood-cart-item__image,
#jood-app.jood-app-shell-view-cart .jood-cart-item-image,
#jood-app.jood-app-shell-view-cart .jood-cart-product-image,
#jood-app.jood-app-shell-view-cart .jood-cart-item figure,
#jood-app.jood-app-shell-view-cart .jood-cart-items > article figure,
#jood-app.jood-app-shell-view-cart .jood-cart-items > div figure {
  width: 84px !important;
  height: 84px !important;
  min-width: 84px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 16px !important;
  border: 1px solid rgba(220,204,184,.62) !important;
  background: #FFFFFF !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-item__image img,
#jood-app.jood-app-shell-view-cart .jood-cart-item-image img,
#jood-app.jood-app-shell-view-cart .jood-cart-product-image img,
#jood-app.jood-app-shell-view-cart .jood-cart-item figure img,
#jood-app.jood-app-shell-view-cart .jood-cart-items > article figure img,
#jood-app.jood-app-shell-view-cart .jood-cart-items > div figure img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 6px !important;
  background: #FFFFFF !important;
}

/* Item content */
#jood-app.jood-app-shell-view-cart .jood-cart-item__content,
#jood-app.jood-app-shell-view-cart .jood-cart-item-content,
#jood-app.jood-app-shell-view-cart .jood-cart-product-content,
#jood-app.jood-app-shell-view-cart .jood-cart-item__info,
#jood-app.jood-app-shell-view-cart .jood-cart-item-info {
  min-width: 0 !important;
  display: grid !important;
  gap: 5px !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-item h3,
#jood-app.jood-app-shell-view-cart .jood-cart-item-title,
#jood-app.jood-app-shell-view-cart .jood-cart-product-title,
#jood-app.jood-app-shell-view-cart .jood-cart-items h3,
#jood-app.jood-app-shell-view-cart .jood-cart-items h4 {
  margin: 0 !important;
  color: #2B170F !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  font-weight: 950 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-item-meta,
#jood-app.jood-app-shell-view-cart .jood-cart-product-meta,
#jood-app.jood-app-shell-view-cart .jood-cart-items .variation,
#jood-app.jood-app-shell-view-cart .jood-cart-items small,
#jood-app.jood-app-shell-view-cart .jood-cart-items p {
  margin: 0 !important;
  color: #7B6758 !important;
  font-size: 10.5px !important;
  line-height: 1.45 !important;
  font-weight: 800 !important;
}

/* Item actions / quantity */
#jood-app.jood-app-shell-view-cart .jood-cart-item__actions,
#jood-app.jood-app-shell-view-cart .jood-cart-item-actions,
#jood-app.jood-app-shell-view-cart .jood-cart-product-actions,
#jood-app.jood-app-shell-view-cart .jood-cart-item__controls,
#jood-app.jood-app-shell-view-cart .jood-cart-item-controls {
  min-width: 160px !important;
  display: grid !important;
  justify-items: end !important;
  gap: 7px !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-item-price,
#jood-app.jood-app-shell-view-cart .jood-cart-product-price,
#jood-app.jood-app-shell-view-cart .jood-cart-item-total,
#jood-app.jood-app-shell-view-cart .jood-cart-product-total,
#jood-app.jood-app-shell-view-cart .jood-cart-items .amount,
#jood-app.jood-app-shell-view-cart .jood-cart-items .price {
  color: #2B170F !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-cart .jood-qty-control,
#jood-app.jood-app-shell-view-cart .jood-cart-qty,
#jood-app.jood-app-shell-view-cart .quantity {
  width: 124px !important;
  min-height: 38px !important;
  display: grid !important;
  grid-template-columns: 36px minmax(0, 1fr) 36px !important;
  overflow: hidden !important;
  border: 1px solid rgba(214,181,109,.76) !important;
  border-radius: 13px !important;
  background: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-cart .jood-qty-control button,
#jood-app.jood-app-shell-view-cart .jood-cart-qty button,
#jood-app.jood-app-shell-view-cart .quantity button {
  height: 38px !important;
  border: 0 !important;
  display: grid !important;
  place-items: center !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
  font-size: 16px !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-cart .jood-qty-control input,
#jood-app.jood-app-shell-view-cart .jood-cart-qty input,
#jood-app.jood-app-shell-view-cart .quantity input {
  width: 100% !important;
  height: 38px !important;
  border: 0 !important;
  text-align: center !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  appearance: textfield !important;
  -moz-appearance: textfield !important;
}

#jood-app.jood-app-shell-view-cart .jood-remove-cart-item,
#jood-app.jood-app-shell-view-cart .jood-cart-remove,
#jood-app.jood-app-shell-view-cart .remove {
  min-height: 30px !important;
  padding: 6px 9px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(184,64,52,.18) !important;
  background: #fff0ee !important;
  color: #b84034 !important;
  font-size: 10px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
}

/* =========================================================
   08.05 MAIN ACTION ROW
========================================================= */

#jood-app.jood-app-shell-view-cart .jood-cart-actions-row {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(0, .62fr) minmax(0, 1fr) !important;
  gap: 8px !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-actions-row .jood-btn {
  width: 100% !important;
  min-height: 44px !important;
  padding: 10px 12px !important;
  border-radius: 15px !important;
  font-size: 12px !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-actions-row .jood-btn-primary {
  background: linear-gradient(135deg, #2B170F 0%, #2B170F 100%) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(10,22,37,.95) !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-actions-row .jood-btn-ghost {
  background: #FFFFFF !important;
  color: #2B170F !important;
  border: 1px solid rgba(214,181,109,.76) !important;
}

/* =========================================================
   08.06 SIDE SUMMARY / COUPON / TOTALS / TRUST
========================================================= */

#jood-app.jood-app-shell-view-cart .jood-cart-side {
  width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  gap: 12px !important;
  position: sticky !important;
  top: 18px !important;
  align-self: start !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-side-card,
#jood-app.jood-app-shell-view-cart .jood-cart-totals,
#jood-app.jood-app-shell-view-cart .cart_totals,
#jood-app.jood-app-shell-view-cart .jood-order-summary,
#jood-app.jood-app-shell-view-cart .jood-cart-summary {
  padding: 12px !important;
  display: grid !important;
  gap: 10px !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  position: relative !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-side-card::before,
#jood-app.jood-app-shell-view-cart .jood-cart-totals::before,
#jood-app.jood-app-shell-view-cart .cart_totals::before,
#jood-app.jood-app-shell-view-cart .jood-order-summary::before,
#jood-app.jood-app-shell-view-cart .jood-cart-summary::before {
  content: "" !important;
  position: absolute !important;
  inset-inline: 16px !important;
  top: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, transparent, rgba(214,181,109,.54), transparent) !important;
  pointer-events: none !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-side-card__head {
  display: grid !important;
  grid-template-columns: 38px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 9px !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-side-card__head > .jood-svg-icon {
  width: 38px !important;
  height: 38px !important;
  padding: 9px !important;
  border-radius: 15px !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
  border: 1px solid rgba(214,181,109,.24) !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-side-card__head h3 {
  margin: 4px 0 0 !important;
  color: #2B170F !important;
  font-size: 18px !important;
  line-height: 1.12 !important;
  font-weight: 950 !important;
}

/* Coupon form robust selectors */
#jood-app.jood-app-shell-view-cart .jood-coupon-box,
#jood-app.jood-app-shell-view-cart .jood-coupon-form,
#jood-app.jood-app-shell-view-cart .coupon {
  width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 8px !important;
}

#jood-app.jood-app-shell-view-cart .jood-coupon-box input,
#jood-app.jood-app-shell-view-cart .jood-coupon-form input,
#jood-app.jood-app-shell-view-cart .coupon input[type="text"] {
  width: 100% !important;
  min-height: 42px !important;
  padding: 9px 12px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(214,181,109,.76) !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
  font-size: 11px !important;
  font-weight: 850 !important;
}

#jood-app.jood-app-shell-view-cart .jood-coupon-box button,
#jood-app.jood-app-shell-view-cart .jood-coupon-form button,
#jood-app.jood-app-shell-view-cart .coupon button,
#jood-app.jood-app-shell-view-cart .coupon .button {
  min-height: 42px !important;
  padding: 9px 12px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(10,22,37,.95) !important;
  background: linear-gradient(135deg, #2B170F 0%, #2B170F 100%) !important;
  color: #FFFFFF !important;
  font-size: 11px !important;
  font-weight: 950 !important;
}

/* Applied coupons */
#jood-app.jood-app-shell-view-cart .jood-applied-coupons {
  display: grid !important;
  gap: 7px !important;
}

#jood-app.jood-app-shell-view-cart .jood-applied-coupon {
  min-height: 42px !important;
  padding: 8px 9px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 8px !important;
  border: 1px solid rgba(214,181,109,.24) !important;
  border-radius: 14px !important;
  background: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-cart .jood-applied-coupon span {
  min-width: 0 !important;
  display: grid !important;
  gap: 2px !important;
}

#jood-app.jood-app-shell-view-cart .jood-applied-coupon strong {
  color: #2B170F !important;
  font-size: 11px !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-cart .jood-applied-coupon small {
  color: #7B6758 !important;
  font-size: 10px !important;
  font-weight: 800 !important;
}

#jood-app.jood-app-shell-view-cart .jood-remove-coupon {
  min-height: 30px !important;
  padding: 6px 9px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(184,64,52,.18) !important;
  background: #FFFFFF !important;
  color: #b84034 !important;
  font-size: 10px !important;
  font-weight: 950 !important;
}

/* Totals robust selectors */
#jood-app.jood-app-shell-view-cart .jood-cart-totals h2,
#jood-app.jood-app-shell-view-cart .cart_totals h2,
#jood-app.jood-app-shell-view-cart .jood-order-summary h2,
#jood-app.jood-app-shell-view-cart .jood-cart-summary h2,
#jood-app.jood-app-shell-view-cart .jood-cart-totals h3,
#jood-app.jood-app-shell-view-cart .cart_totals h3,
#jood-app.jood-app-shell-view-cart .jood-order-summary h3,
#jood-app.jood-app-shell-view-cart .jood-cart-summary h3 {
  margin: 0 !important;
  color: #2B170F !important;
  font-size: 20px !important;
  line-height: 1.12 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-totals table,
#jood-app.jood-app-shell-view-cart .cart_totals table,
#jood-app.jood-app-shell-view-cart .jood-order-summary table,
#jood-app.jood-app-shell-view-cart .jood-cart-summary table {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 7px !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-totals tr,
#jood-app.jood-app-shell-view-cart .cart_totals tr,
#jood-app.jood-app-shell-view-cart .jood-order-summary tr,
#jood-app.jood-app-shell-view-cart .jood-cart-summary tr,
#jood-app.jood-app-shell-view-cart .jood-cart-total-row,
#jood-app.jood-app-shell-view-cart .jood-summary-row {
  min-height: 42px !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-totals th,
#jood-app.jood-app-shell-view-cart .cart_totals th,
#jood-app.jood-app-shell-view-cart .jood-order-summary th,
#jood-app.jood-app-shell-view-cart .jood-cart-summary th,
#jood-app.jood-app-shell-view-cart .jood-cart-total-row span,
#jood-app.jood-app-shell-view-cart .jood-summary-row span {
  padding: 8px 9px !important;
  color: #7B6758 !important;
  font-size: 11px !important;
  font-weight: 850 !important;
  text-align: start !important;
  background: #FFFFFF !important;
  border-start-start-radius: 14px !important;
  border-end-start-radius: 14px !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-totals td,
#jood-app.jood-app-shell-view-cart .cart_totals td,
#jood-app.jood-app-shell-view-cart .jood-order-summary td,
#jood-app.jood-app-shell-view-cart .jood-cart-summary td,
#jood-app.jood-app-shell-view-cart .jood-cart-total-row strong,
#jood-app.jood-app-shell-view-cart .jood-summary-row strong {
  padding: 8px 9px !important;
  color: #2B170F !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  text-align: end !important;
  background: #FFFFFF !important;
  border-start-end-radius: 14px !important;
  border-end-end-radius: 14px !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-totals .order-total th,
#jood-app.jood-app-shell-view-cart .jood-cart-totals .order-total td,
#jood-app.jood-app-shell-view-cart .cart_totals .order-total th,
#jood-app.jood-app-shell-view-cart .cart_totals .order-total td,
#jood-app.jood-app-shell-view-cart .jood-cart-total-final,
#jood-app.jood-app-shell-view-cart .jood-summary-total {
  color: #2B170F !important;
  background: #FFFFFF !important;
  font-size: 14px !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-cart .wc-proceed-to-checkout,
#jood-app.jood-app-shell-view-cart .jood-cart-checkout-actions,
#jood-app.jood-app-shell-view-cart .jood-summary-actions {
  display: grid !important;
  gap: 8px !important;
  padding: 0 !important;
  margin: 0 !important;
}

#jood-app.jood-app-shell-view-cart .checkout-button,
#jood-app.jood-app-shell-view-cart .wc-forward,
#jood-app.jood-app-shell-view-cart .jood-checkout-button,
#jood-app.jood-app-shell-view-cart .jood-summary-actions .jood-btn-primary {
  width: 100% !important;
  min-height: 44px !important;
  padding: 10px 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 15px !important;
  border: 1px solid rgba(10,22,37,.95) !important;
  background: linear-gradient(135deg, #2B170F 0%, #2B170F 100%) !important;
  color: #FFFFFF !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  text-decoration: none !important;
}

/* Trust card */
#jood-app.jood-app-shell-view-cart .jood-cart-trust-list {
  display: grid !important;
  gap: 8px !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-trust-list div {
  min-height: 46px !important;
  padding: 8px !important;
  display: grid !important;
  grid-template-columns: 32px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 8px !important;
  border: 1px solid rgba(220,204,184,.62) !important;
  border-radius: 15px !important;
  background: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-trust-list .jood-svg-icon {
  width: 32px !important;
  height: 32px !important;
  padding: 8px !important;
  border-radius: 12px !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
  border: 1px solid rgba(214,181,109,.24) !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-trust-list span {
  display: grid !important;
  gap: 2px !important;
  min-width: 0 !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-trust-list strong {
  color: #2B170F !important;
  font-size: 11px !important;
  line-height: 1.25 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-trust-list small {
  color: #7B6758 !important;
  font-size: 10px !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
}

/* =========================================================
   08.07 CART RESPONSIVE — MOBILE APP COMPACT
========================================================= */

@media (max-width: 980px) {
  #jood-app.jood-app-shell-view-cart .jood-cart-hero {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-hero__summary {
    min-height: 90px !important;
    grid-template-columns: 42px minmax(0, 1fr) auto !important;
    grid-template-areas:
      "icon label count"
      "icon total count" !important;
    justify-items: start !important;
    text-align: start !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-hero__summary-icon {
    grid-area: icon !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-hero__summary > span {
    grid-area: label !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-hero__summary strong {
    grid-area: total !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-hero__summary small {
    grid-area: count !important;
    justify-self: end !important;
    padding: 6px 9px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.10) !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-layout {
    grid-template-columns: 1fr !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-side {
    position: static !important;
  }
}

@media (max-width: 767px) {
  #jood-app.jood-app-shell-view-cart .jood-app-main {
    width: min(100%, calc(100% - 10px)) !important;
    padding-top: 5px !important;
    padding-bottom: 30px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-page {
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-hero {
    padding: 11px !important;
    border-radius: 22px !important;
    gap: 9px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-hero__content {
    justify-items: center !important;
    text-align: center !important;
    gap: 6px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-hero .jood-eyebrow {
    min-height: 21px !important;
    padding: 4px 8px !important;
    font-size: 9px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-hero h2 {
    font-size: 26px !important;
    line-height: 1.12 !important;
    letter-spacing: -.55px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-hero p {
    font-size: 11px !important;
    line-height: 1.45 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-steps {
    width: 100% !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;
    margin-top: 5px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-steps div {
    min-height: 40px !important;
    padding: 6px !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
    gap: 3px !important;
    border-radius: 14px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-steps span {
    width: 21px !important;
    height: 21px !important;
    border-radius: 8px !important;
    font-size: 10px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-steps strong {
    font-size: 8.5px !important;
    white-space: normal !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-hero__summary {
    min-height: 64px !important;
    padding: 8px !important;
    border-radius: 17px !important;
    grid-template-columns: 34px minmax(0, 1fr) auto !important;
    gap: 7px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-hero__summary-icon {
    width: 34px !important;
    height: 34px !important;
    border-radius: 13px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-hero__summary-icon .jood-svg-icon {
    width: 18px !important;
    height: 18px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-hero__summary > span,
  #jood-app.jood-app-shell-view-cart .jood-cart-hero__summary small {
    font-size: 9px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-hero__summary strong {
    font-size: 16px !important;
  }

  /* Cart main */
  #jood-app.jood-app-shell-view-cart .jood-cart-layout {
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-main {
    padding: 9px !important;
    gap: 9px !important;
    border-radius: 20px !important;
    box-shadow: 0 7px 16px rgba(10,22,37,.03) !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-main__head {
    padding-bottom: 8px !important;
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-section-kicker {
    min-height: 20px !important;
    padding: 3px 7px !important;
    font-size: 8.5px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-main__head h2 {
    font-size: 20px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-main__head p {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-clear {
    min-height: 34px !important;
    padding: 7px 9px !important;
    border-radius: 12px !important;
    font-size: 9px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-clear .jood-svg-icon {
    width: 13px !important;
    height: 13px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-items {
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-item,
  #jood-app.jood-app-shell-view-cart .jood-cart-line,
  #jood-app.jood-app-shell-view-cart .jood-cart-product,
  #jood-app.jood-app-shell-view-cart .jood-cart-items > article,
  #jood-app.jood-app-shell-view-cart .jood-cart-items > div {
    padding: 8px !important;
    grid-template-columns: 68px minmax(0, 1fr) !important;
    grid-template-areas:
      "image content"
      "actions actions" !important;
    gap: 8px !important;
    border-radius: 17px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-item__image,
  #jood-app.jood-app-shell-view-cart .jood-cart-item-image,
  #jood-app.jood-app-shell-view-cart .jood-cart-product-image,
  #jood-app.jood-app-shell-view-cart .jood-cart-item figure,
  #jood-app.jood-app-shell-view-cart .jood-cart-items > article figure,
  #jood-app.jood-app-shell-view-cart .jood-cart-items > div figure {
    grid-area: image !important;
    width: 68px !important;
    height: 68px !important;
    min-width: 68px !important;
    border-radius: 13px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-item__image img,
  #jood-app.jood-app-shell-view-cart .jood-cart-item-image img,
  #jood-app.jood-app-shell-view-cart .jood-cart-product-image img,
  #jood-app.jood-app-shell-view-cart .jood-cart-item figure img,
  #jood-app.jood-app-shell-view-cart .jood-cart-items > article figure img,
  #jood-app.jood-app-shell-view-cart .jood-cart-items > div figure img {
    padding: 5px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-item__content,
  #jood-app.jood-app-shell-view-cart .jood-cart-item-content,
  #jood-app.jood-app-shell-view-cart .jood-cart-product-content,
  #jood-app.jood-app-shell-view-cart .jood-cart-item__info,
  #jood-app.jood-app-shell-view-cart .jood-cart-item-info {
    grid-area: content !important;
    gap: 4px !important;
    align-self: center !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-item h3,
  #jood-app.jood-app-shell-view-cart .jood-cart-item-title,
  #jood-app.jood-app-shell-view-cart .jood-cart-product-title,
  #jood-app.jood-app-shell-view-cart .jood-cart-items h3,
  #jood-app.jood-app-shell-view-cart .jood-cart-items h4 {
    font-size: 12px !important;
    line-height: 1.35 !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-item-meta,
  #jood-app.jood-app-shell-view-cart .jood-cart-product-meta,
  #jood-app.jood-app-shell-view-cart .jood-cart-items .variation,
  #jood-app.jood-app-shell-view-cart .jood-cart-items small,
  #jood-app.jood-app-shell-view-cart .jood-cart-items p {
    font-size: 9px !important;
    line-height: 1.35 !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-item__actions,
  #jood-app.jood-app-shell-view-cart .jood-cart-item-actions,
  #jood-app.jood-app-shell-view-cart .jood-cart-product-actions,
  #jood-app.jood-app-shell-view-cart .jood-cart-item__controls,
  #jood-app.jood-app-shell-view-cart .jood-cart-item-controls {
    grid-area: actions !important;
    min-width: 0 !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(110px, .8fr) minmax(0, 1fr) auto !important;
    align-items: center !important;
    justify-items: stretch !important;
    gap: 6px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-item-price,
  #jood-app.jood-app-shell-view-cart .jood-cart-product-price,
  #jood-app.jood-app-shell-view-cart .jood-cart-item-total,
  #jood-app.jood-app-shell-view-cart .jood-cart-product-total,
  #jood-app.jood-app-shell-view-cart .jood-cart-items .amount,
  #jood-app.jood-app-shell-view-cart .jood-cart-items .price {
    font-size: 11px !important;
    align-self: center !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-qty-control,
  #jood-app.jood-app-shell-view-cart .jood-cart-qty,
  #jood-app.jood-app-shell-view-cart .quantity {
    width: 112px !important;
    min-height: 34px !important;
    grid-template-columns: 32px minmax(0, 1fr) 32px !important;
    border-radius: 12px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-qty-control button,
  #jood-app.jood-app-shell-view-cart .jood-cart-qty button,
  #jood-app.jood-app-shell-view-cart .quantity button,
  #jood-app.jood-app-shell-view-cart .jood-qty-control input,
  #jood-app.jood-app-shell-view-cart .jood-cart-qty input,
  #jood-app.jood-app-shell-view-cart .quantity input {
    height: 34px !important;
    font-size: 11px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-remove-cart-item,
  #jood-app.jood-app-shell-view-cart .jood-cart-remove,
  #jood-app.jood-app-shell-view-cart .remove {
    min-height: 30px !important;
    padding: 6px 8px !important;
    font-size: 9px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-actions-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 7px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-actions-row .jood-btn {
    min-height: 40px !important;
    padding: 8px 9px !important;
    border-radius: 13px !important;
    font-size: 10px !important;
  }

  /* Side cards compact */
  #jood-app.jood-app-shell-view-cart .jood-cart-side {
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-side-card,
  #jood-app.jood-app-shell-view-cart .jood-cart-totals,
  #jood-app.jood-app-shell-view-cart .cart_totals,
  #jood-app.jood-app-shell-view-cart .jood-order-summary,
  #jood-app.jood-app-shell-view-cart .jood-cart-summary {
    padding: 9px !important;
    gap: 8px !important;
    border-radius: 18px !important;
    box-shadow: 0 7px 16px rgba(10,22,37,.03) !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-side-card__head {
    grid-template-columns: 32px minmax(0, 1fr) !important;
    gap: 7px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-side-card__head > .jood-svg-icon {
    width: 32px !important;
    height: 32px !important;
    padding: 8px !important;
    border-radius: 12px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-side-card__head h3 {
    font-size: 16px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-coupon-box,
  #jood-app.jood-app-shell-view-cart .jood-coupon-form,
  #jood-app.jood-app-shell-view-cart .coupon {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 6px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-coupon-box input,
  #jood-app.jood-app-shell-view-cart .jood-coupon-form input,
  #jood-app.jood-app-shell-view-cart .coupon input[type="text"],
  #jood-app.jood-app-shell-view-cart .jood-coupon-box button,
  #jood-app.jood-app-shell-view-cart .jood-coupon-form button,
  #jood-app.jood-app-shell-view-cart .coupon button,
  #jood-app.jood-app-shell-view-cart .coupon .button {
    min-height: 38px !important;
    border-radius: 12px !important;
    font-size: 10px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-totals h2,
  #jood-app.jood-app-shell-view-cart .cart_totals h2,
  #jood-app.jood-app-shell-view-cart .jood-order-summary h2,
  #jood-app.jood-app-shell-view-cart .jood-cart-summary h2,
  #jood-app.jood-app-shell-view-cart .jood-cart-totals h3,
  #jood-app.jood-app-shell-view-cart .cart_totals h3,
  #jood-app.jood-app-shell-view-cart .jood-order-summary h3,
  #jood-app.jood-app-shell-view-cart .jood-cart-summary h3 {
    font-size: 18px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-totals table,
  #jood-app.jood-app-shell-view-cart .cart_totals table,
  #jood-app.jood-app-shell-view-cart .jood-order-summary table,
  #jood-app.jood-app-shell-view-cart .jood-cart-summary table {
    border-spacing: 0 5px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-totals th,
  #jood-app.jood-app-shell-view-cart .cart_totals th,
  #jood-app.jood-app-shell-view-cart .jood-order-summary th,
  #jood-app.jood-app-shell-view-cart .jood-cart-summary th,
  #jood-app.jood-app-shell-view-cart .jood-cart-total-row span,
  #jood-app.jood-app-shell-view-cart .jood-summary-row span,
  #jood-app.jood-app-shell-view-cart .jood-cart-totals td,
  #jood-app.jood-app-shell-view-cart .cart_totals td,
  #jood-app.jood-app-shell-view-cart .jood-order-summary td,
  #jood-app.jood-app-shell-view-cart .jood-cart-summary td,
  #jood-app.jood-app-shell-view-cart .jood-cart-total-row strong,
  #jood-app.jood-app-shell-view-cart .jood-summary-row strong {
    padding: 7px 8px !important;
    font-size: 10px !important;
  }

  #jood-app.jood-app-shell-view-cart .checkout-button,
  #jood-app.jood-app-shell-view-cart .wc-forward,
  #jood-app.jood-app-shell-view-cart .jood-checkout-button,
  #jood-app.jood-app-shell-view-cart .jood-summary-actions .jood-btn-primary {
    min-height: 40px !important;
    border-radius: 13px !important;
    font-size: 10px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-trust-list {
    gap: 6px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-trust-list div {
    min-height: 38px !important;
    padding: 6px !important;
    grid-template-columns: 26px minmax(0, 1fr) !important;
    gap: 6px !important;
    border-radius: 12px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-trust-list .jood-svg-icon {
    width: 26px !important;
    height: 26px !important;
    padding: 6px !important;
    border-radius: 10px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-trust-list strong {
    font-size: 10px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-trust-list small {
    font-size: 9px !important;
    line-height: 1.25 !important;
  }
}

@media (max-width: 390px) {
  #jood-app.jood-app-shell-view-cart .jood-cart-hero h2 {
    font-size: 23px !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-item__actions,
  #jood-app.jood-app-shell-view-cart .jood-cart-item-actions,
  #jood-app.jood-app-shell-view-cart .jood-cart-product-actions,
  #jood-app.jood-app-shell-view-cart .jood-cart-item__controls,
  #jood-app.jood-app-shell-view-cart .jood-cart-item-controls {
    grid-template-columns: minmax(100px, 1fr) auto !important;
    grid-template-areas:
      "qty remove"
      "price price" !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-qty-control,
  #jood-app.jood-app-shell-view-cart .jood-cart-qty,
  #jood-app.jood-app-shell-view-cart .quantity {
    grid-area: qty !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-remove-cart-item,
  #jood-app.jood-app-shell-view-cart .jood-cart-remove,
  #jood-app.jood-app-shell-view-cart .remove {
    grid-area: remove !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-item-price,
  #jood-app.jood-app-shell-view-cart .jood-cart-product-price,
  #jood-app.jood-app-shell-view-cart .jood-cart-item-total,
  #jood-app.jood-app-shell-view-cart .jood-cart-product-total,
  #jood-app.jood-app-shell-view-cart .jood-cart-items .amount,
  #jood-app.jood-app-shell-view-cart .jood-cart-items .price {
    grid-area: price !important;
  }

  #jood-app.jood-app-shell-view-cart .jood-cart-actions-row {
    grid-template-columns: 1fr !important;
  }
}

/* Jood: reward program removed by Ethar Web */
.jood-account-reward-disabled-card,.jood-account-reward-disabled-panel{display:none!important;}

/* =========================================================
   JOOD FINAL POLISH — CART / CHECKOUT / SHIPPING
   Stable premium overrides loaded last.
========================================================= */
#jood-app {
  --jood-brown: #6B3E25;
  --jood-brown-deep: #2B170F;
  --jood-gold: #B9854D;
  --jood-gold-soft: #D7B179;
  --jood-cream: #FFF8EF;
  --jood-line: rgba(58, 36, 24, .14);
  --jood-soft-shadow: 0 18px 55px rgba(58, 36, 24, .08);
}

#jood-app.jood-app-shell-view-cart .jood-app-main,
#jood-app.jood-app-shell-view-checkout .jood-app-main,
#jood-app.jood-app-shell-view-thank-you .jood-app-main,
#jood-app.jood-app-shell-view-invoice .jood-app-main,
#jood-app.jood-app-shell-view-account .jood-app-main {
  width: min(1320px, calc(100% - 32px)) !important;
  max-width: 1320px !important;
  margin-inline: auto !important;
}

#jood-app .jood-cart-layout,
#jood-app .jood-checkout-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px) !important;
  gap: 18px !important;
  align-items: start !important;
}

#jood-app .jood-cart-main,
#jood-app .jood-checkout-main,
#jood-app .jood-cart-side-card,
#jood-app .jood-checkout-card,
#jood-app .jood-checkout-review-card {
  border: 1px solid var(--jood-line) !important;
  box-shadow: var(--jood-soft-shadow) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,249,239,.72)) !important;
}

#jood-app .jood-cart-item {
  transition: opacity .24s ease, transform .24s ease, height .24s ease, margin .24s ease, padding .24s ease !important;
}

#jood-app .jood-cart-item.is-updating {
  opacity: .62 !important;
  pointer-events: none !important;
}

#jood-app .jood-cart-item.is-removing,
#jood-app .jood-cart-item.is-collapsed {
  opacity: 0 !important;
  transform: translateY(8px) scale(.98) !important;
  overflow: hidden !important;
}

#jood-app .jood-qty-control {
  background: #fff !important;
  border: 1px solid rgba(200,155,74,.25) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 8px 22px rgba(58,36,24,.06) !important;
}

#jood-app .jood-qty-control button {
  color: var(--jood-brown) !important;
  background: rgba(248,241,230,.58) !important;
}

#jood-app .jood-qty-control button:hover {
  background: linear-gradient(135deg, var(--jood-gold), #B9854D) !important;
  color: #fff !important;
}

#jood-app .jood-cart-item__line-total,
#jood-app .jood-cart-totals .is-total strong,
#jood-app .jood-mini-cart-total {
  color: var(--jood-brown-deep) !important;
}

#jood-app .jood-shipping-methods,
#jood-app .jood-payment-grid {
  display: grid !important;
  gap: 10px !important;
}

#jood-app .jood-shipping-method,
#jood-app .jood-payment-card {
  position: relative !important;
  cursor: pointer !important;
  border: 1px solid rgba(58,36,24,.12) !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,.86) !important;
  padding: 14px 14px !important;
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  gap: 12px !important;
  align-items: start !important;
  transition: border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease !important;
}

#jood-app .jood-shipping-method:hover,
#jood-app .jood-payment-card:hover,
#jood-app .jood-payment-card.is-selected {
  border-color: rgba(200,155,74,.48) !important;
  background: linear-gradient(180deg, #fff, #fff7ea) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 34px rgba(58,36,24,.08) !important;
}

#jood-app .jood-shipping-method input,
#jood-app .jood-payment-card input[type="radio"] {
  width: 18px !important;
  height: 18px !important;
  margin-top: 3px !important;
  accent-color: var(--jood-gold) !important;
}

#jood-app .jood-shipping-method strong,
#jood-app .jood-payment-card b {
  display: block !important;
  font-weight: 900 !important;
  color: var(--jood-brown-deep) !important;
}

#jood-app .jood-shipping-method small,
#jood-app .jood-payment-card small {
  display: block !important;
  margin-top: 4px !important;
  color: rgba(58,36,24,.68) !important;
  line-height: 1.7 !important;
}

#jood-app .jood-payment-fields {
  display: none !important;
  margin-top: 12px !important;
  padding-top: 12px !important;
  border-top: 1px dashed rgba(200,155,74,.28) !important;
}

#jood-app .jood-payment-card.is-selected .jood-payment-fields,
#jood-app .jood-payment-card:has(input[type="radio"]:checked) .jood-payment-fields {
  display: block !important;
}

#jood-app .jood-payment-fields :where(input, select, textarea) {
  width: 100% !important;
  min-height: 44px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(58,36,24,.14) !important;
  background: #fff !important;
  padding: 10px 12px !important;
}

#jood-app .jood-checkout-review-card {
  position: sticky !important;
  top: 110px !important;
}

#jood-app .jood-place-order-button,
#jood-app .jood-btn-primary,
#jood-app .jood-btn-wide {
  background: radial-gradient(circle at 18% 16%, rgba(255,255,255,.28), transparent 32%), linear-gradient(135deg, #B9854D, #B9854D) !important;
  color: #fff !important;
  border-color: rgba(214,181,109,.28) !important;
  box-shadow: 0 16px 36px rgba(200,155,74,.22) !important;
}

#jood-app .jood-place-order-button:hover,
#jood-app .jood-btn-primary:hover,
#jood-app .jood-btn-wide:hover {
  background: radial-gradient(circle at 18% 16%, rgba(255,255,255,.22), transparent 32%), linear-gradient(135deg, #B9854D, #2B170F) !important;
  transform: translateY(-2px) !important;
}

@media (max-width: 1024px) {
  #jood-app .jood-cart-layout,
  #jood-app .jood-checkout-layout {
    grid-template-columns: 1fr !important;
  }

  #jood-app .jood-checkout-review-card {
    position: static !important;
  }
}

@media (max-width: 640px) {
  #jood-app.jood-app-shell-view-cart .jood-app-main,
  #jood-app.jood-app-shell-view-checkout .jood-app-main,
  #jood-app.jood-app-shell-view-thank-you .jood-app-main,
  #jood-app.jood-app-shell-view-invoice .jood-app-main,
  #jood-app.jood-app-shell-view-account .jood-app-main {
    width: min(100%, calc(100% - 18px)) !important;
  }

  #jood-app .jood-cart-hero,
  #jood-app .jood-checkout-hero {
    border-radius: 26px !important;
  }

  #jood-app .jood-cart-actions-row {
    grid-template-columns: 1fr !important;
  }
}

/* =========================================================
   99.90 CHECKOUT HARD STABILITY PATCH v4.2.0
   Fixes checkout full-width layout, field rendering, payment cards,
   shipping cards, and mobile readability after the required() PHP fix.
========================================================= */
body.jood-app-page.jood-app-view-checkout,
body.jood-app-page.jood-app-view-cart,
body.jood-app-page.jood-app-view-thank-you {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%) !important;
}

#jood-app.jood-app-shell-view-checkout,
#jood-app.jood-app-shell-view-cart,
#jood-app.jood-app-shell-view-thank-you {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
}

#jood-app.jood-app-shell-view-checkout .jood-app-main,
#jood-app.jood-app-shell-view-cart .jood-app-main,
#jood-app.jood-app-shell-view-thank-you .jood-app-main {
  width: min(1320px, calc(100vw - 32px)) !important;
  max-width: 1320px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-top: 18px !important;
  padding-bottom: 120px !important;
}

#jood-app .jood-checkout-page,
#jood-app .jood-cart-page {
  width: 100% !important;
  max-width: 100% !important;
}

#jood-app .jood-checkout-layout {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 410px !important;
  gap: 20px !important;
  align-items: start !important;
}

#jood-app .jood-checkout-main,
#jood-app .jood-checkout-side {
  min-width: 0 !important;
}

#jood-app .jood-checkout-card,
#jood-app .jood-checkout-review-card,
#jood-app .jood-checkout-trust-card {
  border-radius: 26px !important;
  border: 1px solid rgba(58,36,24,.14) !important;
  background:
    radial-gradient(circle at 14% 10%, rgba(200,155,74,.10), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,249,239,.78)) !important;
  box-shadow: 0 22px 70px rgba(58,36,24,.08) !important;
}

#jood-app .jood-checkout-card {
  padding: 22px !important;
  margin-bottom: 16px !important;
}

#jood-app .jood-form-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

#jood-app .jood-form-field-order_notes,
#jood-app .jood-form-field-billing_address_1,
#jood-app .jood-form-field-billing_address_2 {
  grid-column: 1 / -1 !important;
}

#jood-app .jood-form-field {
  display: grid !important;
  gap: 8px !important;
}

#jood-app .jood-form-field > span {
  color: #2B170F !important;
  font-size: 13px !important;
  font-weight: 900 !important;
}

#jood-app .jood-form-field em {
  color: #B9854D !important;
  font-style: normal !important;
}

#jood-app .jood-form-field :where(input, select, textarea),
#jood-app .jood-payment-fields :where(input, select, textarea) {
  width: 100% !important;
  min-height: 52px !important;
  border: 1px solid rgba(58,36,24,.14) !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,.94) !important;
  color: #2B170F !important;
  padding: 12px 15px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  outline: none !important;
  transition: border-color .24s ease, box-shadow .24s ease, background .24s ease !important;
}

#jood-app .jood-form-field textarea {
  min-height: 96px !important;
  resize: vertical !important;
}

#jood-app .jood-form-field :where(input, select, textarea):focus,
#jood-app .jood-payment-fields :where(input, select, textarea):focus {
  border-color: rgba(200,155,74,.55) !important;
  box-shadow: 0 0 0 4px rgba(200,155,74,.13), 0 14px 30px rgba(58,36,24,.06) !important;
  background: #FFFFFF !important;
}

#jood-app .jood-shipping-method,
#jood-app .jood-payment-card {
  border-radius: 20px !important;
  min-height: 72px !important;
}

#jood-app .jood-shipping-method input:checked + span strong,
#jood-app .jood-payment-card input:checked + span b {
  color: #B9854D !important;
}

#jood-app .jood-checkout-review-card {
  padding: 20px !important;
  position: sticky !important;
  top: 96px !important;
}

#jood-app .jood-checkout-review-item {
  display: grid !important;
  grid-template-columns: 70px minmax(0, 1fr) auto !important;
  gap: 12px !important;
  align-items: center !important;
  padding: 12px !important;
  border: 1px solid rgba(58,36,24,.10) !important;
  border-radius: 20px !important;
  background: rgba(255,255,255,.82) !important;
}

#jood-app .jood-checkout-review-item__image {
  width: 70px !important;
  height: 70px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: #FFFFFF !important;
  border: 1px solid rgba(200,155,74,.18) !important;
}

#jood-app .jood-checkout-review-item__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

#jood-app .jood-checkout-terms {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 16px 18px !important;
  border-radius: 20px !important;
  border: 1px solid rgba(200,155,74,.24) !important;
  background: rgba(255,249,239,.78) !important;
  color: #2B170F !important;
  font-weight: 850 !important;
}

#jood-app .jood-checkout-terms input {
  width: 18px !important;
  height: 18px !important;
  accent-color: #B9854D !important;
}

#jood-app .jood-empty-note,
#jood-app .jood-checkout-admin-note {
  border: 1px solid rgba(200,155,74,.24) !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
  border-radius: 18px !important;
  padding: 14px !important;
  font-weight: 800 !important;
}

@media (max-width: 1024px) {
  #jood-app .jood-checkout-layout {
    grid-template-columns: 1fr !important;
  }

  #jood-app .jood-checkout-review-card {
    position: static !important;
    top: auto !important;
  }
}

@media (max-width: 640px) {
  #jood-app.jood-app-shell-view-checkout .jood-app-main,
  #jood-app.jood-app-shell-view-cart .jood-app-main,
  #jood-app.jood-app-shell-view-thank-you .jood-app-main {
    width: calc(100vw - 14px) !important;
    padding-top: 10px !important;
  }

  #jood-app .jood-checkout-hero,
  #jood-app .jood-cart-hero {
    padding: 22px 18px !important;
    border-radius: 28px !important;
  }

  #jood-app .jood-checkout-hero h2,
  #jood-app .jood-cart-hero h2 {
    font-size: clamp(26px, 8vw, 38px) !important;
    line-height: 1.2 !important;
  }

  #jood-app .jood-checkout-hero__summary {
    display: none !important;
  }

  #jood-app .jood-form-grid {
    grid-template-columns: 1fr !important;
  }

  #jood-app .jood-checkout-card,
  #jood-app .jood-checkout-review-card,
  #jood-app .jood-checkout-trust-card {
    padding: 16px !important;
    border-radius: 24px !important;
  }

  #jood-app .jood-checkout-review-item {
    grid-template-columns: 58px minmax(0, 1fr) !important;
  }

  #jood-app .jood-checkout-review-item__total {
    grid-column: 2 !important;
    justify-self: start !important;
  }

  #jood-app .jood-place-order-button {
    min-height: 56px !important;
    font-size: 15px !important;
  }
}

/* =========================================================
   Jood v4.3.0 — checkout + filters final hardening
   ========================================================= */
#jood-app.jood-app-shell-view-checkout,
body.jood-app-view-checkout #jood-app {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  background:
    radial-gradient(circle at 50% -8%, rgba(200,155,74,.13), transparent 28%),
    linear-gradient(180deg, #FFFFFF 0%, #ffffff 45%, #f8f1e6 100%) !important;
}

body.jood-app-view-checkout :where(.site-main,.content-area,.entry-content,.page-content,.elementor-section,.elementor-container,.elementor-widget-container) {
  max-width: none !important;
}

#jood-app.jood-app-shell-view-checkout .jood-app-main,
#jood-app .jood-checkout-page {
  width: min(1260px, calc(100vw - 32px)) !important;
  max-width: 1260px !important;
  margin: 0 auto !important;
  padding-inline: 0 !important;
  box-sizing: border-box !important;
}

#jood-app .jood-checkout-hero {
  position: relative !important;
  width: 100% !important;
  min-height: 210px !important;
  padding: clamp(24px, 3vw, 44px) !important;
  border-radius: 34px !important;
  border: 1px solid rgba(200,155,74,.28) !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(200,155,74,.20), transparent 28%),
    radial-gradient(circle at 92% 14%, rgba(255,255,255,.18), transparent 24%),
    linear-gradient(135deg, #2a180f 0%, #101722 62%, #3a2418 100%) !important;
  box-shadow: 0 34px 80px rgba(58,36,24,.16) !important;
  overflow: hidden !important;
  display: grid !important;
  grid-template-columns: minmax(0,1fr) minmax(220px, 310px) !important;
  gap: 24px !important;
  align-items: center !important;
}

#jood-app .jood-checkout-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 10px !important;
  border-radius: 26px !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  pointer-events: none !important;
}

#jood-app .jood-checkout-hero__content,
#jood-app .jood-checkout-hero__summary {
  position: relative !important;
  z-index: 2 !important;
}

#jood-app .jood-checkout-hero h2,
#jood-app .jood-checkout-hero p,
#jood-app .jood-checkout-hero .jood-eyebrow,
#jood-app .jood-checkout-steps strong,
#jood-app .jood-checkout-hero__summary span,
#jood-app .jood-checkout-hero__summary small {
  color: #FFFFFF !important;
}

#jood-app .jood-checkout-hero h2 {
  font-size: clamp(30px, 4vw, 56px) !important;
  line-height: 1.12 !important;
  margin: 10px 0 12px !important;
  letter-spacing: -.04em !important;
}

#jood-app .jood-checkout-hero p {
  max-width: 720px !important;
  opacity: .88 !important;
  font-size: clamp(14px, 1.5vw, 17px) !important;
  line-height: 1.9 !important;
}

#jood-app .jood-checkout-hero__summary {
  min-height: 154px !important;
  border-radius: 26px !important;
  padding: 22px !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.08)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 18px 44px rgba(0,0,0,.18) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

#jood-app .jood-checkout-hero__summary strong {
  color: #fff !important;
  font-size: clamp(24px, 2.5vw, 34px) !important;
}

#jood-app .jood-checkout-steps {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  margin-top: 24px !important;
}

#jood-app .jood-checkout-steps > div {
  min-height: 48px !important;
  border-radius: 999px !important;
  padding: 8px 12px !important;
  background: rgba(255,255,255,.10) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
}

#jood-app .jood-checkout-steps > div.is-active,
#jood-app .jood-checkout-steps > div.is-done {
  background: linear-gradient(135deg, #B9854D, #B9854D) !important;
  border-color: rgba(255,255,255,.20) !important;
}

#jood-app .jood-checkout-steps span {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255,255,255,.16) !important;
  color: #fff !important;
  font-weight: 950 !important;
}

#jood-app .jood-checkout-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 410px) !important;
  gap: 18px !important;
  align-items: start !important;
  margin-top: 18px !important;
}

#jood-app .jood-checkout-main,
#jood-app .jood-checkout-side {
  min-width: 0 !important;
  display: grid !important;
  gap: 16px !important;
}

#jood-app .jood-checkout-card,
#jood-app .jood-checkout-review-card,
#jood-app .jood-checkout-trust-card {
  position: relative !important;
  border-radius: 30px !important;
  border: 1px solid rgba(58,36,24,.12) !important;
  background:
    radial-gradient(circle at 16% 14%, rgba(200,155,74,.08), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,250,241,.82)) !important;
  box-shadow: 0 24px 60px rgba(58,36,24,.075) !important;
  overflow: hidden !important;
}

#jood-app .jood-checkout-card::after,
#jood-app .jood-checkout-review-card::after,
#jood-app .jood-checkout-trust-card::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  right: 34px !important;
  width: 70px !important;
  height: 4px !important;
  border-radius: 0 0 999px 999px !important;
  background: linear-gradient(90deg, #B9854D, #D7B179) !important;
}

#jood-app .jood-checkout-card__head,
#jood-app .jood-checkout-review-card__head {
  display: flex !important;
  align-items: center !important;
  gap: 13px !important;
  padding-bottom: 14px !important;
  margin-bottom: 16px !important;
  border-bottom: 1px solid rgba(58,36,24,.08) !important;
}

#jood-app .jood-checkout-card__head h3,
#jood-app .jood-checkout-review-card__head h3 {
  color: #2B170F !important;
  font-size: clamp(20px, 2vw, 27px) !important;
  line-height: 1.25 !important;
}

#jood-app .jood-form-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

#jood-app .jood-form-field,
#jood-app .jood-shipping-method,
#jood-app .jood-payment-card {
  border-radius: 20px !important;
  border: 1px solid rgba(58,36,24,.12) !important;
  background: rgba(255,255,255,.86) !important;
  box-shadow: 0 14px 30px rgba(58,36,24,.045) !important;
}

#jood-app .jood-form-field input,
#jood-app .jood-form-field textarea,
#jood-app .jood-form-field select {
  width: 100% !important;
  min-height: 54px !important;
  border-radius: 17px !important;
  border: 1px solid rgba(58,36,24,.12) !important;
  background: #fff !important;
  color: #2B170F !important;
  outline: none !important;
  transition: all .25s ease !important;
}

#jood-app .jood-form-field input:focus,
#jood-app .jood-form-field textarea:focus,
#jood-app .jood-form-field select:focus {
  border-color: rgba(200,155,74,.65) !important;
  box-shadow: 0 0 0 4px rgba(200,155,74,.14) !important;
}

#jood-app .jood-form-field span,
#jood-app .jood-form-field label,
#jood-app .jood-form-field em {
  color: #2B170F !important;
}

#jood-app .jood-shipping-methods,
#jood-app .jood-payment-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
}

#jood-app .jood-shipping-method,
#jood-app .jood-payment-card {
  min-height: 78px !important;
  padding: 16px 18px !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  cursor: pointer !important;
  transition: all .28s cubic-bezier(.2,.8,.2,1) !important;
}

#jood-app .jood-shipping-method:hover,
#jood-app .jood-payment-card:hover,
#jood-app .jood-shipping-method:has(input:checked),
#jood-app .jood-payment-card:has(input:checked) {
  border-color: rgba(200,155,74,.55) !important;
  background: linear-gradient(180deg, #FFFFFF, #F6E9D8) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 22px 46px rgba(200,155,74,.12) !important;
}

#jood-app .jood-shipping-method input,
#jood-app .jood-payment-card input {
  width: 22px !important;
  height: 22px !important;
  accent-color: #B9854D !important;
  flex: 0 0 auto !important;
}

#jood-app .jood-shipping-method strong,
#jood-app .jood-payment-card b {
  color: #2B170F !important;
  font-size: 16px !important;
  font-weight: 950 !important;
}

#jood-app .jood-shipping-method small,
#jood-app .jood-payment-card small {
  color: #7B6758 !important;
  font-size: 13px !important;
  line-height: 1.65 !important;
}

#jood-app .jood-checkout-review-card,
#jood-app .jood-checkout-trust-card {
  padding: 20px !important;
}

#jood-app .jood-checkout-review-item {
  display: grid !important;
  grid-template-columns: 74px minmax(0,1fr) auto !important;
  gap: 12px !important;
  align-items: center !important;
  padding: 12px !important;
  border-radius: 20px !important;
  background: rgba(255,255,255,.78) !important;
  border: 1px solid rgba(58,36,24,.08) !important;
}

#jood-app .jood-checkout-review-item__image,
#jood-app .jood-checkout-review-item__image img {
  width: 74px !important;
  height: 74px !important;
  border-radius: 18px !important;
  object-fit: cover !important;
}

#jood-app .jood-btn-primary,
#jood-app button.jood-btn-primary,
#jood-app input[type="submit"].jood-btn-primary,
#jood-app .jood-store-filter-selects button[type="submit"],
#jood-app .jood-checkout-submit,
#jood-app .button.alt,
#jood-app button[type="submit"] {
  color: #FFFFFF !important;
  background: radial-gradient(circle at 20% 15%, rgba(255,255,255,.22), transparent 34%), linear-gradient(135deg, #B9854D, #B9854D) !important;
  border: 1px solid rgba(214,181,109,.25) !important;
  box-shadow: 0 18px 42px rgba(200,155,74,.24) !important;
  text-shadow: 0 1px 1px rgba(10,22,37,.18) !important;
}

#jood-app .jood-btn-primary:hover,
#jood-app button.jood-btn-primary:hover,
#jood-app input[type="submit"].jood-btn-primary:hover,
#jood-app .jood-store-filter-selects button[type="submit"]:hover,
#jood-app .jood-checkout-submit:hover,
#jood-app .button.alt:hover,
#jood-app button[type="submit"]:hover {
  color: #FFFFFF !important;
  background: radial-gradient(circle at 20% 15%, rgba(255,255,255,.25), transparent 34%), linear-gradient(135deg, #B9854D, #2B170F) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 24px 54px rgba(214,181,109,.30) !important;
}

#jood-app .jood-store-filters {
  border-radius: 28px !important;
  border: 1px solid rgba(200,155,74,.22) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,250,241,.82)) !important;
  box-shadow: 0 20px 54px rgba(58,36,24,.07) !important;
}

#jood-app .jood-store-filter-selects select,
#jood-app .jood-store-filter-search input {
  border-color: rgba(58,36,24,.12) !important;
  background-color: #fff !important;
  color: #2B170F !important;
}

@media (max-width: 980px) {
  #jood-app.jood-app-shell-view-checkout .jood-app-main,
  #jood-app .jood-checkout-page {
    width: min(100%, calc(100vw - 20px)) !important;
  }

  #jood-app .jood-checkout-hero,
  #jood-app .jood-checkout-layout {
    grid-template-columns: 1fr !important;
  }

  #jood-app .jood-checkout-hero {
    border-radius: 28px !important;
    padding: 24px !important;
  }

  #jood-app .jood-form-grid {
    grid-template-columns: 1fr !important;
  }

  #jood-app .jood-checkout-side {
    position: static !important;
  }
}

@media (max-width: 540px) {
  #jood-app .jood-checkout-page {
    width: calc(100vw - 14px) !important;
  }

  #jood-app .jood-checkout-hero {
    min-height: unset !important;
    padding: 20px 16px !important;
    border-radius: 24px !important;
  }

  #jood-app .jood-checkout-steps {
    grid-template-columns: 1fr !important;
  }

  #jood-app .jood-checkout-card,
  #jood-app .jood-checkout-review-card,
  #jood-app .jood-checkout-trust-card {
    border-radius: 24px !important;
    padding: 16px !important;
  }

  #jood-app .jood-checkout-review-item {
    grid-template-columns: 58px minmax(0, 1fr) !important;
  }

  #jood-app .jood-checkout-review-item__total {
    grid-column: 2 / -1 !important;
  }

  #jood-app .jood-checkout-review-item__image,
  #jood-app .jood-checkout-review-item__image img {
    width: 58px !important;
    height: 58px !important;
  }
}

/* =========================================================
   JOOD v4.4.0 — ROYAL CHECKOUT REBUILD + FILTER FATAL FIX UI
   Loaded last. Rebuilds checkout visual layer without changing Woo engine.
========================================================= */
body.jood-app-view-checkout {
  background:
    radial-gradient(circle at 50% -120px, rgba(200,155,74,.18), transparent 360px),
    linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 42%, #FFFFFF 100%) !important;
}

body.jood-app-view-checkout :where(.site-main,.content-area,.entry-content,.page-content,.elementor,.elementor-section,.elementor-container,.elementor-widget-container) {
  max-width: none !important;
}

#jood-app.jood-app-shell-view-checkout .jood-app-page-head {
  display: none !important;
}

#jood-app.jood-app-shell-view-checkout .jood-app-main,
#jood-app.jood-app-shell-view-checkout .jood-checkout-page {
  width: min(1280px, calc(100vw - 32px)) !important;
  max-width: 1280px !important;
  margin-inline: auto !important;
  padding: 18px 0 128px !important;
  overflow: visible !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero {
  min-height: 188px !important;
  margin: 0 0 18px !important;
  padding: clamp(24px, 3vw, 42px) !important;
  border-radius: 38px !important;
  border: 1px solid rgba(200,155,74,.28) !important;
  background:
    radial-gradient(circle at 16% 18%, rgba(200,155,74,.16), transparent 32%),
    radial-gradient(circle at 86% 4%, rgba(255,255,255,.95), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,249,239,.86)) !important;
  box-shadow: 0 34px 90px rgba(58,36,24,.10) !important;
  display: grid !important;
  grid-template-columns: minmax(0,1fr) minmax(230px, 330px) !important;
  gap: 26px !important;
  align-items: center !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 10px !important;
  border-radius: 30px !important;
  border: 1px solid rgba(200,155,74,.14) !important;
  pointer-events: none !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero::after {
  content: "كوخ الأثاث" !important;
  position: absolute !important;
  left: 28px !important;
  bottom: -18px !important;
  color: rgba(58,36,24,.045) !important;
  font-size: clamp(72px, 9vw, 130px) !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  pointer-events: none !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero__content,
#jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary {
  position: relative !important;
  z-index: 2 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero h2,
#jood-app.jood-app-shell-view-checkout .jood-checkout-hero p,
#jood-app.jood-app-shell-view-checkout .jood-checkout-hero .jood-eyebrow,
#jood-app.jood-app-shell-view-checkout .jood-checkout-steps strong,
#jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary span,
#jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary small {
  color: #2B170F !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero .jood-eyebrow,
#jood-app.jood-app-shell-view-checkout .jood-section-kicker {
  width: max-content !important;
  max-width: 100% !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-height: 28px !important;
  padding: 4px 12px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(200,155,74,.25) !important;
  background: rgba(255,249,239,.86) !important;
  color: #B9854D !important;
  font-size: 12px !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero h2 {
  margin: 12px 0 10px !important;
  font-size: clamp(34px, 4.5vw, 64px) !important;
  line-height: 1.05 !important;
  letter-spacing: -.045em !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero p {
  max-width: 690px !important;
  color: rgba(10,22,37,.72) !important;
  font-size: clamp(14px, 1.35vw, 17px) !important;
  line-height: 1.9 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary {
  min-height: 150px !important;
  border-radius: 28px !important;
  border: 1px solid rgba(200,155,74,.26) !important;
  background:
    radial-gradient(circle at 25% 15%, rgba(200,155,74,.18), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,249,239,.86)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.90), 0 20px 48px rgba(58,36,24,.09) !important;
  padding: 22px !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary strong {
  color: #2B170F !important;
  font-size: clamp(25px, 2.5vw, 36px) !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-steps {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0,1fr)) !important;
  gap: 10px !important;
  margin-top: 22px !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div {
  min-height: 50px !important;
  border-radius: 999px !important;
  padding: 8px 12px !important;
  background: #FFFFFF !important;
  border: 1px solid rgba(58,36,24,.12) !important;
  color: #2B170F !important;
  box-shadow: 0 12px 26px rgba(58,36,24,.055) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div.is-active,
#jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div.is-done {
  background: linear-gradient(135deg, #B9854D, #B9854D) !important;
  border-color: rgba(214,181,109,.22) !important;
  box-shadow: 0 16px 34px rgba(200,155,74,.20) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div.is-active strong,
#jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div.is-done strong,
#jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div.is-active span,
#jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div.is-done span {
  color: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-layout {
  margin-top: 18px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px) !important;
  gap: 20px !important;
  align-items: start !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-main,
#jood-app.jood-app-shell-view-checkout .jood-checkout-side {
  min-width: 0 !important;
  display: grid !important;
  gap: 16px !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card {
  padding: clamp(18px, 2vw, 26px) !important;
  border-radius: 32px !important;
  border: 1px solid rgba(200,155,74,.22) !important;
  background:
    radial-gradient(circle at 15% 12%, rgba(200,155,74,.09), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,250,241,.86)) !important;
  box-shadow: 0 26px 68px rgba(58,36,24,.08) !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card::after,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card::after {
  top: 0 !important;
  right: 34px !important;
  width: 82px !important;
  height: 4px !important;
  background: linear-gradient(90deg, #B9854D, #D7B179) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card__head,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head {
  padding-bottom: 14px !important;
  margin-bottom: 16px !important;
  border-bottom: 1px solid rgba(58,36,24,.08) !important;
  align-items: center !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card__head > .jood-svg-icon,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head > .jood-svg-icon {
  width: 48px !important;
  height: 48px !important;
  color: #B9854D !important;
  border-color: rgba(200,155,74,.25) !important;
  background: rgba(255,249,239,.92) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card__head h3,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head h3 {
  font-size: clamp(22px, 2vw, 30px) !important;
  color: #2B170F !important;
  font-weight: 950 !important;
  line-height: 1.18 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-form-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0,1fr)) !important;
  gap: 12px !important;
}

#jood-app.jood-app-shell-view-checkout .jood-form-field {
  padding: 12px !important;
  border-radius: 22px !important;
  border: 1px solid rgba(58,36,24,.11) !important;
  background: rgba(255,255,255,.82) !important;
  box-shadow: 0 12px 28px rgba(58,36,24,.04) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-form-field :where(input,textarea,select) {
  min-height: 54px !important;
  border-radius: 17px !important;
  border: 1px solid rgba(58,36,24,.13) !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
  box-shadow: none !important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-methods,
#jood-app.jood-app-shell-view-checkout .jood-payment-grid {
  display: grid !important;
  gap: 12px !important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method,
#jood-app.jood-app-shell-view-checkout .jood-payment-card,
#jood-app.jood-app-shell-view-checkout .jood-checkout-terms {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 34px minmax(0, 1fr) !important;
  gap: 12px !important;
  align-items: center !important;
  min-height: 76px !important;
  padding: 16px 18px !important;
  border-radius: 24px !important;
  border: 1px solid rgba(58,36,24,.12) !important;
  background: rgba(255,255,255,.86) !important;
  cursor: pointer !important;
  box-shadow: 0 14px 32px rgba(58,36,24,.045) !important;
  transition: border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease !important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method:hover,
#jood-app.jood-app-shell-view-checkout .jood-payment-card:hover,
#jood-app.jood-app-shell-view-checkout .jood-checkout-terms:hover,
#jood-app.jood-app-shell-view-checkout .jood-shipping-method:has(input:checked),
#jood-app.jood-app-shell-view-checkout .jood-payment-card:has(input:checked),
#jood-app.jood-app-shell-view-checkout .jood-checkout-terms:has(input:checked),
#jood-app.jood-app-shell-view-checkout .jood-payment-card.is-selected {
  border-color: rgba(200,155,74,.58) !important;
  background: linear-gradient(180deg, #FFFFFF, #F6E9D8) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 22px 48px rgba(200,155,74,.13) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method input,
#jood-app.jood-app-shell-view-checkout .jood-payment-card input[type="radio"],
#jood-app.jood-app-shell-view-checkout .jood-checkout-terms input[type="checkbox"] {
  position: relative !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 30px !important;
  height: 30px !important;
  margin: 0 !important;
  border-radius: 50% !important;
  border: 1px solid rgba(200,155,74,.45) !important;
  background: #FFFFFF !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 8px 18px rgba(58,36,24,.05) !important;
  cursor: pointer !important;
  flex: 0 0 30px !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-terms input[type="checkbox"] {
  border-radius: 10px !important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method input:checked,
#jood-app.jood-app-shell-view-checkout .jood-payment-card input[type="radio"]:checked,
#jood-app.jood-app-shell-view-checkout .jood-checkout-terms input[type="checkbox"]:checked {
  border-color: #B9854D !important;
  background: linear-gradient(135deg, #B9854D, #B9854D) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method input:checked::after,
#jood-app.jood-app-shell-view-checkout .jood-payment-card input[type="radio"]:checked::after,
#jood-app.jood-app-shell-view-checkout .jood-checkout-terms input[type="checkbox"]:checked::after {
  content: "" !important;
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  width: 12px !important;
  height: 7px !important;
  border-right: 2px solid #FFFFFF !important;
  border-bottom: 2px solid #FFFFFF !important;
  transform: rotate(45deg) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method > span,
#jood-app.jood-app-shell-view-checkout .jood-payment-card > span,
#jood-app.jood-app-shell-view-checkout .jood-checkout-terms > span {
  display: block !important;
  min-width: 0 !important;
  color: #2B170F !important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method strong,
#jood-app.jood-app-shell-view-checkout .jood-payment-card b,
#jood-app.jood-app-shell-view-checkout .jood-checkout-terms span {
  color: #2B170F !important;
  font-size: 15.5px !important;
  font-weight: 950 !important;
  line-height: 1.55 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method small,
#jood-app.jood-app-shell-view-checkout .jood-payment-card small {
  color: #7B6758 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.7 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-empty-note {
  min-height: 72px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 24px !important;
  border: 1px solid rgba(200,155,74,.22) !important;
  background: rgba(255,249,239,.82) !important;
  color: #2B170F !important;
  font-size: 16px !important;
  font-weight: 900 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card {
  position: sticky !important;
  top: 108px !important;
  align-self: start !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-items {
  display: grid !important;
  gap: 10px !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item {
  display: grid !important;
  grid-template-columns: 76px minmax(0,1fr) auto !important;
  gap: 12px !important;
  align-items: center !important;
  padding: 12px !important;
  border-radius: 22px !important;
  border: 1px solid rgba(58,36,24,.09) !important;
  background: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__image,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__image img {
  width: 76px !important;
  height: 76px !important;
  border-radius: 20px !important;
  object-fit: cover !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-checkout .jood-cart-totals,
#jood-app.jood-app-shell-view-checkout .jood-cart-totals-list,
#jood-app.jood-app-shell-view-checkout .jood-cart-total-row {
  width: 100% !important;
}

#jood-app.jood-app-shell-view-checkout .jood-cart-total-row,
#jood-app.jood-app-shell-view-checkout .jood-cart-totals-list > div {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  padding: 10px 0 !important;
  border-bottom: 1px dashed rgba(58,36,24,.10) !important;
  color: #2B170F !important;
}

#jood-app.jood-app-shell-view-checkout .jood-place-order-button,
#jood-app.jood-app-shell-view-checkout .jood-btn-primary,
#jood-app.jood-app-shell-view-checkout button[type="submit"].jood-btn,
#jood-app.jood-app-shell-view-checkout .button.alt {
  min-height: 58px !important;
  border-radius: 20px !important;
  color: #FFFFFF !important;
  background:
    radial-gradient(circle at 24% 18%, rgba(255,255,255,.26), transparent 34%),
    linear-gradient(135deg, #B9854D, #B9854D) !important;
  border: 1px solid rgba(214,181,109,.26) !important;
  box-shadow: 0 20px 44px rgba(200,155,74,.25) !important;
  text-shadow: 0 1px 1px rgba(10,22,37,.20) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-place-order-button:hover,
#jood-app.jood-app-shell-view-checkout .jood-btn-primary:hover,
#jood-app.jood-app-shell-view-checkout button[type="submit"].jood-btn:hover,
#jood-app.jood-app-shell-view-checkout .button.alt:hover {
  color: #FFFFFF !important;
  background:
    radial-gradient(circle at 24% 18%, rgba(255,255,255,.28), transparent 34%),
    linear-gradient(135deg, #B9854D, #2B170F) !important;
  transform: translateY(-2px) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-btn-primary *,
#jood-app.jood-app-shell-view-checkout .jood-place-order-button *,
#jood-app.jood-app-shell-view-checkout button[type="submit"].jood-btn * {
  color: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-trust-card {
  display: none !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filters,
#jood-app.jood-app-shell-view-category .jood-store-filters {
  overflow: visible !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects select,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects select {
  position: relative !important;
  z-index: 6 !important;
}

@media (max-width: 1080px) {
  #jood-app.jood-app-shell-view-checkout .jood-checkout-layout,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero {
    grid-template-columns: 1fr !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card {
    position: static !important;
    top: auto !important;
  }
}

@media (max-width: 640px) {
  #jood-app.jood-app-shell-view-checkout .jood-app-main,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-page {
    width: calc(100vw - 14px) !important;
    padding-top: 8px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero {
    min-height: unset !important;
    padding: 20px 16px !important;
    border-radius: 26px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero h2 {
    font-size: clamp(32px, 10vw, 42px) !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-steps {
    grid-template-columns: 1fr !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-form-grid {
    grid-template-columns: 1fr !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card {
    padding: 16px !important;
    border-radius: 24px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-shipping-method,
  #jood-app.jood-app-shell-view-checkout .jood-payment-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-terms {
    min-height: 66px !important;
    padding: 14px !important;
    border-radius: 20px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item {
    grid-template-columns: 62px minmax(0,1fr) !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__image,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__image img {
    width: 62px !important;
    height: 62px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__total {
    grid-column: 2 / -1 !important;
    justify-self: start !important;
  }
}

/* =========================================================
   JOOD CHECKOUT — ROYAL COMPACT REBUILD OVERRIDE
   الصفحة دي مخصوص صفحة الدفع فقط، معزولة بالكامل داخل #jood-app
   ضع هذا الجزء في آخر ملف assets/css/jood-app.css
========================================================= */

#jood-app.jood-app-shell-view-checkout {
  --abk-checkout-max: 1180px;
  --abk-checkout-gold: #B9854D;
  --abk-checkout-gold-2: #D7B179;
  --abk-checkout-gold-3: #B9854D;
  --abk-checkout-brown: #2B170F;
  --abk-checkout-brown-2: #2B170F;
  --abk-checkout-ink: #2B170F;
  --abk-checkout-muted: #75675B;
  --abk-checkout-line: rgba(58, 36, 24, .135);
  --abk-checkout-line-2: rgba(200, 155, 74, .28);
  --abk-checkout-cream: #FFFFFF;
  --abk-checkout-cream-2: #FFFFFF;
  --abk-checkout-white: #FFFFFF;
  --abk-checkout-shadow: 0 18px 52px rgba(58, 36, 24, .075);
  --abk-checkout-shadow-soft: 0 10px 28px rgba(58, 36, 24, .052);
  --abk-checkout-radius: 24px;
  background:
    radial-gradient(circle at 18% -10%, rgba(200,155,74,.13), transparent 30%),
    radial-gradient(circle at 88% 4%, rgba(231,197,121,.10), transparent 28%),
    linear-gradient(180deg, #FFFFFF 0%, #ffffff 42%, #FFFFFF 100%) !important;
  overflow-x: clip !important;
}

body.jood-app-view-checkout :where(.site,.site-main,.content-area,.entry-content,.page-content,.elementor,.elementor-section,.elementor-container,.elementor-widget-container) {
  max-width: none !important;
}

#jood-app.jood-app-shell-view-checkout .jood-app-main,
#jood-app.jood-app-shell-view-checkout .jood-checkout-page {
  width: min(var(--abk-checkout-max), calc(100vw - 28px)) !important;
  max-width: var(--abk-checkout-max) !important;
  margin: 0 auto !important;
  padding: 8px 0 34px !important;
}

#jood-app.jood-app-shell-view-checkout .jood-app-page-head,
#jood-app.jood-app-shell-view-checkout .jood-checkout-trust-card,
#jood-app.jood-app-shell-view-checkout .jood-trust-card,
#jood-app.jood-app-shell-view-checkout [class*="trust-card"],
#jood-app.jood-app-shell-view-checkout [class*="trust"]:has(.jood-section-kicker) {
  display: none !important;
}

/* HERO مضغوط وفاتح بدل البلوك الغامق الطويل */
#jood-app.jood-app-shell-view-checkout .jood-checkout-hero {
  width: 100% !important;
  min-height: 126px !important;
  margin: 0 0 14px !important;
  padding: 18px 22px !important;
  border-radius: 28px !important;
  border: 1px solid var(--abk-checkout-line-2) !important;
  background:
    radial-gradient(circle at 12% 16%, rgba(200,155,74,.14), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,249,239,.92)) !important;
  box-shadow: var(--abk-checkout-shadow) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 280px) !important;
  gap: 16px !important;
  align-items: center !important;
  overflow: hidden !important;
  color: var(--abk-checkout-brown-2) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 8px !important;
  border-radius: 22px !important;
  border: 1px solid rgba(200,155,74,.12) !important;
  pointer-events: none !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero::after {
  content: "كوخ الأثاث" !important;
  position: absolute !important;
  left: 18px !important;
  bottom: -16px !important;
  color: rgba(58,36,24,.035) !important;
  font-size: 86px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  pointer-events: none !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero__content,
#jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary {
  position: relative !important;
  z-index: 2 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero .jood-eyebrow,
#jood-app.jood-app-shell-view-checkout .jood-section-kicker {
  width: fit-content !important;
  max-width: 100% !important;
  min-height: 22px !important;
  padding: 3px 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(200,155,74,.28) !important;
  background: rgba(255,249,239,.94) !important;
  color: var(--abk-checkout-gold-3) !important;
  font-size: 11px !important;
  font-weight: 950 !important;
  line-height: 1.3 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero h2 {
  margin: 7px 0 5px !important;
  color: var(--abk-checkout-brown-2) !important;
  font-size: clamp(28px, 3vw, 44px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.04em !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero p {
  max-width: 680px !important;
  margin: 0 !important;
  color: rgba(10,22,37,.68) !important;
  font-size: 13px !important;
  line-height: 1.65 !important;
  font-weight: 750 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary {
  min-height: 92px !important;
  padding: 14px 16px !important;
  display: grid !important;
  align-content: center !important;
  gap: 3px !important;
  border-radius: 22px !important;
  border: 1px solid rgba(200,155,74,.22) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,249,239,.78)) !important;
  box-shadow: 0 12px 30px rgba(58,36,24,.065) !important;
  color: var(--abk-checkout-brown-2) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary span,
#jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary small {
  color: var(--abk-checkout-muted) !important;
  font-size: 11px !important;
  font-weight: 850 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary strong {
  color: var(--abk-checkout-brown-2) !important;
  font-size: clamp(20px, 2vw, 28px) !important;
  line-height: 1.15 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-steps {
  margin-top: 12px !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div {
  min-height: 38px !important;
  padding: 7px 10px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(58,36,24,.105) !important;
  background: rgba(255,255,255,.78) !important;
  color: var(--abk-checkout-brown-2) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  box-shadow: 0 8px 18px rgba(58,36,24,.045) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div.is-active,
#jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div.is-done {
  background: linear-gradient(135deg, var(--abk-checkout-gold), var(--abk-checkout-gold-3)) !important;
  border-color: rgba(214,181,109,.26) !important;
  color: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-steps strong,
#jood-app.jood-app-shell-view-checkout .jood-checkout-steps span {
  color: inherit !important;
  font-size: 12px !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-steps span {
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255,255,255,.22) !important;
}

/* تخطيط عمودين متوازنين ومضغوط */
#jood-app.jood-app-shell-view-checkout .jood-checkout-layout {
  margin-top: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.04fr) minmax(350px, .96fr) !important;
  gap: 14px !important;
  align-items: start !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-main,
#jood-app.jood-app-shell-view-checkout .jood-checkout-side {
  min-width: 0 !important;
  display: grid !important;
  grid-template-rows: auto !important;
  align-content: start !important;
  gap: 12px !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-side {
  position: sticky !important;
  top: 14px !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card {
  position: relative !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 15px !important;
  border-radius: var(--abk-checkout-radius) !important;
  border: 1px solid var(--abk-checkout-line) !important;
  background:
    radial-gradient(circle at 12% 10%, rgba(200,155,74,.075), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,250,241,.78)) !important;
  box-shadow: var(--abk-checkout-shadow-soft) !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card::after,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  right: 28px !important;
  width: 74px !important;
  height: 3px !important;
  border-radius: 0 0 999px 999px !important;
  background: linear-gradient(90deg, var(--abk-checkout-gold), var(--abk-checkout-gold-2)) !important;
  pointer-events: none !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card__head,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head {
  min-height: 42px !important;
  margin: 0 0 12px !important;
  padding: 0 0 11px !important;
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr) !important;
  gap: 10px !important;
  align-items: center !important;
  border-bottom: 1px solid rgba(58,36,24,.075) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card__head > .jood-svg-icon,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head > .jood-svg-icon {
  width: 40px !important;
  height: 40px !important;
  border-radius: 15px !important;
  padding: 10px !important;
  background: rgba(255,249,239,.92) !important;
  border: 1px solid rgba(200,155,74,.22) !important;
  color: var(--abk-checkout-gold-3) !important;
  box-shadow: 0 8px 18px rgba(58,36,24,.045) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card__head h3,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head h3 {
  margin: 4px 0 0 !important;
  color: var(--abk-checkout-brown-2) !important;
  font-size: clamp(18px, 1.45vw, 24px) !important;
  line-height: 1.18 !important;
  letter-spacing: -.035em !important;
  font-weight: 950 !important;
}

/* فورم مختصر ومنظم */
#jood-app.jood-app-shell-view-checkout .jood-form-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 9px !important;
}

#jood-app.jood-app-shell-view-checkout .jood-form-field,
#jood-app.jood-app-shell-view-checkout .form-row {
  margin: 0 !important;
  padding: 0 !important;
  min-width: 0 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-form-field label,
#jood-app.jood-app-shell-view-checkout .form-row label {
  margin: 0 0 5px !important;
  color: var(--abk-checkout-brown-2) !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-checkout :where(input[type="text"],input[type="tel"],input[type="email"],input[type="number"],input[type="password"],select,textarea),
#jood-app.jood-app-shell-view-checkout .select2-container .select2-selection--single {
  width: 100% !important;
  min-height: 44px !important;
  height: auto !important;
  padding: 9px 12px !important;
  border-radius: 15px !important;
  border: 1px solid rgba(58,36,24,.12) !important;
  background: #FFFFFF !important;
  color: var(--abk-checkout-brown-2) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.45 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.92), 0 6px 14px rgba(58,36,24,.035) !important;
  outline: none !important;
}

#jood-app.jood-app-shell-view-checkout textarea {
  min-height: 78px !important;
  resize: vertical !important;
}

#jood-app.jood-app-shell-view-checkout :where(input,select,textarea):focus,
#jood-app.jood-app-shell-view-checkout .select2-container--focus .select2-selection--single {
  border-color: rgba(200,155,74,.62) !important;
  box-shadow: 0 0 0 4px rgba(200,155,74,.12), inset 0 1px 0 rgba(255,255,255,.92) !important;
}

#jood-app.jood-app-shell-view-checkout ::placeholder {
  color: rgba(117,103,91,.58) !important;
}

/* الشحن والدفع: اختيار واضح بدون شيك طقم ملزق */
#jood-app.jood-app-shell-view-checkout .jood-shipping-methods,
#jood-app.jood-app-shell-view-checkout .jood-payment-grid,
#jood-app.jood-app-shell-view-checkout .jood-payment-methods,
#jood-app.jood-app-shell-view-checkout .wc_payment_methods,
#jood-app.jood-app-shell-view-checkout #payment ul.payment_methods {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method,
#jood-app.jood-app-shell-view-checkout .jood-payment-card,
#jood-app.jood-app-shell-view-checkout .wc_payment_method,
#jood-app.jood-app-shell-view-checkout #payment li.wc_payment_method {
  position: relative !important;
  min-height: 62px !important;
  margin: 0 !important;
  padding: 12px 14px 12px 58px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 3px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(58,36,24,.12) !important;
  background: rgba(255,255,255,.90) !important;
  color: var(--abk-checkout-brown-2) !important;
  box-shadow: 0 8px 20px rgba(58,36,24,.040) !important;
  cursor: pointer !important;
  overflow: hidden !important;
  transition: border-color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease !important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method:hover,
#jood-app.jood-app-shell-view-checkout .jood-payment-card:hover,
#jood-app.jood-app-shell-view-checkout .wc_payment_method:hover,
#jood-app.jood-app-shell-view-checkout #payment li.wc_payment_method:hover {
  border-color: rgba(200,155,74,.44) !important;
  background: linear-gradient(180deg, #FFFFFF, #FFFFFF) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 12px 28px rgba(58,36,24,.060) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method:has(input:checked),
#jood-app.jood-app-shell-view-checkout .jood-payment-card:has(input:checked),
#jood-app.jood-app-shell-view-checkout .wc_payment_method:has(input:checked),
#jood-app.jood-app-shell-view-checkout #payment li.wc_payment_method:has(input:checked) {
  border-color: rgba(200,155,74,.74) !important;
  background:
    radial-gradient(circle at 10% 20%, rgba(200,155,74,.13), transparent 35%),
    linear-gradient(180deg, #FFFFFF, #FFF5E5) !important;
  box-shadow: 0 14px 34px rgba(200,155,74,.12) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method input[type="radio"],
#jood-app.jood-app-shell-view-checkout .jood-payment-card input[type="radio"],
#jood-app.jood-app-shell-view-checkout .wc_payment_method input[type="radio"],
#jood-app.jood-app-shell-view-checkout #payment li.wc_payment_method input[type="radio"] {
  position: absolute !important;
  left: 16px !important;
  right: auto !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 30px !important;
  height: 30px !important;
  margin: 0 !important;
  padding: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  border-radius: 50% !important;
  border: 1px solid rgba(200,155,74,.42) !important;
  background: #FFFFFF !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 8px 18px rgba(58,36,24,.055) !important;
  cursor: pointer !important;
  z-index: 3 !important;
  opacity: 1 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method input[type="radio"]:checked,
#jood-app.jood-app-shell-view-checkout .jood-payment-card input[type="radio"]:checked,
#jood-app.jood-app-shell-view-checkout .wc_payment_method input[type="radio"]:checked,
#jood-app.jood-app-shell-view-checkout #payment li.wc_payment_method input[type="radio"]:checked {
  border-color: var(--abk-checkout-gold-3) !important;
  background: linear-gradient(135deg, var(--abk-checkout-gold), var(--abk-checkout-gold-3)) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method input[type="radio"]:checked::after,
#jood-app.jood-app-shell-view-checkout .jood-payment-card input[type="radio"]:checked::after,
#jood-app.jood-app-shell-view-checkout .wc_payment_method input[type="radio"]:checked::after,
#jood-app.jood-app-shell-view-checkout #payment li.wc_payment_method input[type="radio"]:checked::after {
  content: "" !important;
  position: absolute !important;
  width: 12px !important;
  height: 7px !important;
  top: 8px !important;
  right: 8px !important;
  border-right: 2px solid #FFFFFF !important;
  border-bottom: 2px solid #FFFFFF !important;
  transform: rotate(45deg) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method > span,
#jood-app.jood-app-shell-view-checkout .jood-payment-card > span,
#jood-app.jood-app-shell-view-checkout .wc_payment_method > label,
#jood-app.jood-app-shell-view-checkout #payment li.wc_payment_method > label {
  display: grid !important;
  gap: 2px !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--abk-checkout-brown-2) !important;
  font-size: 14px !important;
  font-weight: 950 !important;
  line-height: 1.45 !important;
  cursor: pointer !important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method strong,
#jood-app.jood-app-shell-view-checkout .jood-payment-card b,
#jood-app.jood-app-shell-view-checkout .wc_payment_method label {
  color: var(--abk-checkout-brown-2) !important;
  font-size: 14px !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method small,
#jood-app.jood-app-shell-view-checkout .jood-payment-card small,
#jood-app.jood-app-shell-view-checkout .payment_box,
#jood-app.jood-app-shell-view-checkout #payment div.payment_box {
  margin: 5px 0 0 !important;
  padding: 0 !important;
  background: transparent !important;
  color: var(--abk-checkout-muted) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1.6 !important;
}

#jood-app.jood-app-shell-view-checkout .payment_box::before,
#jood-app.jood-app-shell-view-checkout #payment div.payment_box::before {
  display: none !important;
  content: none !important;
}

/* الشروط: مربع واضح ومضغوط */
#jood-app.jood-app-shell-view-checkout .jood-checkout-terms,
#jood-app.jood-app-shell-view-checkout .woocommerce-terms-and-conditions-wrapper,
#jood-app.jood-app-shell-view-checkout .form-row.terms {
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  border: 0 !important;
  background: transparent !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-terms label,
#jood-app.jood-app-shell-view-checkout .woocommerce-form__label-for-checkbox,
#jood-app.jood-app-shell-view-checkout label.checkbox {
  position: relative !important;
  min-height: 54px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 13px 14px 13px 56px !important;
  display: flex !important;
  align-items: center !important;
  border-radius: 18px !important;
  border: 1px solid rgba(200,155,74,.26) !important;
  background: rgba(255,249,239,.82) !important;
  color: var(--abk-checkout-brown-2) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1.55 !important;
  box-shadow: 0 8px 20px rgba(58,36,24,.04) !important;
  cursor: pointer !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-terms input[type="checkbox"],
#jood-app.jood-app-shell-view-checkout .woocommerce-form__label-for-checkbox input[type="checkbox"],
#jood-app.jood-app-shell-view-checkout label.checkbox input[type="checkbox"] {
  position: absolute !important;
  left: 16px !important;
  right: auto !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 30px !important;
  height: 30px !important;
  margin: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  border-radius: 10px !important;
  border: 1px solid rgba(200,155,74,.42) !important;
  background: #FFFFFF !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 8px 18px rgba(58,36,24,.055) !important;
  opacity: 1 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-terms input[type="checkbox"]:checked,
#jood-app.jood-app-shell-view-checkout .woocommerce-form__label-for-checkbox input[type="checkbox"]:checked,
#jood-app.jood-app-shell-view-checkout label.checkbox input[type="checkbox"]:checked {
  border-color: var(--abk-checkout-gold-3) !important;
  background: linear-gradient(135deg, var(--abk-checkout-gold), var(--abk-checkout-gold-3)) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-terms input[type="checkbox"]:checked::after,
#jood-app.jood-app-shell-view-checkout .woocommerce-form__label-for-checkbox input[type="checkbox"]:checked::after,
#jood-app.jood-app-shell-view-checkout label.checkbox input[type="checkbox"]:checked::after {
  content: "" !important;
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  width: 12px !important;
  height: 7px !important;
  border-right: 2px solid #FFFFFF !important;
  border-bottom: 2px solid #FFFFFF !important;
  transform: rotate(45deg) !important;
}

/* ملخص الطلب */
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card {
  position: static !important;
  top: auto !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-items {
  display: grid !important;
  gap: 8px !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item {
  margin: 0 !important;
  padding: 9px !important;
  min-height: 82px !important;
  display: grid !important;
  grid-template-columns: 64px minmax(0, 1fr) auto !important;
  gap: 10px !important;
  align-items: center !important;
  border-radius: 18px !important;
  border: 1px solid rgba(58,36,24,.09) !important;
  background: rgba(255,255,255,.82) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__image,
#jood-app.jood-app-shell-view-checkout .jood-review-item__image {
  width: 64px !important;
  height: 64px !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  background: var(--abk-checkout-cream) !important;
  border: 1px solid rgba(200,155,74,.20) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__image img,
#jood-app.jood-app-shell-view-checkout .jood-review-item__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__title,
#jood-app.jood-app-shell-view-checkout .jood-review-item__title,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item strong {
  color: var(--abk-checkout-brown-2) !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__meta,
#jood-app.jood-app-shell-view-checkout .jood-review-item__meta,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item small {
  color: var(--abk-checkout-muted) !important;
  font-size: 11px !important;
  line-height: 1.45 !important;
  font-weight: 800 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__total,
#jood-app.jood-app-shell-view-checkout .jood-review-item__total {
  color: var(--abk-checkout-brown-2) !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  white-space: nowrap !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-totals,
#jood-app.jood-app-shell-view-checkout .jood-order-totals,
#jood-app.jood-app-shell-view-checkout .shop_table.woocommerce-checkout-review-order-table,
#jood-app.jood-app-shell-view-checkout .woocommerce-checkout-review-order-table {
  margin-top: 10px !important;
  padding: 10px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(200,155,74,.20) !important;
  background: rgba(255,249,239,.72) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.78) !important;
}

#jood-app.jood-app-shell-view-checkout :where(.jood-checkout-total-row,.jood-total-row,.cart-subtotal,.order-total,.shipping) {
  min-height: 32px !important;
  padding: 6px 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  border-bottom: 1px solid rgba(58,36,24,.07) !important;
  color: var(--abk-checkout-muted) !important;
  font-size: 13px !important;
  font-weight: 850 !important;
}

#jood-app.jood-app-shell-view-checkout :where(.jood-checkout-total-row:last-child,.jood-total-row:last-child,.order-total) {
  border-bottom: 0 !important;
  color: var(--abk-checkout-brown-2) !important;
  font-size: 15px !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-checkout .amount,
#jood-app.jood-app-shell-view-checkout .price {
  color: var(--abk-checkout-brown-2) !important;
  font-weight: 950 !important;
}

/* أزرار ذهبية بنص أبيض دائمًا */
#jood-app.jood-app-shell-view-checkout .jood-place-order-button,
#jood-app.jood-app-shell-view-checkout #place_order,
#jood-app.jood-app-shell-view-checkout .button.alt,
#jood-app.jood-app-shell-view-checkout .jood-btn.is-gold,
#jood-app.jood-app-shell-view-checkout .jood-btn-primary,
#jood-app.jood-app-shell-view-checkout button[type="submit"] {
  min-height: 50px !important;
  width: 100% !important;
  padding: 13px 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 18px !important;
  border: 1px solid rgba(214,181,109,.30) !important;
  background: linear-gradient(135deg, var(--abk-checkout-gold), var(--abk-checkout-gold-3)) !important;
  color: #FFFFFF !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  font-weight: 950 !important;
  text-align: center !important;
  box-shadow: 0 14px 32px rgba(200,155,74,.22) !important;
  text-shadow: 0 1px 0 rgba(58,36,24,.16) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-place-order-button:hover,
#jood-app.jood-app-shell-view-checkout #place_order:hover,
#jood-app.jood-app-shell-view-checkout .button.alt:hover,
#jood-app.jood-app-shell-view-checkout .jood-btn.is-gold:hover,
#jood-app.jood-app-shell-view-checkout .jood-btn-primary:hover,
#jood-app.jood-app-shell-view-checkout button[type="submit"]:hover {
  background: linear-gradient(135deg, var(--abk-checkout-gold-3), var(--abk-checkout-brown)) !important;
  color: #FFFFFF !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 18px 42px rgba(214,181,109,.30) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-place-order-button *,
#jood-app.jood-app-shell-view-checkout #place_order *,
#jood-app.jood-app-shell-view-checkout .button.alt *,
#jood-app.jood-app-shell-view-checkout .jood-btn.is-gold *,
#jood-app.jood-app-shell-view-checkout .jood-btn-primary *,
#jood-app.jood-app-shell-view-checkout button[type="submit"] * {
  color: #FFFFFF !important;
}

/* ملاحظات فارغة بشكل محترم */
#jood-app.jood-app-shell-view-checkout .jood-empty-note,
#jood-app.jood-app-shell-view-checkout .woocommerce-info,
#jood-app.jood-app-shell-view-checkout .woocommerce-message,
#jood-app.jood-app-shell-view-checkout .woocommerce-error {
  min-height: 54px !important;
  margin: 0 !important;
  padding: 12px 14px !important;
  display: flex !important;
  align-items: center !important;
  border-radius: 18px !important;
  border: 1px solid rgba(200,155,74,.24) !important;
  background: rgba(255,249,239,.82) !important;
  color: var(--abk-checkout-brown-2) !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
  font-weight: 900 !important;
}

/* توازن طول العمودين قدر الإمكان */
#jood-app.jood-app-shell-view-checkout .jood-checkout-main > .jood-checkout-card,
#jood-app.jood-app-shell-view-checkout .jood-checkout-side > .jood-checkout-review-card,
#jood-app.jood-app-shell-view-checkout .jood-checkout-side > .jood-checkout-card {
  height: auto !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-side > .jood-checkout-card:last-child,
#jood-app.jood-app-shell-view-checkout .jood-checkout-side > .jood-checkout-review-card:last-child {
  margin-bottom: 0 !important;
}

@media (min-width: 1025px) {
  #jood-app.jood-app-shell-view-checkout .jood-checkout-main,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-side {
    grid-auto-rows: max-content !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card:has(.jood-shipping-methods),
  #jood-app.jood-app-shell-view-checkout .jood-checkout-card:has(.jood-payment-grid),
  #jood-app.jood-app-shell-view-checkout .jood-checkout-card:has(.jood-payment-methods) {
    padding-bottom: 14px !important;
  }
}

@media (max-width: 1080px) {
  #jood-app.jood-app-shell-view-checkout .jood-checkout-layout {
    grid-template-columns: 1fr !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-side {
    position: static !important;
    top: auto !important;
    grid-template-columns: 1fr 1fr !important;
    align-items: start !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-side > *:first-child {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 782px) {
  #jood-app.jood-app-shell-view-checkout .jood-app-main,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-page {
    width: 100% !important;
    max-width: 100% !important;
    padding: 6px 8px calc(92px + env(safe-area-inset-bottom)) !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero {
    min-height: auto !important;
    padding: 16px !important;
    border-radius: 24px !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary {
    min-height: 72px !important;
    padding: 12px !important;
    border-radius: 18px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero h2 {
    font-size: clamp(26px, 7.5vw, 34px) !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-steps {
    gap: 6px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div {
    min-height: 34px !important;
    padding: 6px 7px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-steps strong {
    font-size: 10.5px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-steps span {
    width: 21px !important;
    height: 21px !important;
    font-size: 10px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-layout,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-main,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-side {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card {
    padding: 12px !important;
    border-radius: 20px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head {
    grid-template-columns: 38px minmax(0, 1fr) !important;
    gap: 8px !important;
    min-height: 38px !important;
    margin-bottom: 10px !important;
    padding-bottom: 9px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head > .jood-svg-icon,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head > .jood-svg-icon {
    width: 36px !important;
    height: 36px !important;
    border-radius: 13px !important;
    padding: 9px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-form-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-checkout :where(input[type="text"],input[type="tel"],input[type="email"],input[type="number"],input[type="password"],select,textarea),
  #jood-app.jood-app-shell-view-checkout .select2-container .select2-selection--single {
    min-height: 42px !important;
    border-radius: 14px !important;
    font-size: 12.5px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-shipping-method,
  #jood-app.jood-app-shell-view-checkout .jood-payment-card,
  #jood-app.jood-app-shell-view-checkout .wc_payment_method,
  #jood-app.jood-app-shell-view-checkout #payment li.wc_payment_method {
    min-height: 58px !important;
    padding: 11px 12px 11px 54px !important;
    border-radius: 17px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item {
    grid-template-columns: 56px minmax(0, 1fr) !important;
    min-height: 76px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__image,
  #jood-app.jood-app-shell-view-checkout .jood-review-item__image {
    width: 56px !important;
    height: 56px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__total,
  #jood-app.jood-app-shell-view-checkout .jood-review-item__total {
    grid-column: 2 !important;
    justify-self: start !important;
  }
}

@media (max-width: 430px) {
  #jood-app.jood-app-shell-view-checkout .jood-app-main,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-page {
    padding-inline: 7px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card {
    border-radius: 18px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero p {
    font-size: 12px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-steps {
    grid-template-columns: 1fr 1fr 1fr !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div {
    gap: 4px !important;
    padding-inline: 4px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-steps strong {
    font-size: 9.5px !important;
  }
}
/* =========================================================
   99.999 JOOD CHECKOUT FINAL BALANCED COMPACT PATCH
   Purpose: checkout page only — balanced 50/50 layout, compact royal cards,
   clean terms checkbox, clean shipping/payment controls, fixed buttons.
========================================================= */

body.jood-app-view-checkout {
  background:
    radial-gradient(circle at 50% -180px, rgba(200, 155, 74, .12), transparent 390px),
    linear-gradient(180deg, #FFFFFF 0%, #ffffff 48%, #FFFFFF 100%) !important;
}

#jood-app.jood-app-shell-view-checkout {
  --abk-final-ink: #2B170F;
  --abk-final-brown: #2B170F;
  --abk-final-brown-soft: #4D3120;
  --abk-final-gold: #B9854D;
  --abk-final-gold-deep: #B9854D;
  --abk-final-gold-light: #D7B179;
  --abk-final-cream: #FFFFFF;
  --abk-final-line: rgba(200, 155, 74, .28);
  --abk-final-line-soft: rgba(58, 36, 24, .09);
  --abk-final-shadow: 0 18px 48px rgba(58, 36, 24, .075);
  --abk-final-shadow-soft: 0 10px 28px rgba(58, 36, 24, .05);
  background: transparent !important;
}

#jood-app.jood-app-shell-view-checkout,
#jood-app.jood-app-shell-view-checkout * {
  box-sizing: border-box !important;
}

#jood-app.jood-app-shell-view-checkout .jood-app-page-head,
#jood-app.jood-app-shell-view-checkout .jood-checkout-trust-card,
#jood-app.jood-app-shell-view-checkout [class*="trust-card"],
#jood-app.jood-app-shell-view-checkout [class*="trust"]:not(.jood-checkout-terms) {
  display: none !important;
}

#jood-app.jood-app-shell-view-checkout .jood-app-main,
#jood-app.jood-app-shell-view-checkout .jood-checkout-page {
  width: min(1180px, calc(100vw - 42px)) !important;
  max-width: 1180px !important;
  margin-inline: auto !important;
  padding: 12px 0 110px !important;
  overflow: visible !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-page {
  display: grid !important;
  gap: 12px !important;
}

/* Compact white royal header */
#jood-app.jood-app-shell-view-checkout .jood-checkout-hero {
  width: 100% !important;
  min-height: 112px !important;
  margin: 0 !important;
  padding: 18px 22px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 300px !important;
  align-items: center !important;
  gap: 16px !important;
  border-radius: 28px !important;
  border: 1px solid var(--abk-final-line) !important;
  background:
    radial-gradient(circle at 12% 20%, rgba(200,155,74,.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,249,239,.88)) !important;
  box-shadow: var(--abk-final-shadow) !important;
  overflow: hidden !important;
  position: relative !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 8px !important;
  border: 1px solid rgba(200,155,74,.12) !important;
  border-radius: 22px !important;
  pointer-events: none !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero::after {
  content: none !important;
  display: none !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero__content,
#jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary {
  position: relative !important;
  z-index: 1 !important;
  min-width: 0 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero .jood-eyebrow {
  min-height: 24px !important;
  padding: 3px 10px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(200,155,74,.24) !important;
  background: rgba(255,249,239,.86) !important;
  color: var(--abk-final-gold-deep) !important;
  font-size: 11px !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero h2 {
  margin: 7px 0 4px !important;
  color: var(--abk-final-brown) !important;
  font-size: clamp(27px, 3.3vw, 44px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.035em !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero p {
  margin: 0 !important;
  max-width: 650px !important;
  color: rgba(10,22,37,.68) !important;
  font-size: 13px !important;
  line-height: 1.65 !important;
  font-weight: 750 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary {
  min-height: 84px !important;
  padding: 14px 16px !important;
  display: grid !important;
  align-content: center !important;
  gap: 3px !important;
  border-radius: 22px !important;
  border: 1px solid rgba(200,155,74,.24) !important;
  background: rgba(255,255,255,.78) !important;
  box-shadow: var(--abk-final-shadow-soft) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary strong {
  color: var(--abk-final-brown) !important;
  font-size: clamp(20px, 2vw, 27px) !important;
  line-height: 1.15 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary span,
#jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary small {
  color: rgba(10,22,37,.64) !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
  font-weight: 850 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-steps {
  margin-top: 12px !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div {
  min-height: 38px !important;
  padding: 6px 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(58,36,24,.10) !important;
  background: #FFFFFF !important;
  box-shadow: 0 8px 18px rgba(58,36,24,.04) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-steps strong {
  font-size: 12px !important;
  font-weight: 950 !important;
  color: var(--abk-final-brown) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-steps span {
  width: 22px !important;
  height: 22px !important;
  display: inline-grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  background: rgba(200,155,74,.18) !important;
  color: var(--abk-final-brown) !important;
  font-size: 11px !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div.is-active,
#jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div.is-done {
  background: linear-gradient(135deg, var(--abk-final-gold), var(--abk-final-gold-deep)) !important;
  color: #FFFFFF !important;
  border-color: rgba(214,181,109,.25) !important;
  box-shadow: 0 12px 26px rgba(200,155,74,.20) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div.is-active *,
#jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div.is-done * {
  color: #FFFFFF !important;
}

/* One compact balanced block: right column equals left column */
#jood-app.jood-app-shell-view-checkout .jood-checkout-form {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-layout {
  width: 100% !important;
  margin: 0 !important;
  padding: 14px !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  align-items: stretch !important;
  border-radius: 30px !important;
  border: 1px solid rgba(200,155,74,.22) !important;
  background:
    radial-gradient(circle at 15% 0%, rgba(200,155,74,.08), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,249,239,.58)) !important;
  box-shadow: var(--abk-final-shadow) !important;
  overflow: visible !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-main,
#jood-app.jood-app-shell-view-checkout .jood-checkout-side {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  align-content: start !important;
  align-items: stretch !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 14px !important;
  border-radius: 22px !important;
  border: 1px solid rgba(200,155,74,.22) !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(200,155,74,.085), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,250,244,.90)) !important;
  box-shadow: 0 14px 34px rgba(58,36,24,.055) !important;
  overflow: hidden !important;
  position: relative !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card::after,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  inset-inline-start: 28px !important;
  width: 72px !important;
  height: 3px !important;
  border-radius: 0 0 99px 99px !important;
  background: linear-gradient(90deg, var(--abk-final-gold), var(--abk-final-gold-light)) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card__head,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head {
  min-height: 42px !important;
  margin: 0 0 10px !important;
  padding: 0 0 9px !important;
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 10px !important;
  border-bottom: 1px solid rgba(58,36,24,.07) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card__head > .jood-svg-icon,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head > .jood-svg-icon {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  padding: 10px !important;
  border-radius: 15px !important;
  border: 1px solid rgba(200,155,74,.24) !important;
  background: rgba(255,249,239,.90) !important;
  color: var(--abk-final-gold-deep) !important;
  box-shadow: 0 8px 18px rgba(58,36,24,.04) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card__head h3,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head h3 {
  margin: 3px 0 0 !important;
  color: var(--abk-final-brown) !important;
  font-size: clamp(21px, 1.85vw, 28px) !important;
  line-height: 1.16 !important;
  font-weight: 950 !important;
  letter-spacing: -.025em !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card__head p,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head p {
  display: none !important;
}

#jood-app.jood-app-shell-view-checkout .jood-section-kicker {
  min-height: 22px !important;
  padding: 2px 8px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(200,155,74,.22) !important;
  background: rgba(255,249,239,.86) !important;
  color: var(--abk-final-gold-deep) !important;
  font-size: 10.5px !important;
  line-height: 1.3 !important;
  font-weight: 950 !important;
}

/* Form fields: tighter and cleaner */
#jood-app.jood-app-shell-view-checkout .jood-form-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

#jood-app.jood-app-shell-view-checkout .jood-form-field,
#jood-app.jood-app-shell-view-checkout .form-row {
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  gap: 4px !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#jood-app.jood-app-shell-view-checkout .jood-form-field label,
#jood-app.jood-app-shell-view-checkout .form-row label {
  margin: 0 !important;
  color: var(--abk-final-brown) !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-checkout :where(input[type="text"], input[type="tel"], input[type="email"], input[type="number"], input[type="password"], select, textarea),
#jood-app.jood-app-shell-view-checkout .select2-container .select2-selection--single {
  min-height: 44px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 13px !important;
  border-radius: 15px !important;
  border: 1px solid rgba(58,36,24,.11) !important;
  background: #FFFFFF !important;
  color: var(--abk-final-brown) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.90), 0 8px 18px rgba(58,36,24,.025) !important;
  outline: none !important;
}

#jood-app.jood-app-shell-view-checkout textarea {
  min-height: 74px !important;
  padding-top: 11px !important;
  resize: vertical !important;
}

#jood-app.jood-app-shell-view-checkout :where(input, select, textarea):focus,
#jood-app.jood-app-shell-view-checkout .select2-container--focus .select2-selection--single {
  border-color: rgba(200,155,74,.66) !important;
  box-shadow: 0 0 0 4px rgba(200,155,74,.13) !important;
}

/* Shipping + payment: no loose giant checkbox/radio */
#jood-app.jood-app-shell-view-checkout .jood-shipping-methods,
#jood-app.jood-app-shell-view-checkout .jood-payment-grid,
#jood-app.jood-app-shell-view-checkout .jood-payment-methods,
#jood-app.jood-app-shell-view-checkout #shipping_method,
#jood-app.jood-app-shell-view-checkout #payment ul.payment_methods {
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  list-style: none !important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method,
#jood-app.jood-app-shell-view-checkout .jood-payment-card,
#jood-app.jood-app-shell-view-checkout .wc_payment_method,
#jood-app.jood-app-shell-view-checkout #payment li.wc_payment_method {
  min-height: 56px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 10px 12px !important;
  display: grid !important;
  grid-template-columns: 22px minmax(0, 1fr) !important;
  gap: 10px !important;
  align-items: center !important;
  border-radius: 17px !important;
  border: 1px solid rgba(200,155,74,.25) !important;
  background: rgba(255,255,255,.88) !important;
  color: var(--abk-final-brown) !important;
  box-shadow: 0 8px 18px rgba(58,36,24,.035) !important;
  position: relative !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method:hover,
#jood-app.jood-app-shell-view-checkout .jood-payment-card:hover,
#jood-app.jood-app-shell-view-checkout .wc_payment_method:hover,
#jood-app.jood-app-shell-view-checkout #payment li.wc_payment_method:hover,
#jood-app.jood-app-shell-view-checkout .jood-shipping-method:has(input:checked),
#jood-app.jood-app-shell-view-checkout .jood-payment-card:has(input:checked),
#jood-app.jood-app-shell-view-checkout .wc_payment_method:has(input:checked),
#jood-app.jood-app-shell-view-checkout #payment li.wc_payment_method:has(input:checked) {
  border-color: rgba(200,155,74,.62) !important;
  background: linear-gradient(180deg, #FFFFFF, #FFF7EA) !important;
  box-shadow: 0 12px 26px rgba(200,155,74,.09) !important;
  transform: none !important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method input[type="radio"],
#jood-app.jood-app-shell-view-checkout .jood-payment-card input[type="radio"],
#jood-app.jood-app-shell-view-checkout .wc_payment_method input[type="radio"],
#jood-app.jood-app-shell-view-checkout #payment li.wc_payment_method input[type="radio"] {
  position: relative !important;
  inset: auto !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  transform: none !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  border-radius: 50% !important;
  border: 1px solid rgba(200,155,74,.52) !important;
  background: #FFFFFF !important;
  box-shadow: inset 0 0 0 4px #FFFFFF, 0 3px 9px rgba(58,36,24,.06) !important;
  opacity: 1 !important;
  z-index: 2 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method input[type="radio"]:checked,
#jood-app.jood-app-shell-view-checkout .jood-payment-card input[type="radio"]:checked,
#jood-app.jood-app-shell-view-checkout .wc_payment_method input[type="radio"]:checked,
#jood-app.jood-app-shell-view-checkout #payment li.wc_payment_method input[type="radio"]:checked {
  background: var(--abk-final-gold-deep) !important;
  border-color: var(--abk-final-gold-deep) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method input[type="radio"]::after,
#jood-app.jood-app-shell-view-checkout .jood-payment-card input[type="radio"]::after,
#jood-app.jood-app-shell-view-checkout .wc_payment_method input[type="radio"]::after,
#jood-app.jood-app-shell-view-checkout #payment li.wc_payment_method input[type="radio"]::after {
  content: none !important;
  display: none !important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method > span,
#jood-app.jood-app-shell-view-checkout .jood-payment-card > span,
#jood-app.jood-app-shell-view-checkout .wc_payment_method > label,
#jood-app.jood-app-shell-view-checkout #payment li.wc_payment_method > label {
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  gap: 2px !important;
  color: var(--abk-final-brown) !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  line-height: 1.45 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method small,
#jood-app.jood-app-shell-view-checkout .jood-payment-card small,
#jood-app.jood-app-shell-view-checkout .payment_box,
#jood-app.jood-app-shell-view-checkout #payment div.payment_box {
  margin: 2px 0 0 !important;
  padding: 0 !important;
  background: transparent !important;
  color: rgba(10,22,37,.62) !important;
  font-size: 11.5px !important;
  font-weight: 850 !important;
  line-height: 1.55 !important;
}

/* Terms checkbox fixed: no falling block */
#jood-app.jood-app-shell-view-checkout .jood-checkout-terms {
  width: 100% !important;
  min-height: 54px !important;
  margin: 0 !important;
  padding: 10px 12px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(200,155,74,.26) !important;
  background: rgba(255,249,239,.86) !important;
  color: var(--abk-final-brown) !important;
  box-shadow: 0 8px 20px rgba(58,36,24,.035) !important;
  overflow: hidden !important;
  cursor: pointer !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-terms input[type="checkbox"] {
  position: relative !important;
  inset: auto !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  border-radius: 7px !important;
  border: 1px solid rgba(200,155,74,.52) !important;
  background: #FFFFFF !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 3px 9px rgba(58,36,24,.06) !important;
  opacity: 1 !important;
  flex: 0 0 20px !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-terms input[type="checkbox"]:checked {
  background: linear-gradient(135deg, var(--abk-final-gold), var(--abk-final-gold-deep)) !important;
  border-color: var(--abk-final-gold-deep) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-terms input[type="checkbox"]:checked::after {
  content: "" !important;
  position: absolute !important;
  top: 4px !important;
  right: 5px !important;
  width: 8px !important;
  height: 5px !important;
  border-right: 2px solid #FFFFFF !important;
  border-bottom: 2px solid #FFFFFF !important;
  transform: rotate(45deg) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-terms span {
  min-width: 0 !important;
  display: block !important;
  color: var(--abk-final-brown) !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  font-weight: 900 !important;
}

/* Summary card, totals, and buttons */
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card {
  position: static !important;
  top: auto !important;
  align-self: start !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-items {
  max-height: 292px !important;
  overflow: auto !important;
  padding-inline-end: 3px !important;
  display: grid !important;
  gap: 8px !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item {
  min-height: 72px !important;
  margin: 0 !important;
  padding: 8px !important;
  display: grid !important;
  grid-template-columns: 56px minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 9px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(58,36,24,.08) !important;
  background: rgba(255,255,255,.72) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__image,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__image img {
  width: 56px !important;
  height: 56px !important;
  border-radius: 14px !important;
  object-fit: cover !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content {
  min-width: 0 !important;
  display: grid !important;
  gap: 2px !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content strong,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__title {
  color: var(--abk-final-brown) !important;
  font-size: 12.5px !important;
  line-height: 1.35 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content span,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__meta {
  color: rgba(10,22,37,.62) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__total {
  color: var(--abk-final-brown) !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  white-space: nowrap !important;
}

#jood-app.jood-app-shell-view-checkout :where(.cart_totals, .jood-cart-totals, .jood-summary-totals, .jood-order-totals, .jood-totals) {
  margin: 10px 0 0 !important;
  padding: 10px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(200,155,74,.20) !important;
  background: rgba(255,249,239,.58) !important;
}

#jood-app.jood-app-shell-view-checkout :where(.cart_totals *, .jood-cart-totals *, .jood-summary-totals *, .jood-order-totals *, .jood-totals *) {
  color: var(--abk-final-brown) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card > .jood-place-order-button,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card > a.jood-btn-ghost {
  width: 100% !important;
  min-height: 46px !important;
  margin: 8px 0 0 !important;
  padding: 11px 14px !important;
  position: relative !important;
  inset: auto !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  border-radius: 17px !important;
  text-align: center !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 950 !important;
  box-shadow: 0 12px 28px rgba(58,36,24,.06) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card > .jood-place-order-button {
  border: 1px solid rgba(214,181,109,.22) !important;
  background: linear-gradient(135deg, var(--abk-final-gold), var(--abk-final-gold-deep)) !important;
  color: #FFFFFF !important;
  text-shadow: 0 1px 0 rgba(58,36,24,.16) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card > .jood-place-order-button *,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card > .jood-place-order-button:hover * {
  color: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card > .jood-place-order-button:hover {
  color: #FFFFFF !important;
  background: linear-gradient(135deg, var(--abk-final-gold-deep), var(--abk-final-brown)) !important;
  transform: translateY(-1px) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card > a.jood-btn-ghost {
  border: 1px solid rgba(200,155,74,.34) !important;
  background: #FFFFFF !important;
  color: var(--abk-final-brown) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card > a.jood-btn-ghost:hover {
  background: #FFFFFF !important;
  color: var(--abk-final-gold-deep) !important;
  transform: translateY(-1px) !important;
}

/* Any generic gold button keeps white text */
#jood-app.jood-app-shell-view-checkout :where(.jood-btn-primary, .jood-btn.is-gold, .button.alt, button[type="submit"], #place_order) {
  color: #FFFFFF !important;
}

#jood-app.jood-app-shell-view-checkout :where(.jood-btn-primary, .jood-btn.is-gold, .button.alt, button[type="submit"], #place_order) * {
  color: #FFFFFF !important;
}

/* Tablet */
@media (max-width: 1100px) {
  #jood-app.jood-app-shell-view-checkout .jood-app-main,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-page {
    width: min(100%, calc(100vw - 22px)) !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero {
    grid-template-columns: 1fr !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-layout {
    grid-template-columns: 1fr !important;
  }
}

/* Mobile: app-like compact stack */
@media (max-width: 782px) {
  #jood-app.jood-app-shell-view-checkout .jood-app-main,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-page {
    width: 100% !important;
    max-width: 100% !important;
    padding: 6px 8px calc(92px + env(safe-area-inset-bottom)) !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-page {
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero {
    min-height: auto !important;
    padding: 13px !important;
    border-radius: 20px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero h2 {
    margin-top: 6px !important;
    font-size: clamp(24px, 7vw, 31px) !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero p {
    font-size: 12px !important;
    line-height: 1.55 !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-steps {
    gap: 5px !important;
    margin-top: 9px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div {
    min-height: 32px !important;
    padding: 5px 4px !important;
    gap: 4px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-steps strong {
    font-size: 9.5px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-steps span {
    width: 19px !important;
    height: 19px !important;
    font-size: 9px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-layout {
    padding: 8px !important;
    gap: 8px !important;
    border-radius: 20px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-main,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-side {
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card {
    padding: 10px !important;
    border-radius: 17px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head {
    grid-template-columns: 34px minmax(0, 1fr) !important;
    min-height: 34px !important;
    gap: 7px !important;
    margin-bottom: 8px !important;
    padding-bottom: 7px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head > .jood-svg-icon,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head > .jood-svg-icon {
    width: 33px !important;
    height: 33px !important;
    min-width: 33px !important;
    min-height: 33px !important;
    border-radius: 12px !important;
    padding: 8px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head h3,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head h3 {
    font-size: 21px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-form-grid {
    grid-template-columns: 1fr !important;
    gap: 7px !important;
  }

  #jood-app.jood-app-shell-view-checkout :where(input[type="text"], input[type="tel"], input[type="email"], input[type="number"], input[type="password"], select, textarea),
  #jood-app.jood-app-shell-view-checkout .select2-container .select2-selection--single {
    min-height: 40px !important;
    border-radius: 13px !important;
    font-size: 12.5px !important;
  }

  #jood-app.jood-app-shell-view-checkout textarea {
    min-height: 64px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-shipping-method,
  #jood-app.jood-app-shell-view-checkout .jood-payment-card,
  #jood-app.jood-app-shell-view-checkout .wc_payment_method,
  #jood-app.jood-app-shell-view-checkout #payment li.wc_payment_method,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-terms {
    min-height: 50px !important;
    border-radius: 15px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-items {
    max-height: 220px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item {
    grid-template-columns: 48px minmax(0, 1fr) !important;
    min-height: 64px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__image,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__image img {
    width: 48px !important;
    height: 48px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__total {
    grid-column: 2 !important;
    justify-self: start !important;
  }
}

@media (max-width: 430px) {
  #jood-app.jood-app-shell-view-checkout .jood-app-main,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-page {
    padding-inline: 6px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-layout,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card {
    border-radius: 16px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-steps strong {
    font-size: 8.8px !important;
  }
}


/* =========================================================
   JOOD 4.0.4 HARD CHECKOUT + ACCOUNT FIX
   هدفه منع أي قالب/إضافة من ضغط صفحة الدفع أو كسر أعمدة الحساب.
========================================================= */
body #jood-app.jood-app-shell-view-checkout,
body #jood-app.jood-app-shell-view-account,
body #jood-app.jood-app-shell-view-cart{
  display:block!important;
  width:100%!important;
  max-width:100%!important;
  overflow-x:hidden!important;
  direction:rtl!important;
}
body #jood-app.jood-app-shell-view-checkout .jood-app-main,
body #jood-app.jood-app-shell-view-account .jood-app-main,
body #jood-app.jood-app-shell-view-cart .jood-app-main{
  width:min(1180px,calc(100% - 28px))!important;
  max-width:1180px!important;
  margin-inline:auto!important;
  padding-inline:0!important;
  float:none!important;
  clear:both!important;
}
body #jood-app.jood-app-shell-view-checkout .jood-app-content,
body #jood-app.jood-app-shell-view-checkout .jood-app-content-checkout,
body #jood-app.jood-app-shell-view-checkout .jood-checkout-page,
body #jood-app.jood-app-shell-view-checkout .jood-checkout-form{
  display:block!important;
  width:100%!important;
  max-width:100%!important;
  min-width:0!important;
  margin-inline:auto!important;
  float:none!important;
  clear:both!important;
  box-sizing:border-box!important;
}
body #jood-app.jood-app-shell-view-checkout .jood-checkout-hero{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) minmax(220px,310px)!important;
  gap:16px!important;
  align-items:center!important;
  width:100%!important;
  margin:0 0 18px!important;
}
body #jood-app.jood-app-shell-view-checkout .jood-checkout-layout{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) minmax(300px,380px)!important;
  gap:18px!important;
  align-items:start!important;
  width:100%!important;
  max-width:100%!important;
  margin:0!important;
  float:none!important;
}
body #jood-app.jood-app-shell-view-checkout .jood-checkout-main,
body #jood-app.jood-app-shell-view-checkout .jood-checkout-side{
  width:auto!important;
  max-width:100%!important;
  min-width:0!important;
  float:none!important;
  clear:none!important;
  display:grid!important;
  gap:14px!important;
}
body #jood-app.jood-app-shell-view-checkout .jood-checkout-side{
  position:sticky!important;
  top:16px!important;
}
body #jood-app.jood-app-shell-view-checkout .jood-checkout-card,
body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card{
  width:100%!important;
  max-width:100%!important;
  min-width:0!important;
  padding:18px!important;
  box-sizing:border-box!important;
  overflow:hidden!important;
  float:none!important;
}
body #jood-app.jood-app-shell-view-checkout .jood-form-grid{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:12px!important;
  width:100%!important;
}
body #jood-app.jood-app-shell-view-checkout .jood-checkout-field,
body #jood-app.jood-app-shell-view-checkout .jood-form-field{
  display:grid!important;
  gap:7px!important;
  width:100%!important;
  max-width:100%!important;
  float:none!important;
}
body #jood-app.jood-app-shell-view-checkout .jood-checkout-field-wide,
body #jood-app.jood-app-shell-view-checkout .jood-form-field-wide{
  grid-column:1 / -1!important;
}
body #jood-app.jood-app-shell-view-checkout input:not([type=checkbox]):not([type=radio]),
body #jood-app.jood-app-shell-view-checkout textarea,
body #jood-app.jood-app-shell-view-checkout select{
  width:100%!important;
  max-width:100%!important;
  min-height:48px!important;
  box-sizing:border-box!important;
  display:block!important;
  float:none!important;
}
body #jood-app.jood-app-shell-view-checkout .woocommerce-error,
body #jood-app.jood-app-shell-view-checkout .woocommerce-info,
body #jood-app.jood-app-shell-view-checkout .woocommerce-message{
  width:100%!important;
  max-width:100%!important;
  clear:both!important;
  line-height:1.8!important;
  text-align:start!important;
}
body #jood-app.jood-app-shell-view-account .jood-account-page,
body #jood-app.jood-app-shell-view-account .jood-account-auth-page,
body #jood-app.jood-app-shell-view-account .jood-account-layout{
  width:100%!important;
  max-width:100%!important;
  min-width:0!important;
  float:none!important;
  clear:both!important;
  box-sizing:border-box!important;
}
body #jood-app.jood-app-shell-view-account .jood-account-auth-page{
  display:grid!important;
  grid-template-columns:minmax(0,.92fr) minmax(0,1.25fr)!important;
  gap:18px!important;
  align-items:start!important;
}
body #jood-app.jood-app-shell-view-account .jood-account-auth-hero,
body #jood-app.jood-app-shell-view-account .jood-account-auth-card,
body #jood-app.jood-app-shell-view-account .jood-account-panel,
body #jood-app.jood-app-shell-view-account .jood-account-summary-card{
  padding:18px!important;
  border-radius:24px!important;
  box-sizing:border-box!important;
}
@media (max-width:900px){
  body #jood-app.jood-app-shell-view-checkout .jood-app-main,
  body #jood-app.jood-app-shell-view-account .jood-app-main,
  body #jood-app.jood-app-shell-view-cart .jood-app-main{
    width:min(100%,calc(100% - 16px))!important;
    max-width:100%!important;
  }
  body #jood-app.jood-app-shell-view-checkout .jood-checkout-layout,
  body #jood-app.jood-app-shell-view-checkout .jood-checkout-hero,
  body #jood-app.jood-app-shell-view-account .jood-account-auth-page,
  body #jood-app.jood-app-shell-view-account .jood-account-layout{
    grid-template-columns:1fr!important;
    gap:12px!important;
  }
  body #jood-app.jood-app-shell-view-checkout .jood-checkout-side{
    position:static!important;
  }
}
@media (max-width:560px){
  body #jood-app.jood-app-shell-view-checkout .jood-checkout-page,
  body #jood-app.jood-app-shell-view-account .jood-account-page,
  body #jood-app.jood-app-shell-view-cart .jood-cart-page{
    padding-inline:6px!important;
  }
  body #jood-app.jood-app-shell-view-checkout .jood-form-grid{
    grid-template-columns:1fr!important;
  }
  body #jood-app.jood-app-shell-view-checkout .jood-checkout-card,
  body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card,
  body #jood-app.jood-app-shell-view-account .jood-account-auth-hero,
  body #jood-app.jood-app-shell-view-account .jood-account-auth-card,
  body #jood-app.jood-app-shell-view-account .jood-account-panel{
    padding:13px!important;
    border-radius:18px!important;
  }
}


/* =========================================================
   JOOD 4.0.5 REAL FIX
   السبب الحقيقي للخطأ الفادح كان استخدام دالة PHP اسمها required()
   وهي غير موكوخ الأثاثة في ووردبريس. تم إصلاحها في templates/parts.php.
   هذا الجزء فقط يمنع ضغط صفحة الدفع داخل أي عمود Elementor/Theme.
========================================================= */
body.jood-app-view-checkout #jood-app.jood-app-shell-view-checkout,
body #jood-app.jood-app-shell-view-checkout{
  width:100vw!important;
  max-width:100vw!important;
  min-width:100vw!important;
  margin-left:calc(50% - 50vw)!important;
  margin-right:calc(50% - 50vw)!important;
  position:relative!important;
  left:auto!important;
  right:auto!important;
  float:none!important;
  clear:both!important;
  overflow-x:hidden!important;
}
body.jood-app-view-checkout #jood-app.jood-app-shell-view-checkout .jood-app-main,
body #jood-app.jood-app-shell-view-checkout .jood-app-main,
body #jood-app.jood-app-shell-view-checkout .jood-checkout-page{
  width:min(1180px,calc(100vw - 32px))!important;
  max-width:1180px!important;
  margin-inline:auto!important;
  float:none!important;
  clear:both!important;
}
body #jood-app.jood-app-shell-view-checkout .jood-checkout-layout{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) minmax(330px,390px)!important;
  width:100%!important;
  max-width:100%!important;
  gap:18px!important;
}
body #jood-app.jood-app-shell-view-checkout .jood-checkout-form,
body #jood-app.jood-app-shell-view-checkout .jood-checkout-main,
body #jood-app.jood-app-shell-view-checkout .jood-checkout-side,
body #jood-app.jood-app-shell-view-checkout .jood-checkout-card,
body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card{
  min-width:0!important;
  box-sizing:border-box!important;
}
body #jood-app.jood-app-shell-view-checkout .jood-checkout-side{
  position:static!important;
}
body #jood-app.jood-app-shell-view-checkout .jood-form-grid{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:12px!important;
}
body #jood-app.jood-app-shell-view-checkout .jood-form-field-billing_address_1,
body #jood-app.jood-app-shell-view-checkout .jood-form-field-billing_address_2,
body #jood-app.jood-app-shell-view-checkout .jood-form-field-order_notes{
  grid-column:1 / -1!important;
}
@media (max-width:980px){
  body #jood-app.jood-app-shell-view-checkout .jood-checkout-layout,
  body #jood-app.jood-app-shell-view-checkout .jood-checkout-hero{
    grid-template-columns:1fr!important;
  }
  body #jood-app.jood-app-shell-view-checkout .jood-app-main,
  body #jood-app.jood-app-shell-view-checkout .jood-checkout-page{
    width:min(100vw - 16px,100%)!important;
  }
}
@media (max-width:560px){
  body #jood-app.jood-app-shell-view-checkout .jood-form-grid{
    grid-template-columns:1fr!important;
  }
  body #jood-app.jood-app-shell-view-checkout .jood-app-main,
  body #jood-app.jood-app-shell-view-checkout .jood-checkout-page{
    width:calc(100vw - 12px)!important;
  }
}


/* =========================================================
   JOOD v4.0.6 — FINAL BRAND IDENTITY + LAYOUT REBUILD
   الهوية: كحلي كوخ الأثاث #2B170F + ذهبي خفيف + خلفيات بيضاء
========================================================= */

#jood-app {
  --jood-ink: #2B170F !important;
  --jood-ink-2: #0f2034 !important;
  --jood-ink-3: #17283f !important;
  --jood-text: #2B170F !important;
  --jood-text-soft: #6B3E25 !important;
  --jood-muted: #7B6758 !important;
  --jood-muted-2: #8490a0 !important;
  --jood-gold: #D7B179 !important;
  --jood-gold-2: #F6E9D8 !important;
  --jood-gold-3: #f2e4c7 !important;
  --jood-gold-4: #fbf4e8 !important;
  --jood-cream: #ffffff !important;
  --jood-cream-2: #ffffff !important;
  --jood-cream-3: #FFFFFF !important;
  --jood-page-bg: #ffffff !important;
  --jood-page-bg-soft: #ffffff !important;
  --jood-page-bg-warm: #FFFFFF !important;
  --jood-surface: #ffffff !important;
  --jood-surface-soft: #FFFFFF !important;
  --jood-surface-muted: #FFF8EF !important;
  --jood-border: #eadcc7 !important;
  --jood-border-2: #dfcda9 !important;
  --jood-border-3: #d3b984 !important;
  --jood-btn-bg-primary: #2B170F !important;
  --jood-btn-bg-primary-hover: #101f32 !important;
  --jood-btn-text-primary: #ffffff !important;
  --jood-btn-bg-gold: #D7B179 !important;
  --jood-btn-bg-gold-hover: #F6E9D8 !important;
  --jood-btn-text-gold: #2B170F !important;
  --jood-shadow-xs: 0 5px 16px rgba(10,22,37,.045) !important;
  --jood-shadow-sm: 0 10px 28px rgba(10,22,37,.065) !important;
  --jood-shadow-md: 0 18px 42px rgba(10,22,37,.075) !important;
  --jood-shadow-lg: 0 26px 70px rgba(10,22,37,.095) !important;
  background: #ffffff !important;
  color: #2B170F !important;
}

#jood-app.jood-app-shell,
#jood-app :where(.jood-store-app,.jood-store-stage,.jood-category-page,.jood-product-page,.jood-cart-page,.jood-checkout-page,.jood-account-page,.jood-invoice-page,.jood-thankyou-page) {
  background: #ffffff !important;
  color: #2B170F !important;
}

#jood-app .jood-app-main {
  width: min(1240px, calc(100% - 32px)) !important;
  max-width: 1240px !important;
}

#jood-app.jood-app-shell-view-store .jood-app-main,
#jood-app.jood-app-shell-view-category .jood-app-main {
  width: min(1320px, calc(100% - 32px)) !important;
  max-width: 1320px !important;
}

#jood-app :where(.jood-eyebrow,.jood-section-kicker,.jood-store-kicker,.jood-app-eyebrow) {
  background: #FFFFFF !important;
  color: #6B3E25 !important;
  border: 1px solid rgba(217,191,140,.55) !important;
  box-shadow: none !important;
}

#jood-app :where(h1,h2,h3,h4,.jood-product-title,strong) {
  color: #2B170F;
}

#jood-app .jood-btn-primary,
#jood-app .jood-btn-dark,
#jood-app button.jood-btn-primary,
#jood-app a.jood-btn-primary,
#jood-app .button.alt,
#jood-app button[type="submit"]:not(.jood-btn-ghost):not(.jood-btn-gold) {
  background: linear-gradient(135deg,#2B170F,#2B170F) !important;
  color: #ffffff !important;
  border-color: rgba(10,22,37,.96) !important;
  box-shadow: 0 14px 34px rgba(10,22,37,.16) !important;
}

#jood-app .jood-btn-primary:hover,
#jood-app .jood-btn-dark:hover,
#jood-app button[type="submit"]:not(.jood-btn-ghost):not(.jood-btn-gold):hover {
  background: linear-gradient(135deg,#2B170F,#2B170F) !important;
  box-shadow: 0 18px 42px rgba(10,22,37,.19) !important;
}

#jood-app .jood-btn-gold {
  background: linear-gradient(135deg,#D7B179,#f0dfbb) !important;
  color: #2B170F !important;
  border-color: rgba(217,191,140,.85) !important;
}

/* ===== Store filters: clean premium row ===== */
#jood-app.jood-app-shell-view-store .jood-store-filter-shell,
#jood-app.jood-app-shell-view-category .jood-store-filter-shell {
  width: 100% !important;
  margin: 0 0 18px !important;
  padding: 16px !important;
  display: block !important;
  border: 1px solid rgba(217,191,140,.42) !important;
  border-radius: 26px !important;
  background: #ffffff !important;
  box-shadow: 0 16px 44px rgba(10,22,37,.06) !important;
  overflow: visible !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-shell > .jood-svg-icon,
#jood-app.jood-app-shell-view-category .jood-store-filter-shell > .jood-svg-icon {
  position: absolute !important;
  inset-inline-start: 18px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 48px !important;
  height: 48px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 18px !important;
  background: #2B170F !important;
  color: #D7B179 !important;
  box-shadow: 0 14px 30px rgba(10,22,37,.14) !important;
  z-index: 2 !important;
}

#jood-app.jood-app-shell-view-store form.jood-store-filters,
#jood-app.jood-app-shell-view-category form.jood-store-filters,
#jood-app.jood-app-shell-view-store .jood-store-filters,
#jood-app.jood-app-shell-view-category .jood-store-filters {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(260px,1.35fr) minmax(0,1.4fr) auto auto !important;
  align-items: end !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 0 62px 0 0 !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search,
#jood-app.jood-app-shell-view-category .jood-store-filter-search {
  width: 100% !important;
  height: 58px !important;
  min-width: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 0 15px !important;
  border: 1px solid rgba(217,191,140,.55) !important;
  border-radius: 20px !important;
  background: #ffffff !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9) !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search input,
#jood-app.jood-app-shell-view-category .jood-store-filter-search input {
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  background: transparent !important;
  color: #2B170F !important;
  box-shadow: none !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search input::placeholder,
#jood-app.jood-app-shell-view-category .jood-store-filter-search input::placeholder {
  color: rgba(10,22,37,.42) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects {
  width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3,minmax(120px,1fr)) !important;
  gap: 10px !important;
  align-items: end !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects label,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects label {
  width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  gap: 5px !important;
  margin: 0 !important;
  position: relative !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects label::after,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects label::after {
  content: none !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects label > span,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects label > span {
  display: block !important;
  margin: 0 !important;
  color: #6B3E25 !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects select,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects select {
  width: 100% !important;
  height: 52px !important;
  min-height: 52px !important;
  padding: 0 16px !important;
  border: 1px solid rgba(217,191,140,.55) !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  color: #2B170F !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  box-shadow: none !important;
  appearance: auto !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects button,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects button,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects .jood-btn,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects .jood-btn,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects a,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects a {
  height: 52px !important;
  min-height: 52px !important;
  min-width: 112px !important;
  padding: 0 22px !important;
  border-radius: 18px !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}

/* ===== Checkout full rebuild ===== */
#jood-app.jood-app-shell-view-checkout .jood-checkout-page,
#jood-app .jood-checkout-page {
  width: 100% !important;
  max-width: 1180px !important;
  margin-inline: auto !important;
  color: #2B170F !important;
}

#jood-app .jood-checkout-hero {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(0,1fr) 260px !important;
  gap: 14px !important;
  align-items: stretch !important;
  margin: 0 0 18px !important;
  padding: 18px !important;
  border: 1px solid rgba(217,191,140,.40) !important;
  border-radius: 28px !important;
  background: #ffffff !important;
  box-shadow: 0 18px 46px rgba(10,22,37,.06) !important;
}

#jood-app .jood-checkout-hero__content h2,
#jood-app .jood-checkout-hero h2 {
  margin: 5px 0 6px !important;
  color: #2B170F !important;
  font-size: clamp(26px,3vw,40px) !important;
  line-height: 1.15 !important;
  font-weight: 950 !important;
}

#jood-app .jood-checkout-steps {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 12px !important;
}

#jood-app .jood-checkout-steps > div {
  min-height: 36px !important;
  padding: 7px 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  border: 1px solid rgba(217,191,140,.38) !important;
  border-radius: 999px !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
}

#jood-app .jood-checkout-steps > div span {
  width: 23px !important;
  height: 23px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  background: #2B170F !important;
  color: #D7B179 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

#jood-app .jood-checkout-hero__summary {
  min-height: 110px !important;
  padding: 16px !important;
  display: grid !important;
  align-content: center !important;
  justify-items: start !important;
  gap: 4px !important;
  border: 1px solid rgba(217,191,140,.42) !important;
  border-radius: 22px !important;
  background: #FFFFFF !important;
  box-shadow: none !important;
}

#jood-app .jood-checkout-form {
  width: 100% !important;
  display: block !important;
}

#jood-app .jood-checkout-layout {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(0,1fr) minmax(330px,390px) !important;
  gap: 18px !important;
  align-items: start !important;
  margin: 0 !important;
}

#jood-app .jood-checkout-main,
#jood-app .jood-checkout-side {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  gap: 14px !important;
}

#jood-app .jood-checkout-side {
  position: sticky !important;
  top: 16px !important;
  align-self: start !important;
}

#jood-app .jood-checkout-card,
#jood-app .jood-checkout-review-card,
#jood-app .jood-cart-side-card,
#jood-app .jood-cart-totals-card {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  padding: 18px !important;
  border: 1px solid rgba(217,191,140,.42) !important;
  border-radius: 26px !important;
  background: #ffffff !important;
  box-shadow: 0 16px 42px rgba(10,22,37,.055) !important;
  overflow: hidden !important;
}

#jood-app .jood-checkout-card__head,
#jood-app .jood-checkout-review-card__head,
#jood-app .jood-cart-side-card__head {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 0 14px !important;
}

#jood-app .jood-checkout-card__head > .jood-svg-icon,
#jood-app .jood-checkout-review-card__head > .jood-svg-icon,
#jood-app .jood-cart-side-card__head > .jood-svg-icon,
#jood-app .jood-account-card-head > .jood-svg-icon,
#jood-app .jood-account-panel__head > .jood-svg-icon {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 16px !important;
  background: #FFFFFF !important;
  color: #2B170F !important;
  border: 1px solid rgba(217,191,140,.52) !important;
}

#jood-app .jood-checkout-card__head h3,
#jood-app .jood-checkout-review-card__head h3,
#jood-app .jood-cart-side-card__head h3,
#jood-app .jood-account-card-head h3,
#jood-app .jood-account-panel__head h3 {
  color: #2B170F !important;
  font-size: 22px !important;
  line-height: 1.2 !important;
  font-weight: 950 !important;
}

#jood-app .jood-form-grid,
#jood-app .woocommerce-billing-fields__field-wrapper,
#jood-app .woocommerce-shipping-fields__field-wrapper {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  gap: 12px !important;
}

#jood-app .jood-form-field,
#jood-app .form-row,
#jood-app .woocommerce form .form-row {
  width: 100% !important;
  float: none !important;
  clear: none !important;
  display: grid !important;
  gap: 6px !important;
  margin: 0 !important;
  padding: 0 !important;
}

#jood-app .jood-form-field-wide,
#jood-app .form-row-wide,
#jood-app #order_comments_field {
  grid-column: 1 / -1 !important;
}

#jood-app .jood-form-field > span,
#jood-app .form-row label,
#jood-app label {
  color: #2B170F !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
}

#jood-app :where(input[type="text"],input[type="email"],input[type="tel"],input[type="password"],input[type="number"],textarea,select),
#jood-app .select2-container .select2-selection--single {
  width: 100% !important;
  min-height: 54px !important;
  padding: 0 15px !important;
  border: 1px solid rgba(217,191,140,.46) !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  color: #2B170F !important;
  box-shadow: 0 5px 14px rgba(10,22,37,.025) !important;
  font-size: 14px !important;
  font-weight: 750 !important;
}

#jood-app textarea {
  min-height: 110px !important;
  padding-top: 13px !important;
}

#jood-app :where(input,textarea,select):focus {
  border-color: rgba(217,191,140,.92) !important;
  box-shadow: 0 0 0 4px rgba(217,191,140,.18) !important;
  outline: 0 !important;
}

#jood-app .jood-checkout-review-items,
#jood-app .jood-cart-items-list {
  display: grid !important;
  gap: 10px !important;
  margin-bottom: 12px !important;
}

#jood-app .jood-checkout-review-item {
  width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns: 58px minmax(0,1fr) auto !important;
  gap: 10px !important;
  align-items: center !important;
  padding: 10px !important;
  border: 1px solid rgba(217,191,140,.36) !important;
  border-radius: 18px !important;
  background: #FFFFFF !important;
}

#jood-app .jood-checkout-review-item__image {
  width: 58px !important;
  height: 58px !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  background: #fff !important;
  border: 1px solid rgba(217,191,140,.28) !important;
}

#jood-app .jood-checkout-review-item__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

#jood-app .jood-checkout-review-item__content {
  min-width: 0 !important;
  display: grid !important;
  gap: 3px !important;
}

#jood-app .jood-checkout-review-item__content strong {
  color: #2B170F !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 900 !important;
}

#jood-app .jood-checkout-review-item__content small,
#jood-app .jood-checkout-review-item__content em {
  color: #7B6758 !important;
  font-size: 12px !important;
  font-style: normal !important;
  font-weight: 700 !important;
}

#jood-app .jood-checkout-review-item__total {
  color: #2B170F !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  white-space: nowrap !important;
}

#jood-app .jood-cart-totals {
  display: grid !important;
  gap: 8px !important;
  padding: 0 !important;
}

#jood-app .jood-cart-totals > div {
  min-height: 42px !important;
  padding: 9px 11px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  border: 1px solid rgba(217,191,140,.30) !important;
  border-radius: 15px !important;
  background: #FFFFFF !important;
}

#jood-app .jood-cart-totals > div span {
  color: #7B6758 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

#jood-app .jood-cart-totals > div strong {
  color: #2B170F !important;
  font-size: 14px !important;
  font-weight: 950 !important;
}

#jood-app .jood-cart-totals > div.is-total {
  min-height: 52px !important;
  border-color: rgba(217,191,140,.58) !important;
  background: linear-gradient(135deg,#FFFFFF,#FFFFFF) !important;
}

#jood-app .jood-cart-totals > div.is-total strong {
  font-size: 18px !important;
}

#jood-app .jood-place-order-button,
#jood-app .jood-checkout-review-card > .jood-btn,
#jood-app .jood-cart-totals-card > .jood-btn {
  width: 100% !important;
  min-height: 54px !important;
  margin-top: 10px !important;
  border-radius: 18px !important;
}

#jood-app .jood-checkout-terms,
#jood-app .jood-checkline {
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
  padding: 12px 14px !important;
  border: 1px solid rgba(217,191,140,.35) !important;
  border-radius: 18px !important;
  background: #FFFFFF !important;
}

#jood-app .jood-checkout-terms input,
#jood-app .jood-checkline input {
  width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  padding: 0 !important;
  flex: 0 0 auto !important;
}

/* ===== Account page rebuild ===== */
#jood-app.jood-app-shell-view-account .jood-account-page,
#jood-app .jood-account-page {
  width: 100% !important;
  max-width: 1180px !important;
  margin-inline: auto !important;
  color: #2B170F !important;
}

#jood-app .jood-account-auth-page {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(260px,.85fr) minmax(0,1.35fr) !important;
  gap: 18px !important;
  align-items: start !important;
  margin: 0 !important;
}

#jood-app .jood-account-auth-hero,
#jood-app .jood-account-auth-card,
#jood-app .jood-account-panel,
#jood-app .jood-account-hero,
#jood-app .jood-account-loyalty-card,
#jood-app .jood-account-summary-card {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  padding: 20px !important;
  border: 1px solid rgba(217,191,140,.42) !important;
  border-radius: 26px !important;
  background: #ffffff !important;
  box-shadow: 0 16px 42px rgba(10,22,37,.055) !important;
}

#jood-app .jood-account-auth-hero {
  min-height: 100% !important;
  position: sticky !important;
  top: 16px !important;
  background: linear-gradient(180deg,#ffffff 0%,#FFFFFF 100%) !important;
}

#jood-app .jood-account-auth-hero h2,
#jood-app .jood-account-hero h2,
#jood-app .jood-account-page h2 {
  color: #2B170F !important;
  font-size: clamp(24px,2.7vw,38px) !important;
  line-height: 1.18 !important;
  font-weight: 950 !important;
  margin: 8px 0 !important;
}

#jood-app .jood-account-auth-hero p,
#jood-app .jood-account-page p {
  color: #7B6758 !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
  font-weight: 700 !important;
}

#jood-app .jood-account-auth-points {
  display: grid !important;
  gap: 10px !important;
  margin-top: 18px !important;
}

#jood-app .jood-account-auth-points > div {
  min-height: 46px !important;
  padding: 10px 12px !important;
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
  border: 1px solid rgba(217,191,140,.35) !important;
  border-radius: 16px !important;
  background: #ffffff !important;
}

#jood-app .jood-account-auth-grid {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr) !important;
  gap: 16px !important;
  align-items: start !important;
}

#jood-app .jood-account-card-head,
#jood-app .jood-account-panel__head {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 0 14px !important;
}

#jood-app .jood-account-form {
  width: 100% !important;
  display: grid !important;
  gap: 12px !important;
}

#jood-app .jood-account-layout {
  display: grid !important;
  grid-template-columns: minmax(0,1fr) minmax(300px,360px) !important;
  gap: 18px !important;
  align-items: start !important;
}

#jood-app .jood-account-main,
#jood-app .jood-account-side {
  width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  gap: 16px !important;
}

#jood-app .jood-account-side {
  position: sticky !important;
  top: 16px !important;
}

#jood-app .jood-account-summary-grid {
  display: grid !important;
  grid-template-columns: repeat(3,minmax(0,1fr)) !important;
  gap: 14px !important;
  margin: 18px 0 !important;
}

/* ===== Product/card/order general navy cleanup ===== */
#jood-app :where(.jood-product-card,.jood-cart-item,.jood-product-layout,.jood-store-topbar,.jood-category-hero) {
  border-color: rgba(217,191,140,.38) !important;
  background: #ffffff !important;
  color: #2B170F !important;
}

#jood-app :where(.jood-product-price,.price,.amount,.woocommerce-Price-amount) {
  color: #2B170F !important;
  font-weight: 950 !important;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  #jood-app.jood-app-shell-view-store form.jood-store-filters,
  #jood-app.jood-app-shell-view-category form.jood-store-filters,
  #jood-app.jood-app-shell-view-store .jood-store-filters,
  #jood-app.jood-app-shell-view-category .jood-store-filters {
    grid-template-columns: 1fr !important;
    padding: 0 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-shell > .jood-svg-icon,
  #jood-app.jood-app-shell-view-category .jood-store-filter-shell > .jood-svg-icon {
    position: static !important;
    transform: none !important;
    margin: 0 0 10px !important;
  }

  #jood-app .jood-checkout-layout,
  #jood-app .jood-account-auth-page,
  #jood-app .jood-account-layout {
    grid-template-columns: 1fr !important;
  }

  #jood-app .jood-checkout-side,
  #jood-app .jood-account-side,
  #jood-app .jood-account-auth-hero {
    position: static !important;
  }
}

@media (max-width: 782px) {
  #jood-app .jood-app-main,
  #jood-app.jood-app-shell-view-store .jood-app-main,
  #jood-app.jood-app-shell-view-category .jood-app-main,
  #jood-app.jood-app-shell-view-checkout .jood-app-main,
  #jood-app.jood-app-shell-view-account .jood-app-main {
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 10px !important;
  }

  #jood-app .jood-checkout-hero,
  #jood-app .jood-account-auth-page,
  #jood-app .jood-account-auth-grid,
  #jood-app .jood-account-summary-grid {
    grid-template-columns: 1fr !important;
  }

  #jood-app .jood-checkout-hero,
  #jood-app .jood-checkout-card,
  #jood-app .jood-checkout-review-card,
  #jood-app .jood-account-auth-hero,
  #jood-app .jood-account-auth-card,
  #jood-app .jood-account-panel,
  #jood-app .jood-cart-side-card,
  #jood-app.jood-app-shell-view-store .jood-store-filter-shell,
  #jood-app.jood-app-shell-view-category .jood-store-filter-shell {
    padding: 13px !important;
    border-radius: 20px !important;
  }

  #jood-app .jood-form-grid,
  #jood-app .woocommerce-billing-fields__field-wrapper,
  #jood-app .woocommerce-shipping-fields__field-wrapper,
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  #jood-app .jood-checkout-card__head h3,
  #jood-app .jood-checkout-review-card__head h3,
  #jood-app .jood-cart-side-card__head h3,
  #jood-app .jood-account-card-head h3,
  #jood-app .jood-account-panel__head h3 {
    font-size: 19px !important;
  }

  #jood-app :where(input[type="text"],input[type="email"],input[type="tel"],input[type="password"],input[type="number"],textarea,select) {
    min-height: 50px !important;
    border-radius: 16px !important;
    font-size: 13px !important;
  }

  #jood-app .jood-checkout-review-item {
    grid-template-columns: 50px minmax(0,1fr) !important;
  }

  #jood-app .jood-checkout-review-item__total {
    grid-column: 2 !important;
    justify-self: start !important;
  }

  #jood-app .jood-checkout-review-item__image {
    width: 50px !important;
    height: 50px !important;
  }

  #jood-app .jood-checkout-hero__summary {
    min-height: 88px !important;
  }
}

@media (max-width: 480px) {
  #jood-app .jood-app-main {
    padding-inline: 8px !important;
  }

  #jood-app .jood-checkout-hero__content h2,
  #jood-app .jood-account-auth-hero h2,
  #jood-app .jood-account-page h2 {
    font-size: 23px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-shell,
  #jood-app.jood-app-shell-view-category .jood-store-filter-shell {
    padding: 10px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-search,
  #jood-app.jood-app-shell-view-category .jood-store-filter-search,
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects select,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects select,
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects button,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects button,
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects .jood-btn,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects .jood-btn {
    height: 48px !important;
    min-height: 48px !important;
    border-radius: 15px !important;
  }

  #jood-app .jood-cart-totals > div {
    min-height: 38px !important;
    padding: 8px 10px !important;
  }
}

/* =========================================================
   JOOD PREMIUM RESCUE V4.0.7
   Identity: deep navy #2B170F, light gold, white app feel.
========================================================= */
#jood-app{
  --jood-ink:#2B170F !important;
  --jood-ink-2:#2B170F !important;
  --jood-ink-3:#16263a !important;
  --jood-text:#2B170F !important;
  --jood-text-soft:#25364b !important;
  --jood-gold:#D7B179 !important;
  --jood-gold-2:#F6E9D8 !important;
  --jood-gold-3:#f2e4cf !important;
  --jood-gold-4:#FFFFFF !important;
  --jood-cream:#ffffff !important;
  --jood-cream-2:#FFFFFF !important;
  --jood-page-bg:#ffffff !important;
  --jood-surface:#ffffff !important;
  --jood-surface-soft:#FFFFFF !important;
  --jood-border:#eadfce !important;
  --jood-border-2:#deccaa !important;
  --jood-btn-bg-primary:#2B170F !important;
  --jood-btn-bg-primary-hover:#2B170F !important;
  --jood-shadow-md:0 18px 45px rgba(10,22,37,.08) !important;
  --jood-shadow-lg:0 28px 70px rgba(10,22,37,.12) !important;
  background:#fff !important;
}
#jood-app .jood-btn-primary,
#jood-app .jood-btn-dark,
#jood-app button[type="submit"].jood-btn-primary,
#jood-app .jood-place-order-button{
  background:linear-gradient(135deg,#2B170F,#2B170F) !important;
  color:#fff !important;
  border-color:rgba(10,22,37,.96) !important;
  box-shadow:0 14px 32px rgba(10,22,37,.18) !important;
}
#jood-app .jood-btn-primary:hover,
#jood-app .jood-btn-dark:hover,
#jood-app .jood-place-order-button:hover{
  background:linear-gradient(135deg,#101f33,#2B170F) !important;
  box-shadow:0 18px 42px rgba(10,22,37,.22) !important;
}
#jood-app .jood-btn-ghost,
#jood-app a.jood-btn-ghost{
  background:#fff !important;
  color:#2B170F !important;
  border:1px solid rgba(224,198,132,.58) !important;
  box-shadow:0 8px 22px rgba(10,22,37,.045) !important;
}
#jood-app .jood-section-kicker,
#jood-app .jood-eyebrow,
#jood-app .jood-app-eyebrow{
  background:#FFFFFF !important;
  color:#B9854D !important;
  border:1px solid rgba(224,198,132,.48) !important;
}
#jood-app :where(input,select,textarea){
  background:#fff !important;
  color:#2B170F !important;
  border:1px solid rgba(223,207,186,.92) !important;
  border-radius:18px !important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9),0 7px 18px rgba(10,22,37,.035) !important;
  min-height:54px !important;
}
#jood-app :where(input,select,textarea):focus{
  border-color:rgba(224,198,132,.95) !important;
  box-shadow:0 0 0 4px rgba(224,198,132,.18),0 12px 24px rgba(10,22,37,.055) !important;
  outline:0 !important;
}

/* Account guest flow: one focused card only */
#jood-app .jood-account-auth-page-v2{
  width:min(1120px,100%);
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(320px,1.02fr) minmax(360px,.98fr);
  gap:18px;
  align-items:stretch;
}
#jood-app .jood-account-auth-hero-v2,
#jood-app .jood-account-single-auth-card,
#jood-app .jood-account-verify-card{
  border:1px solid rgba(224,198,132,.50) !important;
  border-radius:30px !important;
  background:linear-gradient(180deg,#fff,#FFFFFF) !important;
  box-shadow:0 24px 60px rgba(10,22,37,.08) !important;
}
#jood-app .jood-account-auth-hero-v2{
  padding:30px !important;
  display:flex !important;
  flex-direction:column;
  justify-content:center;
  min-height:390px;
}
#jood-app .jood-account-auth-hero-v2 h2{
  color:#2B170F !important;
  font-size:clamp(30px,3.1vw,46px) !important;
  line-height:1.16 !important;
  font-weight:950 !important;
  letter-spacing:-.7px;
  margin:12px 0 10px !important;
}
#jood-app .jood-account-auth-hero-v2 p{
  color:#506072 !important;
  font-size:15px !important;
  line-height:1.9 !important;
  max-width:440px;
}
#jood-app .jood-account-auth-points{
  display:grid !important;
  grid-template-columns:1fr !important;
  gap:10px !important;
  margin-top:22px !important;
}
#jood-app .jood-account-auth-points > div{
  min-height:52px;
  padding:12px 14px !important;
  display:flex !important;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  border:1px solid rgba(224,198,132,.42) !important;
  border-radius:18px !important;
  background:#fff !important;
  color:#2B170F !important;
  font-weight:900 !important;
}
#jood-app .jood-account-auth-points svg{color:#2B170F!important;}
#jood-app .jood-account-single-auth-card,
#jood-app .jood-account-verify-card{
  padding:24px !important;
  min-height:390px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
#jood-app .jood-account-card-head{
  align-items:flex-start !important;
  gap:14px !important;
  margin-bottom:18px !important;
}
#jood-app .jood-account-card-head > .jood-svg-icon{
  width:54px!important;
  height:54px!important;
  min-width:54px!important;
  border-radius:20px!important;
  background:#FFFFFF!important;
  color:#2B170F!important;
  border:1px solid rgba(224,198,132,.5)!important;
  display:grid!important;
  place-items:center!important;
}
#jood-app .jood-account-card-head h3{
  color:#2B170F!important;
  font-size:clamp(24px,2.25vw,34px)!important;
  line-height:1.18!important;
  font-weight:950!important;
  margin-top:7px!important;
}
#jood-app .jood-account-card-head p{
  color:#7B6758!important;
  font-size:13px!important;
  line-height:1.8!important;
  margin-top:5px!important;
}
#jood-app .jood-account-form{display:grid!important;gap:12px!important;}
#jood-app .jood-form-grid{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:12px!important;}
#jood-app .jood-form-field{display:grid!important;gap:7px!important;min-width:0!important;}
#jood-app .jood-form-field span{color:#2B170F!important;font-size:12px!important;font-weight:900!important;line-height:1.35!important;}
#jood-app .jood-form-field em{color:#b84034!important;font-style:normal!important;}
#jood-app .jood-form-field-wide{grid-column:1 / -1!important;}
#jood-app .jood-code-field input{
  text-align:center!important;
  direction:ltr!important;
  letter-spacing:9px!important;
  font-size:28px!important;
  font-weight:950!important;
  height:72px!important;
}
#jood-app .jood-auth-switch{
  margin-top:16px;
  padding:12px 14px;
  border:1px dashed rgba(224,198,132,.72);
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  background:#FFFFFF;
  color:#435365;
  font-weight:800;
}
#jood-app .jood-auth-switch a,
#jood-app .jood-auth-link-button{
  color:#2B170F!important;
  font-weight:950!important;
  text-decoration:none!important;
  border:0!important;
  background:transparent!important;
  padding:0!important;
  cursor:pointer;
}
#jood-app .jood-password-fallback{
  margin-top:14px;
  padding:12px;
  border:1px solid rgba(224,198,132,.38);
  border-radius:18px;
  background:#FFFFFF;
}
#jood-app .jood-password-fallback summary{font-weight:950;color:#2B170F;}
#jood-app .jood-password-fallback form{margin-top:12px;}

/* Logged-in account app dashboard */
#jood-app .jood-account-hero,
#jood-app .jood-account-panel,
#jood-app .jood-account-summary-card{
  border:1px solid rgba(224,198,132,.50)!important;
  background:#fff!important;
  box-shadow:0 18px 46px rgba(10,22,37,.065)!important;
}
#jood-app .jood-account-hero{border-radius:32px!important;padding:26px!important;}
#jood-app .jood-account-hero h2,
#jood-app .jood-account-panel h2,
#jood-app .jood-account-orders-panel h2{color:#2B170F!important;font-weight:950!important;}
#jood-app .jood-account-loyalty-card,
#jood-app .jood-account-loyalty-progress{
  background:linear-gradient(135deg,#2B170F,#132943)!important;
  color:#fff!important;
  border-color:rgba(10,22,37,.9)!important;
}
#jood-app .jood-account-loyalty-card small{color:rgba(255,255,255,.78)!important;}
#jood-app .jood-account-summary-grid{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:14px!important;}
#jood-app .jood-account-layout{display:grid!important;grid-template-columns:minmax(0,1.35fr) minmax(320px,.65fr)!important;gap:18px!important;align-items:start!important;}

/* Store/category filters */
#jood-app .jood-store-filter-shell{
  padding:14px!important;
  border:1px solid rgba(224,198,132,.55)!important;
  border-radius:28px!important;
  background:#fff!important;
  box-shadow:0 18px 42px rgba(10,22,37,.06)!important;
  overflow:visible!important;
}
#jood-app .jood-store-filters{
  display:grid!important;
  grid-template-columns:minmax(260px,1.5fr) minmax(0,2fr)!important;
  gap:12px!important;
  align-items:end!important;
}
#jood-app .jood-store-filter-search{
  height:58px!important;
  min-height:58px!important;
  border:1px solid rgba(224,198,132,.60)!important;
  border-radius:22px!important;
  background:#fff!important;
  box-shadow:0 8px 22px rgba(10,22,37,.045)!important;
  display:flex!important;
  align-items:center!important;
  gap:10px!important;
  padding:0 14px!important;
}
#jood-app .jood-store-filter-search input{
  border:0!important;
  box-shadow:none!important;
  min-height:0!important;
  height:auto!important;
  padding:0!important;
  background:transparent!important;
}
#jood-app .jood-store-filter-search .jood-svg-icon{color:#B9854D!important;font-size:24px!important;}
#jood-app .jood-store-filter-selects{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(130px,1fr)) auto auto!important;
  gap:10px!important;
  align-items:end!important;
}
#jood-app .jood-store-filter-selects label{display:grid!important;gap:6px!important;min-width:0!important;}
#jood-app .jood-store-filter-selects label>span{font-size:12px!important;color:#B9854D!important;font-weight:950!important;}
#jood-app .jood-store-filter-selects select,
#jood-app .jood-store-filter-selects .jood-btn,
#jood-app .jood-store-filter-selects button,
#jood-app .jood-store-filter-selects a.jood-btn{
  height:58px!important;
  min-height:58px!important;
  border-radius:22px!important;
  padding-inline:18px!important;
}

/* Checkout premium */
#jood-app .jood-checkout-page{max-width:100%!important;}
#jood-app .jood-checkout-hero,
#jood-app .jood-checkout-card,
#jood-app .jood-checkout-review-card,
#jood-app .jood-loyalty-strip,
#jood-app .jood-cart-summary-card{
  border:1px solid rgba(224,198,132,.50)!important;
  border-radius:28px!important;
  background:#fff!important;
  box-shadow:0 18px 46px rgba(10,22,37,.065)!important;
}
#jood-app .jood-checkout-hero{padding:22px!important;display:grid!important;grid-template-columns:minmax(0,1fr) 220px!important;gap:18px!important;align-items:center!important;}
#jood-app .jood-checkout-hero h2{color:#2B170F!important;font-size:clamp(26px,2.7vw,40px)!important;font-weight:950!important;}
#jood-app .jood-checkout-steps{display:flex!important;gap:8px!important;flex-wrap:wrap!important;}
#jood-app .jood-checkout-hero__summary{background:#FFFFFF!important;border:1px solid rgba(224,198,132,.45)!important;border-radius:24px!important;color:#2B170F!important;}
#jood-app .jood-checkout-layout{display:grid!important;grid-template-columns:minmax(0,1fr) 390px!important;gap:18px!important;align-items:start!important;}
#jood-app .jood-checkout-main{display:grid!important;gap:14px!important;min-width:0!important;}
#jood-app .jood-checkout-card{padding:18px!important;}
#jood-app .jood-checkout-card__head h3,
#jood-app .jood-checkout-review-card__head h3{color:#2B170F!important;font-size:24px!important;font-weight:950!important;}
#jood-app .jood-checkout-side{position:sticky!important;top:16px!important;min-width:0!important;}
#jood-app .jood-checkout-review-card{padding:16px!important;overflow:hidden!important;}
#jood-app .jood-checkout-review-items{display:grid!important;gap:10px!important;margin-bottom:12px!important;}
#jood-app .jood-checkout-review-item{display:grid!important;grid-template-columns:64px minmax(0,1fr) auto!important;gap:10px!important;align-items:center!important;padding:10px!important;border:1px solid rgba(224,198,132,.35)!important;border-radius:18px!important;background:#FFFFFF!important;}
#jood-app .jood-checkout-review-item__image{width:64px!important;height:64px!important;border-radius:16px!important;background:#fff!important;overflow:hidden!important;display:grid!important;place-items:center!important;}
#jood-app .jood-checkout-review-item__image img{width:100%!important;height:100%!important;object-fit:cover!important;}
#jood-app .jood-checkout-review-item__content strong{font-size:13px!important;color:#2B170F!important;font-weight:950!important;line-height:1.45!important;}
#jood-app .jood-checkout-review-item__content em{font-style:normal!important;color:#7B6758!important;font-size:12px!important;font-weight:800!important;}
#jood-app .jood-checkout-review-item__total{font-size:13px!important;color:#2B170F!important;white-space:nowrap!important;}
#jood-app .jood-cart-totals,
#jood-app .jood-cart-summary-totals{border-radius:22px!important;background:#fff!important;border:1px solid rgba(224,198,132,.35)!important;padding:12px!important;}
#jood-app .jood-loyalty-strip{margin:14px 0!important;padding:14px 16px!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:14px!important;}
#jood-app .jood-loyalty-strip>div{display:flex!important;align-items:center!important;gap:10px!important;min-width:0!important;}
#jood-app .jood-loyalty-strip .jood-svg-icon{width:42px!important;height:42px!important;min-width:42px!important;border-radius:16px!important;background:#2B170F!important;color:#fff!important;display:grid!important;place-items:center!important;}
#jood-app .jood-loyalty-strip span{display:block!important;color:#B9854D!important;font-weight:950!important;font-size:12px!important;}
#jood-app .jood-loyalty-strip strong{display:block!important;color:#2B170F!important;font-weight:950!important;font-size:16px!important;}
#jood-app .jood-loyalty-strip p{margin:0!important;color:#516273!important;font-size:13px!important;font-weight:800!important;line-height:1.7!important;}
#jood-app .jood-loyalty-strip a{color:#2B170F!important;font-weight:950!important;white-space:nowrap!important;}

/* Mobile app compression */
@media (max-width: 1024px){
  #jood-app .jood-account-auth-page-v2,
  #jood-app .jood-checkout-layout,
  #jood-app .jood-account-layout{grid-template-columns:1fr!important;}
  #jood-app .jood-checkout-side{position:relative!important;top:auto!important;}
  #jood-app .jood-store-filters{grid-template-columns:1fr!important;}
  #jood-app .jood-store-filter-selects{grid-template-columns:repeat(3,minmax(0,1fr)) repeat(2,auto)!important;}
}
@media (max-width: 782px){
  #jood-app .jood-account-auth-page-v2{gap:10px!important;}
  #jood-app .jood-account-auth-hero-v2{min-height:auto!important;padding:18px!important;border-radius:22px!important;}
  #jood-app .jood-account-auth-hero-v2 h2{font-size:25px!important;}
  #jood-app .jood-account-single-auth-card,
  #jood-app .jood-account-verify-card{min-height:auto!important;padding:14px!important;border-radius:22px!important;}
  #jood-app .jood-form-grid{grid-template-columns:1fr!important;gap:9px!important;}
  #jood-app .jood-form-field-wide{grid-column:auto!important;}
  #jood-app .jood-form-field span{font-size:11px!important;}
  #jood-app :where(input,select,textarea){min-height:48px!important;border-radius:15px!important;}
  #jood-app .jood-account-card-head h3{font-size:22px!important;}
  #jood-app .jood-auth-switch{align-items:flex-start;flex-direction:column;gap:6px;font-size:13px;}
  #jood-app .jood-account-summary-grid{grid-template-columns:1fr!important;gap:9px!important;}
  #jood-app .jood-store-filter-shell{border-radius:20px!important;padding:10px!important;}
  #jood-app .jood-store-filter-selects{grid-template-columns:1fr 1fr!important;gap:8px!important;}
  #jood-app .jood-store-filter-selects label{grid-column:span 1!important;}
  #jood-app .jood-store-filter-search,
  #jood-app .jood-store-filter-selects select,
  #jood-app .jood-store-filter-selects .jood-btn,
  #jood-app .jood-store-filter-selects button,
  #jood-app .jood-store-filter-selects a.jood-btn{height:48px!important;min-height:48px!important;border-radius:16px!important;padding-inline:12px!important;font-size:12px!important;}
  #jood-app .jood-checkout-hero{grid-template-columns:1fr!important;padding:14px!important;border-radius:22px!important;}
  #jood-app .jood-checkout-card,
  #jood-app .jood-checkout-review-card{padding:12px!important;border-radius:20px!important;}
  #jood-app .jood-checkout-card__head h3,
  #jood-app .jood-checkout-review-card__head h3{font-size:20px!important;}
  #jood-app .jood-checkout-review-item{grid-template-columns:52px minmax(0,1fr)!important;}
  #jood-app .jood-checkout-review-item__total{grid-column:2!important;justify-self:start!important;}
  #jood-app .jood-checkout-review-item__image{width:52px!important;height:52px!important;}
  #jood-app .jood-loyalty-strip{border-radius:20px!important;display:grid!important;align-items:start!important;gap:9px!important;padding:12px!important;}
}
@media (max-width: 420px){
  #jood-app .jood-store-filter-selects{grid-template-columns:1fr!important;}
}

/* =========================================================
   JOOD ACCOUNT PAGE FINAL FIX V4.0.10
   Scope: logged-in account page only. Full app identity.
========================================================= */
body #jood-app.jood-app-shell-view-account{
  background:#ffffff !important;
  color:#2B170F !important;
}
body #jood-app.jood-app-shell-view-account .jood-app-main{
  width:min(1180px, calc(100% - 32px)) !important;
  max-width:1180px !important;
  margin-inline:auto !important;
  padding-top:12px !important;
  padding-bottom:72px !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-page{
  width:100% !important;
  max-width:1180px !important;
  margin:0 auto !important;
  padding:0 !important;
  display:block !important;
  color:#2B170F !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-page *,
body #jood-app.jood-app-shell-view-account .jood-account-page *::before,
body #jood-app.jood-app-shell-view-account .jood-account-page *::after{
  box-sizing:border-box !important;
}

/* ===== Account hero as compact application card ===== */
body #jood-app.jood-app-shell-view-account .jood-account-hero{
  width:100% !important;
  min-height:0 !important;
  height:auto !important;
  margin:0 0 16px !important;
  padding:18px !important;
  display:grid !important;
  grid-template-columns:minmax(0, 1fr) !important;
  gap:14px !important;
  align-items:stretch !important;
  border:1px solid rgba(216,189,145,.42) !important;
  border-radius:28px !important;
  background:linear-gradient(180deg,#ffffff 0%,#fffefa 100%) !important;
  box-shadow:0 18px 48px rgba(10,22,37,.06) !important;
  overflow:hidden !important;
  position:relative !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-hero::before{
  content:"" !important;
  position:absolute !important;
  inset-inline-start:0 !important;
  inset-block:18px !important;
  width:4px !important;
  border-radius:999px !important;
  background:linear-gradient(180deg,#D7B179,#f3e5cf) !important;
  pointer-events:none !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-hero__profile{
  width:100% !important;
  min-width:0 !important;
  min-height:0 !important;
  padding:0 !important;
  display:grid !important;
  grid-template-columns:92px minmax(0,1fr) !important;
  gap:14px !important;
  align-items:center !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  color:#2B170F !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-avatar{
  width:86px !important;
  height:86px !important;
  min-width:86px !important;
  min-height:86px !important;
  border-radius:26px !important;
  padding:0 !important;
  overflow:hidden !important;
  display:grid !important;
  place-items:center !important;
  background:#ffffff !important;
  border:1px solid rgba(216,189,145,.45) !important;
  box-shadow:0 12px 30px rgba(10,22,37,.08) !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-avatar img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-avatar span{
  color:#2B170F !important;
  font-size:26px !important;
  font-weight:950 !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-hero__profile > div:last-child{
  min-width:0 !important;
  width:100% !important;
  display:grid !important;
  gap:7px !important;
  justify-items:start !important;
  align-content:center !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-hero .jood-eyebrow,
body #jood-app.jood-app-shell-view-account .jood-section-kicker{
  display:inline-flex !important;
  align-items:center !important;
  width:max-content !important;
  max-width:100% !important;
  min-height:24px !important;
  padding:4px 10px !important;
  border-radius:999px !important;
  border:1px solid rgba(216,189,145,.52) !important;
  background:#FFF8EF !important;
  color:#8a6331 !important;
  font-size:11px !important;
  font-weight:900 !important;
  line-height:1.3 !important;
  white-space:nowrap !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-hero h2{
  margin:0 !important;
  color:#2B170F !important;
  font-size:clamp(26px, 3.1vw, 42px) !important;
  line-height:1.12 !important;
  font-weight:950 !important;
  letter-spacing:-.7px !important;
  max-width:100% !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-hero p{
  margin:0 !important;
  color:#8B5A36 !important;
  font-size:14px !important;
  line-height:1.75 !important;
  font-weight:700 !important;
  max-width:520px !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-hero__actions{
  width:100% !important;
  margin-top:5px !important;
  display:flex !important;
  flex-direction:row !important;
  flex-wrap:wrap !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:8px !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-hero__actions .jood-btn{
  width:auto !important;
  min-width:118px !important;
  max-width:100% !important;
  min-height:42px !important;
  height:42px !important;
  padding:9px 15px !important;
  border-radius:999px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:7px !important;
  font-size:13px !important;
  line-height:1 !important;
  font-weight:900 !important;
  white-space:nowrap !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-hero__actions .jood-btn-primary,
body #jood-app.jood-app-shell-view-account .jood-btn-primary,
body #jood-app.jood-app-shell-view-account .jood-profile-form > .jood-btn-primary{
  background:linear-gradient(135deg,#2B170F,#2B170F) !important;
  border:1px solid rgba(10,22,37,.98) !important;
  color:#ffffff !important;
  box-shadow:0 12px 28px rgba(10,22,37,.16) !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-hero__actions .jood-btn-ghost{
  background:#ffffff !important;
  color:#2B170F !important;
  border:1px solid rgba(216,189,145,.55) !important;
  box-shadow:0 8px 20px rgba(10,22,37,.045) !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-hero__actions .jood-btn-danger{
  background:#ffffff !important;
  color:#a1352e !important;
  border:1px solid rgba(161,53,46,.18) !important;
  box-shadow:none !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-loyalty-card{
  width:100% !important;
  min-height:64px !important;
  height:auto !important;
  margin:0 !important;
  padding:12px 16px !important;
  display:grid !important;
  grid-template-columns:auto auto auto minmax(0,1fr) !important;
  align-items:center !important;
  gap:10px !important;
  border:1px solid rgba(10,22,37,.94) !important;
  border-radius:20px !important;
  background:linear-gradient(135deg,#2B170F 0%,#11243a 100%) !important;
  color:#ffffff !important;
  box-shadow:0 16px 34px rgba(10,22,37,.18) !important;
  overflow:hidden !important;
  position:relative !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-loyalty-card .jood-svg-icon,
body #jood-app.jood-app-shell-view-account .jood-account-loyalty-card svg{
  color:#D7B179 !important;
  width:20px !important;
  height:20px !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-loyalty-card span,
body #jood-app.jood-app-shell-view-account .jood-account-loyalty-card strong,
body #jood-app.jood-app-shell-view-account .jood-account-loyalty-card small{
  margin:0 !important;
  color:#ffffff !important;
  line-height:1.35 !important;
  white-space:nowrap !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-loyalty-card span{
  font-size:12px !important;
  opacity:.85 !important;
  font-weight:800 !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-loyalty-card strong{
  font-size:18px !important;
  font-weight:950 !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-loyalty-card small{
  justify-self:end !important;
  color:#f4e6cf !important;
  font-size:12px !important;
  font-weight:800 !important;
  white-space:normal !important;
  text-align:left !important;
}

/* ===== Summary cards ===== */
body #jood-app.jood-app-shell-view-account .jood-account-summary-grid{
  width:100% !important;
  margin:0 0 16px !important;
  padding:0 !important;
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:12px !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-summary-card{
  min-height:78px !important;
  padding:14px !important;
  display:grid !important;
  grid-template-columns:42px minmax(0,1fr) auto !important;
  grid-template-rows:auto auto !important;
  align-items:center !important;
  gap:3px 10px !important;
  border:1px solid rgba(216,189,145,.40) !important;
  border-radius:20px !important;
  background:#ffffff !important;
  color:#2B170F !important;
  box-shadow:0 10px 28px rgba(10,22,37,.045) !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-summary-card > div{
  grid-row:1 / span 2 !important;
  width:40px !important;
  height:40px !important;
  display:grid !important;
  place-items:center !important;
  border-radius:14px !important;
  background:#FFF8EF !important;
  border:1px solid rgba(216,189,145,.44) !important;
  color:#2B170F !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-summary-card span{
  color:#8B5A36 !important;
  font-size:12px !important;
  font-weight:800 !important;
  line-height:1.3 !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-summary-card strong{
  grid-column:3 !important;
  grid-row:1 / span 2 !important;
  color:#2B170F !important;
  font-size:22px !important;
  font-weight:950 !important;
  line-height:1 !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-summary-card small{
  color:#2B170F !important;
  font-size:12px !important;
  font-weight:850 !important;
  line-height:1.35 !important;
}

/* ===== Main account content ===== */
body #jood-app.jood-app-shell-view-account .jood-account-layout{
  width:100% !important;
  margin:0 !important;
  padding:0 !important;
  display:grid !important;
  grid-template-columns:minmax(0,1fr) 360px !important;
  gap:14px !important;
  align-items:start !important;
  direction:ltr !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-main,
body #jood-app.jood-app-shell-view-account .jood-account-side{
  width:100% !important;
  max-width:100% !important;
  min-width:0 !important;
  display:grid !important;
  gap:14px !important;
  direction:rtl !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-main{
  grid-column:1 !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-side{
  grid-column:2 !important;
  position:static !important;
  top:auto !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-panel,
body #jood-app.jood-app-shell-view-account .jood-account-orders-panel,
body #jood-app.jood-app-shell-view-account .jood-account-profile-panel,
body #jood-app.jood-app-shell-view-account .jood-account-loyalty-panel,
body #jood-app.jood-app-shell-view-account .jood-account-fast-links{
  width:100% !important;
  max-width:100% !important;
  min-width:0 !important;
  height:auto !important;
  min-height:0 !important;
  margin:0 !important;
  padding:18px !important;
  display:block !important;
  border:1px solid rgba(216,189,145,.42) !important;
  border-radius:24px !important;
  background:#ffffff !important;
  color:#2B170F !important;
  box-shadow:0 14px 36px rgba(10,22,37,.055) !important;
  overflow:hidden !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-panel__head{
  width:100% !important;
  min-height:0 !important;
  margin:0 0 14px !important;
  padding:0 0 12px !important;
  display:flex !important;
  flex-direction:row !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:12px !important;
  border-bottom:1px solid rgba(216,189,145,.24) !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-panel__head > div{
  min-width:0 !important;
  display:grid !important;
  gap:4px !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-panel__head > .jood-svg-icon,
body #jood-app.jood-app-shell-view-account .jood-account-card-head > .jood-svg-icon{
  width:42px !important;
  height:42px !important;
  min-width:42px !important;
  min-height:42px !important;
  display:grid !important;
  place-items:center !important;
  border-radius:15px !important;
  background:#FFF8EF !important;
  border:1px solid rgba(216,189,145,.48) !important;
  color:#2B170F !important;
  box-shadow:none !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-panel__head h2,
body #jood-app.jood-app-shell-view-account .jood-account-panel h2,
body #jood-app.jood-app-shell-view-account .jood-account-orders-panel h2{
  margin:0 !important;
  color:#2B170F !important;
  font-size:clamp(21px,2vw,30px) !important;
  line-height:1.2 !important;
  font-weight:950 !important;
  letter-spacing:-.4px !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-panel__head p,
body #jood-app.jood-app-shell-view-account .jood-account-panel p{
  margin:0 !important;
  color:#8B5A36 !important;
  font-size:13px !important;
  line-height:1.65 !important;
  font-weight:700 !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-panel__head .jood-btn{
  width:auto !important;
  min-width:96px !important;
  height:38px !important;
  min-height:38px !important;
  padding:8px 14px !important;
  border-radius:999px !important;
  font-size:12px !important;
}

/* ===== Profile form fixed: no vertical button, no squeezed inputs ===== */
body #jood-app.jood-app-shell-view-account .jood-profile-form,
body #jood-app.jood-app-shell-view-account .jood-account-form{
  width:100% !important;
  max-width:100% !important;
  display:grid !important;
  grid-template-columns:1fr !important;
  gap:12px !important;
  align-items:stretch !important;
  margin:0 !important;
  padding:0 !important;
}
body #jood-app.jood-app-shell-view-account .jood-profile-form .jood-form-grid{
  width:100% !important;
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:10px !important;
  align-items:start !important;
  margin:0 !important;
}
body #jood-app.jood-app-shell-view-account .jood-profile-form .jood-form-field-wide{
  grid-column:1 / -1 !important;
}
body #jood-app.jood-app-shell-view-account .jood-form-field{
  min-width:0 !important;
  width:100% !important;
  display:grid !important;
  gap:5px !important;
  margin:0 !important;
  padding:0 !important;
  color:#2B170F !important;
}
body #jood-app.jood-app-shell-view-account .jood-form-field > span{
  display:block !important;
  color:#2B170F !important;
  font-size:11px !important;
  line-height:1.35 !important;
  font-weight:900 !important;
  margin:0 !important;
  padding:0 !important;
}
body #jood-app.jood-app-shell-view-account .jood-form-field em{
  color:#b84034 !important;
  font-style:normal !important;
}
body #jood-app.jood-app-shell-view-account .jood-profile-form input,
body #jood-app.jood-app-shell-view-account .jood-profile-form select,
body #jood-app.jood-app-shell-view-account .jood-profile-form textarea,
body #jood-app.jood-app-shell-view-account .jood-account-form input,
body #jood-app.jood-app-shell-view-account .jood-account-form select,
body #jood-app.jood-app-shell-view-account .jood-account-form textarea{
  width:100% !important;
  min-width:0 !important;
  max-width:100% !important;
  min-height:48px !important;
  height:48px !important;
  padding:10px 12px !important;
  border:1px solid rgba(216,189,145,.34) !important;
  border-radius:16px !important;
  background:#ffffff !important;
  color:#2B170F !important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.88),0 7px 18px rgba(10,22,37,.03) !important;
  font-size:13px !important;
  line-height:1.4 !important;
  font-weight:850 !important;
  text-align:right !important;
}
body #jood-app.jood-app-shell-view-account .jood-profile-form input:focus,
body #jood-app.jood-app-shell-view-account .jood-profile-form textarea:focus{
  border-color:rgba(216,189,145,.88) !important;
  box-shadow:0 0 0 4px rgba(216,189,145,.16),0 10px 22px rgba(10,22,37,.04) !important;
  outline:0 !important;
}
body #jood-app.jood-app-shell-view-account .jood-profile-form > .jood-btn,
body #jood-app.jood-app-shell-view-account .jood-account-form > .jood-btn-wide{
  grid-column:1 / -1 !important;
  width:100% !important;
  max-width:100% !important;
  min-width:0 !important;
  height:50px !important;
  min-height:50px !important;
  padding:0 18px !important;
  margin:2px 0 0 !important;
  display:flex !important;
  flex-direction:row !important;
  align-items:center !important;
  justify-content:center !important;
  gap:8px !important;
  border-radius:18px !important;
  font-size:13px !important;
  line-height:1 !important;
  font-weight:950 !important;
  writing-mode:horizontal-tb !important;
  white-space:nowrap !important;
}
body #jood-app.jood-app-shell-view-account .jood-profile-form > .jood-btn span,
body #jood-app.jood-app-shell-view-account .jood-account-form > .jood-btn-wide span{
  display:inline !important;
  color:inherit !important;
  white-space:nowrap !important;
}

/* ===== Empty orders card ===== */
body #jood-app.jood-app-shell-view-account .jood-empty-state,
body #jood-app.jood-app-shell-view-account .jood-part-empty-state{
  width:100% !important;
  min-height:260px !important;
  padding:34px 18px !important;
  display:grid !important;
  place-items:center !important;
  text-align:center !important;
  border:1px solid rgba(216,189,145,.34) !important;
  border-radius:22px !important;
  background:linear-gradient(180deg,#ffffff,#FFF8EF) !important;
  color:#2B170F !important;
}
body #jood-app.jood-app-shell-view-account .jood-empty-state .jood-svg-icon,
body #jood-app.jood-app-shell-view-account .jood-part-empty-state .jood-svg-icon{
  width:62px !important;
  height:62px !important;
  display:grid !important;
  place-items:center !important;
  border-radius:22px !important;
  background:#2B170F !important;
  color:#D7B179 !important;
  margin:0 auto 12px !important;
}

/* ===== Loyalty / fast links cards ===== */
body #jood-app.jood-app-shell-view-account .jood-account-loyalty-progress{
  width:100% !important;
  min-height:58px !important;
  padding:12px 14px !important;
  margin:0 0 12px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:10px !important;
  border-radius:18px !important;
  background:linear-gradient(135deg,#2B170F,#2B170F) !important;
  color:#ffffff !important;
  box-shadow:0 14px 30px rgba(10,22,37,.16) !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-loyalty-progress strong,
body #jood-app.jood-app-shell-view-account .jood-account-loyalty-progress span{
  color:#ffffff !important;
  margin:0 !important;
  line-height:1.2 !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-loyalty-progress strong{
  font-size:20px !important;
  font-weight:950 !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-loyalty-progress span{
  font-size:12px !important;
  font-weight:850 !important;
  color:#f3e5cf !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-loyalty-panel > .jood-btn,
body #jood-app.jood-app-shell-view-account .jood-account-fast-links .jood-btn{
  width:100% !important;
  height:46px !important;
  min-height:46px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  border-radius:16px !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-links-list{
  width:100% !important;
  display:grid !important;
  gap:8px !important;
  margin:0 !important;
}
body #jood-app.jood-app-shell-view-account .jood-account-links-list a{
  width:100% !important;
  min-height:42px !important;
  padding:9px 12px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:9px !important;
  border:1px solid rgba(216,189,145,.32) !important;
  border-radius:15px !important;
  background:#ffffff !important;
  color:#2B170F !important;
  font-size:13px !important;
  font-weight:900 !important;
}

/* ===== Tablet/mobile app-like compression ===== */
@media (max-width: 1100px){
  body #jood-app.jood-app-shell-view-account .jood-account-layout{
    grid-template-columns:1fr !important;
    direction:rtl !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-account-main,
  body #jood-app.jood-app-shell-view-account .jood-account-side{
    grid-column:auto !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-account-side{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-account-fast-links{
    grid-column:1 / -1 !important;
  }
}
@media (max-width: 782px){
  body #jood-app.jood-app-shell-view-account .jood-app-main{
    width:100% !important;
    max-width:100% !important;
    padding-inline:10px !important;
    padding-top:8px !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-account-hero{
    padding:12px !important;
    border-radius:22px !important;
    gap:10px !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-account-hero__profile{
    grid-template-columns:66px minmax(0,1fr) !important;
    gap:10px !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-account-avatar{
    width:62px !important;
    height:62px !important;
    min-width:62px !important;
    min-height:62px !important;
    border-radius:20px !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-account-hero h2{
    font-size:24px !important;
    line-height:1.15 !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-account-hero p{
    font-size:12.5px !important;
    line-height:1.55 !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-account-hero__actions{
    gap:6px !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-account-hero__actions .jood-btn{
    flex:1 1 calc(50% - 6px) !important;
    min-width:0 !important;
    height:40px !important;
    min-height:40px !important;
    padding:8px 10px !important;
    font-size:12px !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-account-hero__actions .jood-btn-danger{
    flex-basis:100% !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-account-loyalty-card{
    grid-template-columns:auto 1fr auto !important;
    min-height:58px !important;
    padding:10px 12px !important;
    border-radius:18px !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-account-loyalty-card small{
    grid-column:1 / -1 !important;
    justify-self:start !important;
    text-align:right !important;
    font-size:11px !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-account-summary-grid{
    grid-template-columns:1fr !important;
    gap:8px !important;
    margin-bottom:10px !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-account-summary-card{
    min-height:58px !important;
    padding:10px !important;
    border-radius:17px !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-account-side{
    grid-template-columns:1fr !important;
    gap:10px !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-account-panel,
  body #jood-app.jood-app-shell-view-account .jood-account-orders-panel,
  body #jood-app.jood-app-shell-view-account .jood-account-profile-panel,
  body #jood-app.jood-app-shell-view-account .jood-account-loyalty-panel,
  body #jood-app.jood-app-shell-view-account .jood-account-fast-links{
    padding:12px !important;
    border-radius:20px !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-account-panel__head{
    margin-bottom:10px !important;
    padding-bottom:10px !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-account-panel__head h2,
  body #jood-app.jood-app-shell-view-account .jood-account-panel h2{
    font-size:21px !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-profile-form .jood-form-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:8px !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-profile-form input,
  body #jood-app.jood-app-shell-view-account .jood-profile-form select,
  body #jood-app.jood-app-shell-view-account .jood-profile-form textarea{
    min-height:44px !important;
    height:44px !important;
    border-radius:14px !important;
    padding:8px 10px !important;
    font-size:12px !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-form-field > span{
    font-size:10.5px !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-profile-form > .jood-btn{
    height:46px !important;
    min-height:46px !important;
    border-radius:16px !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-empty-state,
  body #jood-app.jood-app-shell-view-account .jood-part-empty-state{
    min-height:210px !important;
    padding:24px 12px !important;
    border-radius:18px !important;
  }
}
@media (max-width: 430px){
  body #jood-app.jood-app-shell-view-account .jood-app-main{
    padding-inline:8px !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-account-hero__profile{
    grid-template-columns:58px minmax(0,1fr) !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-account-avatar{
    width:54px !important;
    height:54px !important;
    min-width:54px !important;
    min-height:54px !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-account-hero h2{
    font-size:22px !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-account-hero__actions .jood-btn{
    flex-basis:100% !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-profile-form .jood-form-grid{
    grid-template-columns:1fr !important;
  }
  body #jood-app.jood-app-shell-view-account .jood-profile-form .jood-form-field-wide{
    grid-column:auto !important;
  }
}

/* =========================================================
   99.30 STORE FILTER FINAL FIX
   Desktop: one clean row. Mobile: compact responsive block.
========================================================= */

#jood-app.jood-app-shell-view-store .jood-store-filter-shell,
#jood-app.jood-app-shell-view-category .jood-store-filter-shell {
  padding: 12px 14px !important;
  border-radius: 22px !important;
  background: #FFFFFF !important;
  border: 1px solid rgba(214, 181, 109, .38) !important;
  box-shadow: 0 12px 32px rgba(10, 22, 37, .05) !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-shell > .jood-svg-icon,
#jood-app.jood-app-shell-view-category .jood-store-filter-shell > .jood-svg-icon {
  flex: 0 0 46px !important;
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  min-height: 46px !important;
  border-radius: 16px !important;
  display: grid !important;
  place-items: center !important;
  background: #2B170F !important;
  color: #D7B179 !important;
  box-shadow: 0 14px 28px rgba(10, 22, 37, .16) !important;
}

#jood-app.jood-app-shell-view-store form.jood-store-filters,
#jood-app.jood-app-shell-view-category form.jood-store-filters,
#jood-app.jood-app-shell-view-store .jood-store-filters,
#jood-app.jood-app-shell-view-category .jood-store-filters {
  width: 100% !important;
  min-width: 0 !important;
  display: flex !important;
  align-items: end !important;
  justify-content: space-between !important;
  gap: 10px !important;
  flex-wrap: nowrap !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search,
#jood-app.jood-app-shell-view-category .jood-store-filter-search {
  order: 2 !important;
  flex: 1 1 360px !important;
  min-width: 260px !important;
  max-width: 520px !important;
  width: auto !important;
  display: grid !important;
  align-items: end !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects {
  order: 1 !important;
  flex: 0 1 720px !important;
  min-width: 0 !important;
  width: auto !important;
  display: grid !important;
  grid-template-columns: minmax(132px, 1fr) minmax(132px, 1fr) minmax(132px, 1fr) minmax(112px, .82fr) minmax(112px, .82fr) !important;
  align-items: end !important;
  gap: 9px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search label,
#jood-app.jood-app-shell-view-category .jood-store-filter-search label,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects label,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects label {
  width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  gap: 4px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search label > span,
#jood-app.jood-app-shell-view-category .jood-store-filter-search label > span,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects label > span,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects label > span {
  height: 15px !important;
  min-height: 15px !important;
  padding-inline: 7px !important;
  color: #2B170F !important;
  font-size: 10.5px !important;
  line-height: 15px !important;
  font-weight: 900 !important;
  opacity: .82 !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search input,
#jood-app.jood-app-shell-view-category .jood-store-filter-search input,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects select,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects select,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects button,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects button,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects .button,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects .button,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="submit"],
#jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="submit"],
#jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="reset"],
#jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="reset"] {
  height: 46px !important;
  min-height: 46px !important;
  border-radius: 15px !important;
  font-size: 11.5px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  margin: 0 !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search input,
#jood-app.jood-app-shell-view-category .jood-store-filter-search input,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects select,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects select {
  background: #FFFFFF !important;
  color: #2B170F !important;
  border: 1px solid rgba(214, 181, 109, .48) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .88) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search input::placeholder,
#jood-app.jood-app-shell-view-category .jood-store-filter-search input::placeholder {
  color: rgba(10, 22, 37, .46) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects button[type="submit"],
#jood-app.jood-app-shell-view-category .jood-store-filter-selects button[type="submit"],
#jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="submit"],
#jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="submit"] {
  background: #2B170F !important;
  color: #FFFFFF !important;
  border: 1px solid #2B170F !important;
  box-shadow: 0 12px 24px rgba(10, 22, 37, .14) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects button[type="reset"],
#jood-app.jood-app-shell-view-category .jood-store-filter-selects button[type="reset"],
#jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="reset"],
#jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="reset"],
#jood-app.jood-app-shell-view-store .jood-store-filter-selects .jood-btn-ghost,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects .jood-btn-ghost {
  background: #FFFFFF !important;
  color: #2B170F !important;
  border: 1px solid rgba(214, 181, 109, .66) !important;
  box-shadow: 0 8px 18px rgba(10, 22, 37, .045) !important;
}

@media (min-width: 1181px) {
  #jood-app.jood-app-shell-view-store .jood-store-filter-shell,
  #jood-app.jood-app-shell-view-category .jood-store-filter-shell {
    min-height: 86px !important;
  }
}

@media (max-width: 1180px) and (min-width: 768px) {
  #jood-app.jood-app-shell-view-store form.jood-store-filters,
  #jood-app.jood-app-shell-view-category form.jood-store-filters,
  #jood-app.jood-app-shell-view-store .jood-store-filters,
  #jood-app.jood-app-shell-view-category .jood-store-filters {
    flex-wrap: wrap !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-search,
  #jood-app.jood-app-shell-view-category .jood-store-filter-search {
    flex: 1 1 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects {
    flex: 1 1 100% !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767px) {
  #jood-app.jood-app-shell-view-store .jood-store-filter-shell,
  #jood-app.jood-app-shell-view-category .jood-store-filter-shell {
    padding: 10px !important;
    border-radius: 20px !important;
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 8px !important;
    align-items: start !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-shell > .jood-svg-icon,
  #jood-app.jood-app-shell-view-category .jood-store-filter-shell > .jood-svg-icon {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    border-radius: 14px !important;
    display: grid !important;
  }

  #jood-app.jood-app-shell-view-store form.jood-store-filters,
  #jood-app.jood-app-shell-view-category form.jood-store-filters,
  #jood-app.jood-app-shell-view-store .jood-store-filters,
  #jood-app.jood-app-shell-view-category .jood-store-filters {
    grid-column: 1 / -1 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    width: 100% !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-search,
  #jood-app.jood-app-shell-view-category .jood-store-filter-search {
    order: 1 !important;
    max-width: none !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-search label > span,
  #jood-app.jood-app-shell-view-category .jood-store-filter-search label > span,
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects label > span,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects label > span {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-search input,
  #jood-app.jood-app-shell-view-category .jood-store-filter-search input {
    height: 42px !important;
    min-height: 42px !important;
    border-radius: 15px !important;
    font-size: 11px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects {
    order: 2 !important;
    flex: none !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects select,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects select {
    height: 40px !important;
    min-height: 40px !important;
    padding-inline: 7px 24px !important;
    border-radius: 13px !important;
    font-size: 10.5px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects button,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects button,
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects .button,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects .button,
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="submit"],
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="submit"],
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="reset"],
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="reset"] {
    height: 40px !important;
    min-height: 40px !important;
    border-radius: 13px !important;
    font-size: 11px !important;
    width: 100% !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects button[type="submit"],
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects button[type="submit"],
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="submit"],
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="submit"] {
    grid-column: span 2 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects button[type="reset"],
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects button[type="reset"],
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="reset"],
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="reset"],
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects .jood-btn-ghost,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects .jood-btn-ghost {
    grid-column: span 1 !important;
  }
}

@media (max-width: 380px) {
  #jood-app.jood-app-shell-view-store .jood-store-filter-shell,
  #jood-app.jood-app-shell-view-category .jood-store-filter-shell {
    padding: 8px !important;
    gap: 7px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects {
    gap: 6px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects select,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects select,
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects button,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects button,
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="submit"],
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="submit"],
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="reset"],
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="reset"] {
    font-size: 10px !important;
  }
}

/* =========================================================
   99.12 JOOD FILTER BAR FINAL FIX — SEARCH + RESPONSIVE
   This block intentionally comes last to normalize the real
   filter DOM without changing the original file structure.
========================================================= */

#jood-app.jood-app-shell-view-store .jood-store-filter-shell,
#jood-app.jood-app-shell-view-category .jood-store-filter-shell {
  width: 100% !important;
  padding: 10px !important;
  display: grid !important;
  grid-template-columns: 44px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 10px !important;
  border: 1px solid rgba(214, 181, 109, .42) !important;
  border-radius: 22px !important;
  background: #ffffff !important;
  box-shadow: 0 12px 28px rgba(10, 22, 37, .045) !important;
  overflow: visible !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-shell > .jood-svg-icon,
#jood-app.jood-app-shell-view-category .jood-store-filter-shell > .jood-svg-icon {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  margin: 0 !important;
  padding: 11px !important;
  display: grid !important;
  place-items: center !important;
  align-self: end !important;
  border-radius: 15px !important;
  border: 1px solid rgba(10, 22, 37, .92) !important;
  background: #2B170F !important;
  color: #D7B179 !important;
  box-shadow: 0 10px 22px rgba(10, 22, 37, .14) !important;
}

#jood-app.jood-app-shell-view-store form.jood-store-filters,
#jood-app.jood-app-shell-view-category form.jood-store-filters,
#jood-app.jood-app-shell-view-store .jood-store-filters,
#jood-app.jood-app-shell-view-category .jood-store-filters {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(280px, 1fr) auto !important;
  align-items: end !important;
  gap: 10px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search,
#jood-app.jood-app-shell-view-category .jood-store-filter-search {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: 46px !important;
  min-height: 46px !important;
  margin: 0 !important;
  padding: 0 42px 0 14px !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  border: 1px solid rgba(214, 181, 109, .58) !important;
  border-radius: 17px !important;
  background: #ffffff !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .92), 0 8px 18px rgba(10, 22, 37, .035) !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search label,
#jood-app.jood-app-shell-view-category .jood-store-filter-search label {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search label > span,
#jood-app.jood-app-shell-view-category .jood-store-filter-search label > span {
  display: none !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search .jood-svg-icon,
#jood-app.jood-app-shell-view-category .jood-store-filter-search .jood-svg-icon {
  position: absolute !important;
  inset-inline-start: 14px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 2 !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  place-items: center !important;
  color: #2B170F !important;
  opacity: .92 !important;
  pointer-events: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search input,
#jood-app.jood-app-shell-view-category .jood-store-filter-search input,
#jood-app.jood-app-shell-view-store .jood-store-filter-search input[type="search"],
#jood-app.jood-app-shell-view-category .jood-store-filter-search input[type="search"],
#jood-app.jood-app-shell-view-store .jood-store-filter-search input[type="text"],
#jood-app.jood-app-shell-view-category .jood-store-filter-search input[type="text"] {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  border: 0 !important;
  outline: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #2B170F !important;
  font-size: 13px !important;
  line-height: 46px !important;
  font-weight: 800 !important;
  text-align: start !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search input::placeholder,
#jood-app.jood-app-shell-view-category .jood-store-filter-search input::placeholder {
  color: rgba(10, 22, 37, .45) !important;
  font-weight: 700 !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search:focus-within,
#jood-app.jood-app-shell-view-category .jood-store-filter-search:focus-within {
  border-color: rgba(214, 181, 109, .88) !important;
  box-shadow: 0 0 0 3px rgba(214, 181, 109, .16), 0 10px 22px rgba(10, 22, 37, .045) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects {
  min-width: 0 !important;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(128px, 150px)) 104px 104px !important;
  align-items: end !important;
  gap: 8px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects label,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects label {
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  gap: 5px !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects label > span,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects label > span {
  height: 12px !important;
  padding-inline: 6px !important;
  display: block !important;
  color: rgba(10, 22, 37, .62) !important;
  font-size: 10px !important;
  line-height: 12px !important;
  font-weight: 900 !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects select,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects select,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects button,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects button,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects .button,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects .button,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="submit"],
#jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="submit"],
#jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="reset"],
#jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="reset"] {
  width: 100% !important;
  height: 46px !important;
  min-height: 46px !important;
  margin: 0 !important;
  border-radius: 16px !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  box-shadow: none !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects select,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects select {
  padding-inline: 12px 30px !important;
  border: 1px solid rgba(214, 181, 109, .58) !important;
  background-color: #ffffff !important;
  color: #2B170F !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects button[type="submit"],
#jood-app.jood-app-shell-view-category .jood-store-filter-selects button[type="submit"],
#jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="submit"],
#jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="submit"] {
  border: 1px solid #2B170F !important;
  background: #2B170F !important;
  color: #ffffff !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects button[type="reset"],
#jood-app.jood-app-shell-view-category .jood-store-filter-selects button[type="reset"],
#jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="reset"],
#jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="reset"],
#jood-app.jood-app-shell-view-store .jood-store-filter-selects .jood-btn-ghost,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects .jood-btn-ghost {
  border: 1px solid rgba(214, 181, 109, .58) !important;
  background: #ffffff !important;
  color: #2B170F !important;
}

@media (max-width: 1180px) and (min-width: 783px) {
  #jood-app.jood-app-shell-view-store form.jood-store-filters,
  #jood-app.jood-app-shell-view-category form.jood-store-filters,
  #jood-app.jood-app-shell-view-store .jood-store-filters,
  #jood-app.jood-app-shell-view-category .jood-store-filters {
    grid-template-columns: 1fr !important;
    gap: 9px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects {
    grid-template-columns: repeat(3, minmax(0, 1fr)) 100px 100px !important;
  }
}

@media (max-width: 782px) {
  #jood-app.jood-app-shell-view-store .jood-store-filter-shell,
  #jood-app.jood-app-shell-view-category .jood-store-filter-shell {
    padding: 9px !important;
    grid-template-columns: 1fr 42px !important;
    align-items: start !important;
    gap: 8px !important;
    border-radius: 19px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-shell > .jood-svg-icon,
  #jood-app.jood-app-shell-view-category .jood-store-filter-shell > .jood-svg-icon {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    padding: 10px !important;
    border-radius: 14px !important;
    align-self: start !important;
  }

  #jood-app.jood-app-shell-view-store form.jood-store-filters,
  #jood-app.jood-app-shell-view-category form.jood-store-filters,
  #jood-app.jood-app-shell-view-store .jood-store-filters,
  #jood-app.jood-app-shell-view-category .jood-store-filters {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-search,
  #jood-app.jood-app-shell-view-category .jood-store-filter-search {
    height: 43px !important;
    min-height: 43px !important;
    padding-inline-start: 39px !important;
    padding-inline-end: 12px !important;
    border-radius: 15px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-search input,
  #jood-app.jood-app-shell-view-category .jood-store-filter-search input,
  #jood-app.jood-app-shell-view-store .jood-store-filter-search input[type="search"],
  #jood-app.jood-app-shell-view-category .jood-store-filter-search input[type="search"] {
    height: 100% !important;
    min-height: 0 !important;
    border: 0 !important;
    background: transparent !important;
    line-height: 43px !important;
    font-size: 11.5px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-search .jood-svg-icon,
  #jood-app.jood-app-shell-view-category .jood-store-filter-search .jood-svg-icon {
    inset-inline-start: 13px !important;
    width: 17px !important;
    height: 17px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects {
    width: 100% !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects label > span,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects label > span {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects select,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects select,
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects button,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects button,
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects .button,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects .button,
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="submit"],
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="submit"],
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="reset"],
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="reset"] {
    height: 40px !important;
    min-height: 40px !important;
    border-radius: 13px !important;
    font-size: 10.5px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects button[type="submit"],
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects button[type="submit"],
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="submit"],
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="submit"] {
    grid-column: span 2 !important;
  }
}

/* =========================================================
   99.99 JOOD FILTER FINAL HARD FIX V4.0.13
   نفس الملف الكامل — إصلاح تراكب الفلتر والبحث فقط
========================================================= */

#jood-app.jood-app-shell-view-store,
#jood-app.jood-app-shell-view-category {
  --jood-final-navy: #2B170F;
  --jood-final-gold: #D7B179;
  --jood-final-gold-soft: rgba(216, 189, 145, .42);
  --jood-final-border: rgba(216, 189, 145, .58);
}

#jood-app.jood-app-shell-view-store .jood-store-filter-shell,
#jood-app.jood-app-shell-view-category .jood-store-filter-shell {
  width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  padding: 12px !important;
  display: grid !important;
  grid-template-columns: 44px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 12px !important;
  overflow: visible !important;
  border: 1px solid var(--jood-final-border) !important;
  border-radius: 22px !important;
  background: #ffffff !important;
  box-shadow: 0 12px 28px rgba(10, 22, 37, .045) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-shell > .jood-svg-icon,
#jood-app.jood-app-shell-view-category .jood-store-filter-shell > .jood-svg-icon {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  margin: 0 !important;
  padding: 11px !important;
  position: static !important;
  display: grid !important;
  place-items: center !important;
  border: 1px solid rgba(10, 22, 37, .08) !important;
  border-radius: 15px !important;
  background: var(--jood-final-navy) !important;
  color: var(--jood-final-gold) !important;
  box-shadow: 0 8px 18px rgba(10, 22, 37, .12) !important;
  transform: none !important;
}

#jood-app.jood-app-shell-view-store form.jood-store-filters,
#jood-app.jood-app-shell-view-store .jood-store-filters,
#jood-app.jood-app-shell-view-category form.jood-store-filters,
#jood-app.jood-app-shell-view-category .jood-store-filters {
  width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(280px, 1fr) minmax(520px, 1.35fr) !important;
  align-items: end !important;
  gap: 10px !important;
  overflow: visible !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search,
#jood-app.jood-app-shell-view-category .jood-store-filter-search {
  width: 100% !important;
  min-width: 0 !important;
  height: 46px !important;
  min-height: 46px !important;
  max-height: 46px !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  display: block !important;
  overflow: visible !important;
  border: 1px solid var(--jood-final-border) !important;
  border-radius: 16px !important;
  background: #ffffff !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.92) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search label,
#jood-app.jood-app-shell-view-category .jood-store-filter-search label {
  width: 100% !important;
  height: 44px !important;
  min-height: 44px !important;
  margin: 0 !important;
  padding: 0 !important;
  position: static !important;
  display: block !important;
  overflow: visible !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search label > span,
#jood-app.jood-app-shell-view-category .jood-store-filter-search label > span {
  display: none !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search .jood-svg-icon,
#jood-app.jood-app-shell-view-store .jood-store-filter-search button .jood-svg-icon,
#jood-app.jood-app-shell-view-category .jood-store-filter-search .jood-svg-icon,
#jood-app.jood-app-shell-view-category .jood-store-filter-search button .jood-svg-icon {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  position: absolute !important;
  top: 50% !important;
  inset-inline-start: 14px !important;
  z-index: 3 !important;
  color: var(--jood-final-navy) !important;
  transform: translateY(-50%) !important;
  pointer-events: none !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search input,
#jood-app.jood-app-shell-view-store .jood-store-filter-search input[type="search"],
#jood-app.jood-app-shell-view-category .jood-store-filter-search input,
#jood-app.jood-app-shell-view-category .jood-store-filter-search input[type="search"] {
  width: 100% !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  margin: 0 !important;
  padding-block: 0 !important;
  padding-inline-start: 42px !important;
  padding-inline-end: 14px !important;
  display: block !important;
  border: 0 !important;
  outline: 0 !important;
  border-radius: 16px !important;
  background: transparent !important;
  color: var(--jood-final-navy) !important;
  box-shadow: none !important;
  font-size: 12px !important;
  line-height: 44px !important;
  font-weight: 800 !important;
  text-align: right !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search input::placeholder,
#jood-app.jood-app-shell-view-category .jood-store-filter-search input::placeholder {
  color: rgba(10, 22, 37, .45) !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects {
  width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(118px, 1fr)) minmax(92px, .7fr) minmax(92px, .7fr) !important;
  align-items: end !important;
  gap: 9px !important;
  overflow: visible !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects label,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects label {
  width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  display: grid !important;
  grid-template-rows: 14px 44px !important;
  align-items: end !important;
  gap: 4px !important;
  overflow: visible !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects label > span,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects label > span {
  height: 14px !important;
  min-height: 14px !important;
  max-height: 14px !important;
  margin: 0 !important;
  padding: 0 6px !important;
  position: static !important;
  display: block !important;
  overflow: hidden !important;
  color: rgba(10, 22, 37, .72) !important;
  font-size: 10px !important;
  line-height: 14px !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects select,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects select {
  width: 100% !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  margin: 0 !important;
  padding-block: 0 !important;
  padding-inline-start: 14px !important;
  padding-inline-end: 32px !important;
  display: block !important;
  border: 1px solid var(--jood-final-border) !important;
  border-radius: 15px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-color: #ffffff !important;
  color: var(--jood-final-navy) !important;
  box-shadow: none !important;
  font-size: 11px !important;
  line-height: 44px !important;
  font-weight: 900 !important;
  text-align: center !important;
  outline: none !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects label::after,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects label::after {
  content: "" !important;
  width: 7px !important;
  height: 7px !important;
  margin: 0 !important;
  padding: 0 !important;
  position: absolute !important;
  inset-inline-end: 13px !important;
  bottom: 17px !important;
  z-index: 2 !important;
  border-inline-end: 2px solid var(--jood-final-navy) !important;
  border-block-end: 2px solid var(--jood-final-navy) !important;
  transform: rotate(45deg) !important;
  pointer-events: none !important;
  opacity: .9 !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects button,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects .button,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects .jood-btn,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="submit"],
#jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="reset"],
#jood-app.jood-app-shell-view-category .jood-store-filter-selects button,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects .button,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects .jood-btn,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="submit"],
#jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="reset"] {
  width: 100% !important;
  min-width: 0 !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  margin: 0 !important;
  padding: 0 12px !important;
  align-self: end !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 15px !important;
  box-shadow: none !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  text-align: center !important;
  white-space: nowrap !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects button[type="submit"],
#jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="submit"],
#jood-app.jood-app-shell-view-store .jood-store-filter-selects .jood-btn-primary,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects button[type="submit"],
#jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="submit"],
#jood-app.jood-app-shell-view-category .jood-store-filter-selects .jood-btn-primary {
  border: 1px solid var(--jood-final-navy) !important;
  background: var(--jood-final-navy) !important;
  color: #ffffff !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects button[type="reset"],
#jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="reset"],
#jood-app.jood-app-shell-view-store .jood-store-filter-selects .jood-btn-ghost,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects button[type="reset"],
#jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="reset"],
#jood-app.jood-app-shell-view-category .jood-store-filter-selects .jood-btn-ghost {
  border: 1px solid var(--jood-final-border) !important;
  background: #ffffff !important;
  color: var(--jood-final-navy) !important;
}

@media (max-width: 1200px) {
  #jood-app.jood-app-shell-view-store form.jood-store-filters,
  #jood-app.jood-app-shell-view-store .jood-store-filters,
  #jood-app.jood-app-shell-view-category form.jood-store-filters,
  #jood-app.jood-app-shell-view-category .jood-store-filters {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 767px) {
  #jood-app.jood-app-shell-view-store .jood-store-filter-shell,
  #jood-app.jood-app-shell-view-category .jood-store-filter-shell {
    padding: 10px !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    border-radius: 20px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-shell > .jood-svg-icon,
  #jood-app.jood-app-shell-view-category .jood-store-filter-shell > .jood-svg-icon {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-store form.jood-store-filters,
  #jood-app.jood-app-shell-view-store .jood-store-filters,
  #jood-app.jood-app-shell-view-category form.jood-store-filters,
  #jood-app.jood-app-shell-view-category .jood-store-filters {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-search,
  #jood-app.jood-app-shell-view-category .jood-store-filter-search {
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    border-radius: 15px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-search label,
  #jood-app.jood-app-shell-view-category .jood-store-filter-search label,
  #jood-app.jood-app-shell-view-store .jood-store-filter-search input,
  #jood-app.jood-app-shell-view-category .jood-store-filter-search input {
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    line-height: 40px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-search .jood-svg-icon,
  #jood-app.jood-app-shell-view-category .jood-store-filter-search .jood-svg-icon {
    inset-inline-start: 12px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects label,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects label {
    grid-template-rows: 40px !important;
    gap: 0 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects label > span,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects label > span {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects select,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects select {
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    padding-inline-start: 8px !important;
    padding-inline-end: 24px !important;
    border-radius: 13px !important;
    font-size: 10px !important;
    line-height: 40px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects label::after,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects label::after {
    inset-inline-end: 9px !important;
    bottom: 16px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects button,
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects .button,
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects .jood-btn,
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="submit"],
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="reset"],
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects button,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects .button,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects .jood-btn,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="submit"],
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="reset"] {
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    border-radius: 14px !important;
    font-size: 11px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects button[type="submit"],
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="submit"],
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects .jood-btn-primary,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects button[type="submit"],
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="submit"],
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects .jood-btn-primary {
    grid-column: 1 / span 2 !important;
  }
}

/* =========================================================
   99.15 JOOD FILTER SEARCH ICON POSITION FIX
   Focused fix only: keep the magnifier inside the search box.
========================================================= */

#jood-app.jood-app-shell-view-store .jood-store-filter-search,
#jood-app.jood-app-shell-view-category .jood-store-filter-search {
  position: relative !important;
  overflow: hidden !important;
  direction: rtl !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search input,
#jood-app.jood-app-shell-view-store .jood-store-filter-search input[type="search"],
#jood-app.jood-app-shell-view-category .jood-store-filter-search input,
#jood-app.jood-app-shell-view-category .jood-store-filter-search input[type="search"] {
  width: 100% !important;
  padding-right: 46px !important;
  padding-left: 14px !important;
  padding-inline-start: 46px !important;
  padding-inline-end: 14px !important;
  text-align: right !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search > .jood-svg-icon,
#jood-app.jood-app-shell-view-store .jood-store-filter-search label > .jood-svg-icon,
#jood-app.jood-app-shell-view-store .jood-store-filter-search .jood-search-icon,
#jood-app.jood-app-shell-view-store .jood-store-filter-search .jood-store-search-icon,
#jood-app.jood-app-shell-view-store .jood-store-filter-search .jood-store-filter-search__icon,
#jood-app.jood-app-shell-view-category .jood-store-filter-search > .jood-svg-icon,
#jood-app.jood-app-shell-view-category .jood-store-filter-search label > .jood-svg-icon,
#jood-app.jood-app-shell-view-category .jood-store-filter-search .jood-search-icon,
#jood-app.jood-app-shell-view-category .jood-store-filter-search .jood-store-search-icon,
#jood-app.jood-app-shell-view-category .jood-store-filter-search .jood-store-filter-search__icon {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  position: absolute !important;
  top: 50% !important;
  right: 16px !important;
  left: auto !important;
  inset-inline-start: 16px !important;
  inset-inline-end: auto !important;
  z-index: 4 !important;
  transform: translateY(-50%) !important;
  color: #2B170F !important;
  pointer-events: none !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search button,
#jood-app.jood-app-shell-view-category .jood-store-filter-search button {
  position: static !important;
  transform: none !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search button .jood-svg-icon,
#jood-app.jood-app-shell-view-category .jood-store-filter-search button .jood-svg-icon {
  position: static !important;
  inset: auto !important;
  margin: 0 !important;
  transform: none !important;
  pointer-events: auto !important;
}

@media (max-width: 782px) {
  #jood-app.jood-app-shell-view-store .jood-store-filter-search input,
  #jood-app.jood-app-shell-view-store .jood-store-filter-search input[type="search"],
  #jood-app.jood-app-shell-view-category .jood-store-filter-search input,
  #jood-app.jood-app-shell-view-category .jood-store-filter-search input[type="search"] {
    padding-right: 42px !important;
    padding-left: 12px !important;
    padding-inline-start: 42px !important;
    padding-inline-end: 12px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-search > .jood-svg-icon,
  #jood-app.jood-app-shell-view-store .jood-store-filter-search label > .jood-svg-icon,
  #jood-app.jood-app-shell-view-store .jood-store-filter-search .jood-search-icon,
  #jood-app.jood-app-shell-view-store .jood-store-filter-search .jood-store-search-icon,
  #jood-app.jood-app-shell-view-store .jood-store-filter-search .jood-store-filter-search__icon,
  #jood-app.jood-app-shell-view-category .jood-store-filter-search > .jood-svg-icon,
  #jood-app.jood-app-shell-view-category .jood-store-filter-search label > .jood-svg-icon,
  #jood-app.jood-app-shell-view-category .jood-store-filter-search .jood-search-icon,
  #jood-app.jood-app-shell-view-category .jood-store-filter-search .jood-store-search-icon,
  #jood-app.jood-app-shell-view-category .jood-store-filter-search .jood-store-filter-search__icon {
    right: 14px !important;
    left: auto !important;
    inset-inline-start: 14px !important;
    inset-inline-end: auto !important;
  }
}

/* =========================================================
   99.16 JOOD FILTER ALIGNMENT FIX
   Focused fix only: stop search box from sliding under reset/apply.
========================================================= */

#jood-app.jood-app-shell-view-store .jood-store-filter-shell,
#jood-app.jood-app-shell-view-category .jood-store-filter-shell {
  overflow: visible !important;
}

#jood-app.jood-app-shell-view-store form.jood-store-filters,
#jood-app.jood-app-shell-view-store .jood-store-filters,
#jood-app.jood-app-shell-view-category form.jood-store-filters,
#jood-app.jood-app-shell-view-category .jood-store-filters {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 10px !important;
  direction: ltr !important;
  overflow: visible !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search,
#jood-app.jood-app-shell-view-category .jood-store-filter-search {
  flex: 1 1 auto !important;
  width: auto !important;
  min-width: 360px !important;
  max-width: none !important;
  height: 46px !important;
  min-height: 46px !important;
  max-height: 46px !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  align-self: flex-end !important;
  direction: rtl !important;
  overflow: hidden !important;
  border: 1px solid rgba(214, 183, 136, .72) !important;
  border-radius: 17px !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search input,
#jood-app.jood-app-shell-view-store .jood-store-filter-search input[type="search"],
#jood-app.jood-app-shell-view-category .jood-store-filter-search input,
#jood-app.jood-app-shell-view-category .jood-store-filter-search input[type="search"] {
  flex: 1 1 auto !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  margin: 0 !important;
  padding: 0 46px 0 14px !important;
  display: block !important;
  border: 0 !important;
  outline: 0 !important;
  border-radius: 16px !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #2B170F !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 44px !important;
  text-align: right !important;
  transform: none !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-search > .jood-svg-icon,
#jood-app.jood-app-shell-view-store .jood-store-filter-search label > .jood-svg-icon,
#jood-app.jood-app-shell-view-store .jood-store-filter-search .jood-search-icon,
#jood-app.jood-app-shell-view-store .jood-store-filter-search .jood-store-search-icon,
#jood-app.jood-app-shell-view-store .jood-store-filter-search .jood-store-filter-search__icon,
#jood-app.jood-app-shell-view-category .jood-store-filter-search > .jood-svg-icon,
#jood-app.jood-app-shell-view-category .jood-store-filter-search label > .jood-svg-icon,
#jood-app.jood-app-shell-view-category .jood-store-filter-search .jood-search-icon,
#jood-app.jood-app-shell-view-category .jood-store-filter-search .jood-store-search-icon,
#jood-app.jood-app-shell-view-category .jood-store-filter-search .jood-store-filter-search__icon {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  position: absolute !important;
  top: 50% !important;
  right: 16px !important;
  left: auto !important;
  inset-inline-start: auto !important;
  inset-inline-end: 16px !important;
  z-index: 5 !important;
  color: #2B170F !important;
  transform: translateY(-50%) !important;
  pointer-events: none !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, 132px) 116px 104px !important;
  align-items: end !important;
  gap: 9px !important;
  direction: rtl !important;
  overflow: visible !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects label,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects label {
  width: 100% !important;
  height: 62px !important;
  min-height: 62px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-rows: 14px 46px !important;
  align-items: end !important;
  gap: 2px !important;
  position: relative !important;
  overflow: visible !important;
}

#jood-app.jood-app-shell-view-store .jood-store-filter-selects select,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects select,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects button,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects .button,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects .jood-btn,
#jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="submit"],
#jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="reset"],
#jood-app.jood-app-shell-view-category .jood-store-filter-selects button,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects .button,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects .jood-btn,
#jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="submit"],
#jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="reset"] {
  height: 46px !important;
  min-height: 46px !important;
  max-height: 46px !important;
  margin: 0 !important;
  align-self: end !important;
}

@media (max-width: 1180px) {
  #jood-app.jood-app-shell-view-store form.jood-store-filters,
  #jood-app.jood-app-shell-view-store .jood-store-filters,
  #jood-app.jood-app-shell-view-category form.jood-store-filters,
  #jood-app.jood-app-shell-view-category .jood-store-filters {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 9px !important;
    direction: rtl !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-search,
  #jood-app.jood-app-shell-view-category .jood-store-filter-search {
    width: 100% !important;
    min-width: 0 !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects {
    width: 100% !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(110px, .85fr) minmax(95px, .75fr) !important;
  }
}

@media (max-width: 767px) {
  #jood-app.jood-app-shell-view-store .jood-store-filter-search,
  #jood-app.jood-app-shell-view-category .jood-store-filter-search {
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    border-radius: 15px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-search input,
  #jood-app.jood-app-shell-view-store .jood-store-filter-search input[type="search"],
  #jood-app.jood-app-shell-view-category .jood-store-filter-search input,
  #jood-app.jood-app-shell-view-category .jood-store-filter-search input[type="search"] {
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    padding: 0 42px 0 12px !important;
    line-height: 40px !important;
    font-size: 11px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-search > .jood-svg-icon,
  #jood-app.jood-app-shell-view-store .jood-store-filter-search label > .jood-svg-icon,
  #jood-app.jood-app-shell-view-store .jood-store-filter-search .jood-search-icon,
  #jood-app.jood-app-shell-view-store .jood-store-filter-search .jood-store-search-icon,
  #jood-app.jood-app-shell-view-store .jood-store-filter-search .jood-store-filter-search__icon,
  #jood-app.jood-app-shell-view-category .jood-store-filter-search > .jood-svg-icon,
  #jood-app.jood-app-shell-view-category .jood-store-filter-search label > .jood-svg-icon,
  #jood-app.jood-app-shell-view-category .jood-store-filter-search .jood-search-icon,
  #jood-app.jood-app-shell-view-category .jood-store-filter-search .jood-store-search-icon,
  #jood-app.jood-app-shell-view-category .jood-store-filter-search .jood-store-filter-search__icon {
    right: 14px !important;
    inset-inline-end: 14px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects label,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects label {
    height: 40px !important;
    min-height: 40px !important;
    grid-template-rows: 40px !important;
  }

  #jood-app.jood-app-shell-view-store .jood-store-filter-selects button[type="submit"],
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects input[type="submit"],
  #jood-app.jood-app-shell-view-store .jood-store-filter-selects .jood-btn-primary,
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects button[type="submit"],
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects input[type="submit"],
  #jood-app.jood-app-shell-view-category .jood-store-filter-selects .jood-btn-primary {
    grid-column: span 2 !important;
  }
}

/* =========================================================
   99.40 JOOD FINAL POLISH — CATEGORY / CART / CHECKOUT
   Scope: compact category hero, white cart price, navy checkout focus.
   Added safely at the end to avoid touching working filter/search rules.
========================================================= */

/* CATEGORY HERO: compact premium app-style block */
#jood-app.jood-app-shell-view-category .jood-category-hero {
  min-height: 118px !important;
  padding: clamp(12px, 1.35vw, 18px) clamp(14px, 2vw, 24px) !important;
  grid-template-columns: minmax(0, 1fr) minmax(132px, 235px) !important;
  gap: clamp(10px, 1.5vw, 18px) !important;
  border-radius: 24px !important;
  background:
    linear-gradient(90deg, rgba(214,181,109,.10), transparent 22%, transparent 76%, rgba(214,181,109,.08)),
    linear-gradient(135deg, #2B170F 0%, #2B170F 58%, #2B170F 100%) !important;
  box-shadow: 0 14px 32px rgba(10,22,37,.14), inset 0 1px 0 rgba(255,255,255,.10) !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__content {
  gap: 5px !important;
}

#jood-app.jood-app-shell-view-category .jood-breadcrumbs,
#jood-app.jood-app-shell-view-category .jood-category-hero .jood-eyebrow {
  min-height: 21px !important;
  padding: 3px 9px !important;
  font-size: 9.5px !important;
  border-color: rgba(214,181,109,.38) !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero h2 {
  font-size: clamp(25px, 2.8vw, 40px) !important;
  line-height: 1.03 !important;
  letter-spacing: -.85px !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero p,
#jood-app.jood-app-shell-view-category .jood-category-hero__description,
#jood-app.jood-app-shell-view-category .jood-category-hero__description p {
  width: min(520px, 100%) !important;
  font-size: clamp(10.5px, .82vw, 12px) !important;
  line-height: 1.45 !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__actions {
  margin-top: 3px !important;
  gap: 7px !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__actions .jood-btn {
  min-height: 34px !important;
  padding: 7px 13px !important;
  border-radius: 13px !important;
  font-size: 10px !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__stats {
  width: min(380px, 100%) !important;
  margin-top: 6px !important;
  gap: 7px !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__stats div {
  min-height: 44px !important;
  padding: 6px 8px !important;
  grid-template-columns: 22px minmax(0, 1fr) !important;
  border-radius: 14px !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__stats .jood-svg-icon {
  width: 22px !important;
  height: 22px !important;
  padding: 4px !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__stats strong {
  font-size: 14px !important;
  line-height: 1.1 !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__stats span {
  font-size: 9.5px !important;
  line-height: 1.2 !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__visual,
#jood-app.jood-app-shell-view-category .jood-category-hero__image,
#jood-app.jood-app-shell-view-category .jood-category-hero__abstract {
  min-height: 112px !important;
  height: 112px !important;
  border-radius: 18px !important;
}

#jood-app.jood-app-shell-view-category .jood-category-hero__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

/* CART HERO PRICE: white price on dark area */
#jood-app.jood-app-shell-view-cart .jood-cart-hero__summary strong,
#jood-app.jood-app-shell-view-cart .jood-cart-hero__summary strong .amount,
#jood-app.jood-app-shell-view-cart .jood-cart-hero__summary .amount,
#jood-app.jood-app-shell-view-cart .jood-cart-hero__summary bdi,
#jood-app.jood-app-shell-view-cart .jood-cart-hero__summary .woocommerce-Price-amount,
#jood-app.jood-app-shell-view-cart .jood-cart-hero__summary .woocommerce-Price-currencySymbol {
  color: #FFFFFF !important;
  opacity: 1 !important;
  text-shadow: 0 10px 22px rgba(0,0,0,.20) !important;
}

#jood-app.jood-app-shell-view-cart .jood-cart-hero__summary > span,
#jood-app.jood-app-shell-view-cart .jood-cart-hero__summary small {
  color: rgba(255,255,255,.86) !important;
}

/* CHECKOUT: make navy the main color instead of gold dominance */
#jood-app .jood-checkout-page {
  --jood-checkout-main: #2B170F;
  --jood-checkout-main-2: #2B170F;
  --jood-checkout-gold-soft: rgba(214,181,109,.18);
}

#jood-app .jood-checkout-hero {
  min-height: 152px !important;
  padding: clamp(18px, 2.2vw, 30px) !important;
  border-radius: 28px !important;
  border: 1px solid rgba(10,22,37,.20) !important;
  background:
    linear-gradient(90deg, rgba(214,181,109,.08), transparent 36%, rgba(10,22,37,.05)),
    linear-gradient(135deg, #FFFFFF 0%, #FFFFFF 55%, #fbfaf7 100%) !important;
  box-shadow: 0 18px 44px rgba(10,22,37,.075) !important;
}

#jood-app .jood-checkout-hero::before {
  border-color: rgba(214,181,109,.22) !important;
}

#jood-app .jood-checkout-hero h2 {
  color: #2B170F !important;
  font-size: clamp(28px, 3.1vw, 44px) !important;
  line-height: 1.08 !important;
  margin: 6px 0 8px !important;
}

#jood-app .jood-checkout-hero p {
  color: #4b5565 !important;
  opacity: 1 !important;
  font-size: clamp(12px, 1vw, 14px) !important;
  line-height: 1.7 !important;
}

#jood-app .jood-checkout-hero .jood-eyebrow {
  color: #9b7b3d !important;
  background: rgba(214,181,109,.11) !important;
  border-color: rgba(214,181,109,.34) !important;
}

#jood-app .jood-checkout-hero__summary {
  min-height: 112px !important;
  padding: 16px !important;
  border-radius: 22px !important;
  border: 1px solid rgba(10,22,37,.12) !important;
  background: linear-gradient(135deg, #2B170F 0%, #2B170F 100%) !important;
  box-shadow: 0 16px 34px rgba(10,22,37,.16), inset 0 1px 0 rgba(255,255,255,.10) !important;
}

#jood-app .jood-checkout-hero__summary span,
#jood-app .jood-checkout-hero__summary small,
#jood-app .jood-checkout-hero__summary strong,
#jood-app .jood-checkout-hero__summary .amount,
#jood-app .jood-checkout-hero__summary bdi {
  color: #FFFFFF !important;
}

#jood-app .jood-checkout-steps {
  margin-top: 14px !important;
  gap: 8px !important;
}

#jood-app .jood-checkout-steps > div {
  min-height: 42px !important;
  border-radius: 16px !important;
  background: #FFFFFF !important;
  border: 1px solid rgba(214,181,109,.34) !important;
  color: #2B170F !important;
  box-shadow: 0 7px 18px rgba(10,22,37,.045) !important;
}

#jood-app .jood-checkout-steps > div.is-active,
#jood-app .jood-checkout-steps > div.is-done {
  background: #2B170F !important;
  border-color: #2B170F !important;
  color: #FFFFFF !important;
}

#jood-app .jood-checkout-steps > div.is-active strong,
#jood-app .jood-checkout-steps > div.is-done strong,
#jood-app .jood-checkout-steps > div.is-active span,
#jood-app .jood-checkout-steps > div.is-done span {
  color: #FFFFFF !important;
}

#jood-app .jood-checkout-steps strong {
  color: inherit !important;
}

#jood-app .jood-checkout-steps span {
  background: rgba(10,22,37,.08) !important;
  color: #2B170F !important;
}

#jood-app .jood-checkout-card,
#jood-app .jood-checkout-review-card,
#jood-app .jood-checkout-trust-card {
  border-color: rgba(214,181,109,.30) !important;
  background: #FFFFFF !important;
  box-shadow: 0 16px 38px rgba(10,22,37,.06) !important;
}

#jood-app .jood-checkout-card__head h3,
#jood-app .jood-checkout-review-card h3,
#jood-app .jood-checkout-trust-card h3 {
  color: #2B170F !important;
}

#jood-app .jood-checkout-card__head > .jood-svg-icon,
#jood-app .jood-checkout-review-card .jood-svg-icon,
#jood-app .jood-checkout-trust-card .jood-svg-icon {
  color: #2B170F !important;
}

#jood-app .jood-checkout-button,
#jood-app .jood-place-order-button,
#jood-app #place_order,
#jood-app .woocommerce-checkout-payment button[type="submit"] {
  background: #2B170F !important;
  border-color: #2B170F !important;
  color: #FFFFFF !important;
  box-shadow: 0 14px 30px rgba(10,22,37,.16) !important;
}

#jood-app .jood-checkout-button:hover,
#jood-app .jood-place-order-button:hover,
#jood-app #place_order:hover,
#jood-app .woocommerce-checkout-payment button[type="submit"]:hover {
  background: #2B170F !important;
  border-color: #2B170F !important;
}

/* Responsive safety */
@media (max-width: 900px) {
  #jood-app.jood-app-shell-view-category .jood-category-hero {
    min-height: auto !important;
    grid-template-columns: minmax(0, 1fr) !important;
    padding: 14px !important;
    border-radius: 22px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-hero__visual,
  #jood-app.jood-app-shell-view-category .jood-category-hero__image,
  #jood-app.jood-app-shell-view-category .jood-category-hero__abstract {
    display: none !important;
  }

  #jood-app .jood-checkout-hero {
    grid-template-columns: minmax(0,1fr) !important;
    min-height: auto !important;
    padding: 16px !important;
  }
}

@media (max-width: 560px) {
  #jood-app.jood-app-shell-view-category .jood-category-hero h2 {
    font-size: 27px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-hero__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-hero__stats div {
    min-height: 40px !important;
    padding: 5px 6px !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
  }

  #jood-app.jood-app-shell-view-category .jood-category-hero__stats .jood-svg-icon {
    display: none !important;
  }

  #jood-app .jood-checkout-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  #jood-app .jood-checkout-steps > div {
    min-height: 38px !important;
    padding: 7px 6px !important;
    gap: 5px !important;
    border-radius: 14px !important;
  }

  #jood-app .jood-checkout-steps strong {
    font-size: 10px !important;
  }

  #jood-app .jood-checkout-steps span {
    width: 22px !important;
    height: 22px !important;
    font-size: 10px !important;
  }
}

/* =========================================================
   99.30 JOOD DELIVERY SLOTS MODULE - CHECKOUT
   Safe module styles. Active only when delivery module is enabled and rendered.
========================================================= */

#jood-app .jood-delivery-slots-card {
  border-color: rgba(10, 22, 37, .14);
  background:
    radial-gradient(circle at 10% 0%, rgba(214, 185, 129, .12), transparent 34%),
    #ffffff;
}

#jood-app .jood-delivery-slots-note {
  margin: -4px 0 14px;
  color: #566173;
  font-size: 13px;
  line-height: 1.85;
  font-weight: 700;
}

#jood-app .jood-delivery-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

#jood-app .jood-delivery-method {
  min-width: 0;
  min-height: 74px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(214, 185, 129, .55);
  border-radius: 18px;
  background: #ffffff;
  color: #2B170F;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(10, 22, 37, .045);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background-color .2s ease;
}

#jood-app .jood-delivery-method:hover {
  transform: translateY(-1px);
  border-color: rgba(10, 22, 37, .22);
  box-shadow: 0 12px 30px rgba(10, 22, 37, .075);
}

#jood-app .jood-delivery-method input {
  width: 18px;
  height: 18px;
  accent-color: #2B170F;
  flex: 0 0 auto;
}

#jood-app .jood-delivery-method:has(input:checked) {
  background: #2B170F;
  border-color: #2B170F;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(10, 22, 37, .16);
}

#jood-app .jood-delivery-method span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

#jood-app .jood-delivery-method strong {
  color: inherit;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 900;
}

#jood-app .jood-delivery-method small {
  color: inherit;
  opacity: .72;
  font-size: 11px;
  line-height: 1.55;
  font-weight: 700;
}

#jood-app .jood-delivery-slots-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, .9fr);
  gap: 10px;
}

#jood-app .jood-delivery-slots-grid label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

#jood-app .jood-delivery-slots-grid label > span {
  color: #2B170F;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 900;
}

#jood-app .jood-delivery-slots-grid select,
#jood-app .jood-delivery-slots-grid input[type="time"] {
  width: 100%;
  min-height: 48px;
  padding: 9px 13px;
  border: 1px solid rgba(214, 185, 129, .58);
  border-radius: 16px;
  background: #fff;
  color: #2B170F;
  font-size: 13px;
  font-weight: 800;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

#jood-app .jood-delivery-slots-grid select:focus,
#jood-app .jood-delivery-slots-grid input[type="time"]:focus {
  border-color: rgba(10, 22, 37, .38);
  box-shadow: 0 0 0 4px rgba(214, 185, 129, .16);
}

#jood-app .jood-delivery-slots-alert {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(184, 64, 52, .22);
  background: #fff0ee;
  color: #9d342a;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 900;
}

@media (max-width: 900px) {
  #jood-app .jood-delivery-slots-grid {
    grid-template-columns: 1fr 1fr;
  }

  #jood-app .jood-delivery-exact-time {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  #jood-app .jood-delivery-methods,
  #jood-app .jood-delivery-slots-grid {
    grid-template-columns: 1fr;
  }

  #jood-app .jood-delivery-method {
    min-height: 62px;
    padding: 10px 12px;
    border-radius: 15px;
  }

  #jood-app .jood-delivery-slots-grid select,
  #jood-app .jood-delivery-slots-grid input[type="time"] {
    min-height: 45px;
    border-radius: 14px;
  }
}

/* =========================================================
   99.99 JOOD CHECKOUT DELIVERY POLISH - V4.2.3
   Final safe overrides for checkout layout + delivery/pickup card.
========================================================= */

#jood-app.jood-app-shell-view-checkout {
  --jood-checkout-navy: #2B170F;
  --jood-checkout-gold-soft: #ead7b2;
  --jood-checkout-gold: #D7B179;
  --jood-checkout-border: rgba(214, 185, 129, .42);
  --jood-checkout-bg: #ffffff;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .88fr) !important;
  gap: 18px !important;
  align-items: start !important;
  width: 100% !important;
  max-width: 100% !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-main,
#jood-app.jood-app-shell-view-checkout .jood-checkout-side {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card {
  background: #ffffff !important;
  border: 1px solid var(--jood-checkout-border) !important;
  border-radius: 22px !important;
  box-shadow: 0 14px 36px rgba(10, 22, 37, .055) !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card__head {
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 14px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(214, 185, 129, .18) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card__head h3 {
  color: var(--jood-checkout-navy) !important;
  font-weight: 950 !important;
  letter-spacing: -.35px !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card__head > .jood-svg-icon,
#jood-app.jood-app-shell-view-checkout .jood-checkout-icon {
  background: rgba(214, 185, 129, .10) !important;
  border: 1px solid rgba(214, 185, 129, .38) !important;
  color: var(--jood-checkout-navy) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-slots-card {
  padding: 20px !important;
  background:
    radial-gradient(circle at 0% 0%, rgba(214, 185, 129, .09), transparent 34%),
    #ffffff !important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-slots-note {
  margin: 0 0 14px !important;
  color: #6B3E25 !important;
  font-size: 13px !important;
  line-height: 1.8 !important;
  font-weight: 800 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-methods {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin: 0 0 14px !important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-method {
  position: relative !important;
  min-width: 0 !important;
  min-height: 68px !important;
  padding: 13px 50px 13px 16px !important;
  display: grid !important;
  align-items: center !important;
  border: 1px solid rgba(214, 185, 129, .48) !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  color: var(--jood-checkout-navy) !important;
  box-shadow: 0 8px 22px rgba(10, 22, 37, .04) !important;
  transform: none !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-method input[type="radio"] {
  position: absolute !important;
  inset-inline-start: auto !important;
  inset-inline-end: 16px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  margin: 0 !important;
  accent-color: var(--jood-checkout-navy) !important;
  opacity: 1 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-method span {
  display: grid !important;
  gap: 3px !important;
  min-width: 0 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-method strong {
  color: inherit !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-method small {
  color: inherit !important;
  opacity: .72 !important;
  font-size: 11px !important;
  line-height: 1.55 !important;
  font-weight: 750 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-method:has(input:checked) {
  background: linear-gradient(135deg, #2B170F, #10243b) !important;
  border-color: #2B170F !important;
  color: #ffffff !important;
  box-shadow: 0 14px 32px rgba(10, 22, 37, .16) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-method:has(input:checked) input[type="radio"] {
  accent-color: #ffffff !important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-slots-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-top: 2px !important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-slots-grid label {
  min-width: 0 !important;
  display: grid !important;
  gap: 7px !important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-slots-grid label > span {
  color: var(--jood-checkout-navy) !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
  font-weight: 950 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-slots-grid select,
#jood-app.jood-app-shell-view-checkout .jood-delivery-slots-grid input[type="time"] {
  width: 100% !important;
  min-height: 48px !important;
  height: 48px !important;
  padding: 8px 13px !important;
  border: 1px solid rgba(214, 185, 129, .52) !important;
  border-radius: 15px !important;
  background: #ffffff !important;
  color: var(--jood-checkout-navy) !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-slots-alert {
  margin-top: 12px !important;
  padding: 12px 14px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(184, 64, 52, .20) !important;
  background: #fff2f0 !important;
  color: #a2382f !important;
  font-size: 13px !important;
  line-height: 1.8 !important;
  font-weight: 900 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-form input,
#jood-app.jood-app-shell-view-checkout .jood-checkout-form select,
#jood-app.jood-app-shell-view-checkout .jood-checkout-form textarea {
  border-color: rgba(214, 185, 129, .42) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-form input:focus,
#jood-app.jood-app-shell-view-checkout .jood-checkout-form select:focus,
#jood-app.jood-app-shell-view-checkout .jood-checkout-form textarea:focus {
  border-color: rgba(10, 22, 37, .44) !important;
  box-shadow: 0 0 0 4px rgba(214, 185, 129, .15) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-submit,
#jood-app.jood-app-shell-view-checkout button[name="jood_place_order"],
#jood-app.jood-app-shell-view-checkout .jood-btn-primary {
  background: linear-gradient(135deg, #2B170F, #122942) !important;
  border-color: #2B170F !important;
  color: #ffffff !important;
}

@media (max-width: 1100px) {
  #jood-app.jood-app-shell-view-checkout .jood-checkout-layout {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-side {
    position: static !important;
  }
}

@media (max-width: 720px) {
  #jood-app.jood-app-shell-view-checkout .jood-checkout-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card,
  #jood-app.jood-app-shell-view-checkout .jood-delivery-slots-card {
    padding: 13px !important;
    border-radius: 18px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-delivery-methods {
    grid-template-columns: 1fr !important;
    gap: 9px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-delivery-method {
    min-height: 58px !important;
    padding: 10px 46px 10px 12px !important;
    border-radius: 15px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-delivery-slots-grid {
    grid-template-columns: 1fr !important;
    gap: 9px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-delivery-slots-grid select,
  #jood-app.jood-app-shell-view-checkout .jood-delivery-slots-grid input[type="time"] {
    min-height: 44px !important;
    height: 44px !important;
    border-radius: 13px !important;
  }
}

/* =========================================================
   JOOD MODULE 03 — BRANCHES + DELIVERY ZONES
   Checkout-safe styling. Navy #2B170F + clean white + light gold.
========================================================= */
#jood-app.jood-app-shell-view-checkout .jood-branches-zones-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 185, 129, .34);
  background:
    radial-gradient(circle at 0 0, rgba(214,185,129,.10), transparent 34%),
    #fff;
  box-shadow: 0 16px 42px rgba(10,22,37,.055);
}

#jood-app.jood-app-shell-view-checkout .jood-branches-zones-card::before {
  content: "";
  position: absolute;
  inset-inline-start: 28px;
  inset-block-start: 0;
  width: 92px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #2B170F, rgba(214,185,129,.78));
  pointer-events: none;
}

#jood-app.jood-app-shell-view-checkout .jood-branches-zones-note {
  margin: -4px 0 16px;
  color: rgba(10,22,37,.68);
  font-size: 13px;
  line-height: 1.85;
  font-weight: 800;
}

#jood-app.jood-app-shell-view-checkout .jood-branches-zones-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

#jood-app.jood-app-shell-view-checkout .jood-bz-field {
  min-width: 0;
  min-height: 104px;
  display: grid;
  gap: 8px;
  padding: 13px 14px;
  border: 1px solid rgba(214,185,129,.38);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, rgba(250,247,241,.74));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 8px 22px rgba(10,22,37,.035);
}

#jood-app.jood-app-shell-view-checkout .jood-bz-field > span {
  color: #2B170F;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 950;
}

#jood-app.jood-app-shell-view-checkout .jood-bz-field select {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(214,185,129,.56);
  border-radius: 15px;
  background: #fff;
  color: #2B170F;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(10,22,37,.035);
  outline: none;
}

#jood-app.jood-app-shell-view-checkout .jood-bz-field select:focus {
  border-color: rgba(10,22,37,.48);
  box-shadow: 0 0 0 4px rgba(10,22,37,.08), 0 8px 18px rgba(10,22,37,.04);
}

#jood-app.jood-app-shell-view-checkout .jood-bz-field small {
  display: block;
  color: rgba(10,22,37,.56);
  font-size: 11px;
  line-height: 1.65;
  font-weight: 750;
}

#jood-app.jood-app-shell-view-checkout .jood-branches-zones-summary {
  margin-top: 13px;
  min-height: 54px;
  padding: 12px 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  border-radius: 18px;
  background: #2B170F;
  color: rgba(255,255,255,.82);
  box-shadow: 0 14px 34px rgba(10,22,37,.15);
}

#jood-app.jood-app-shell-view-checkout .jood-branches-zones-summary strong,
#jood-app.jood-app-shell-view-checkout .jood-branches-zones-summary b {
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

#jood-app.jood-app-shell-view-checkout .jood-branches-zones-summary em,
#jood-app.jood-app-shell-view-checkout .jood-branches-zones-summary small,
#jood-app.jood-app-shell-view-checkout .jood-branches-zones-summary span {
  color: rgba(255,255,255,.74);
  font-size: 11px;
  line-height: 1.7;
  font-style: normal;
  font-weight: 800;
}

#jood-app.jood-app-shell-view-checkout .jood-branches-zones-alert {
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid rgba(184,64,52,.22);
  background: #fff0ee;
  color: #b84034;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.8;
}

@media (max-width: 980px) {
  #jood-app.jood-app-shell-view-checkout .jood-branches-zones-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 782px) {
  #jood-app.jood-app-shell-view-checkout .jood-branches-zones-card {
    border-radius: 18px;
  }

  #jood-app.jood-app-shell-view-checkout .jood-branches-zones-note {
    margin-bottom: 12px;
    font-size: 12px;
  }

  #jood-app.jood-app-shell-view-checkout .jood-bz-field {
    min-height: 88px;
    padding: 11px 12px;
    border-radius: 16px;
    gap: 7px;
  }

  #jood-app.jood-app-shell-view-checkout .jood-bz-field select {
    min-height: 46px;
    border-radius: 14px;
    font-size: 12px;
  }

  #jood-app.jood-app-shell-view-checkout .jood-branches-zones-summary {
    min-height: 48px;
    padding: 10px 12px;
    border-radius: 16px;
  }
}

/* =========================================================
   99.99 JOOD CHECKOUT WIZARD REBUILD - v4.2.5
   Safe final override for staged checkout only.
========================================================= */
#jood-app.jood-app-shell-view-checkout{
  --jood-checkout-navy:#2B170F;
  --jood-checkout-navy-2:#0f2238;
  --jood-checkout-gold:#d9bb75;
  --jood-checkout-gold-soft:#fbf5e8;
  --jood-checkout-border:#eadcc5;
  --jood-checkout-soft:#FFF8EF;
  --jood-checkout-shadow:0 18px 45px rgba(10,22,37,.075);
  background:#FFF8EF!important;
}

#jood-app.jood-app-shell-view-checkout .jood-app-main{
  width:min(1180px,calc(100% - 28px))!important;
  padding-top:10px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-page,
#jood-app.jood-app-shell-view-checkout .jood-checkout-form{
  width:100%!important;
  max-width:100%!important;
  min-width:0!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) 260px!important;
  gap:14px!important;
  align-items:center!important;
  padding:18px!important;
  margin:0 0 14px!important;
  border:1px solid var(--jood-checkout-border)!important;
  border-radius:24px!important;
  background:linear-gradient(135deg,#ffffff 0%,#FFF8EF 100%)!important;
  box-shadow:var(--jood-checkout-shadow)!important;
  min-height:0!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero__content h2{
  color:var(--jood-checkout-navy)!important;
  font-size:clamp(24px,3vw,36px)!important;
  line-height:1.18!important;
  margin:4px 0 6px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero__content p{
  color:#7B6758!important;
  font-size:13px!important;
  line-height:1.7!important;
  margin:0 0 12px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary{
  min-height:92px!important;
  padding:14px!important;
  border-radius:20px!important;
  border:1px solid rgba(10,22,37,.12)!important;
  background:var(--jood-checkout-navy)!important;
  color:#fff!important;
  box-shadow:0 14px 34px rgba(10,22,37,.18)!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary *{
  color:inherit!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-steps{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:8px!important;
  margin-top:8px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div{
  min-height:38px!important;
  padding:7px 8px!important;
  border-radius:999px!important;
  background:#fff!important;
  border:1px solid var(--jood-checkout-border)!important;
  color:var(--jood-checkout-navy)!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:7px!important;
  box-shadow:none!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div.is-active,
#jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div.is-done{
  background:var(--jood-checkout-navy)!important;
  color:#fff!important;
  border-color:var(--jood-checkout-navy)!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div span{
  width:22px!important;
  height:22px!important;
  min-width:22px!important;
  border-radius:50%!important;
  display:grid!important;
  place-items:center!important;
  background:rgba(217,187,117,.24)!important;
  color:inherit!important;
  font-size:11px!important;
  font-weight:900!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div strong{
  font-size:12px!important;
  line-height:1.2!important;
  font-weight:900!important;
  color:inherit!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip{
  margin:0 0 14px!important;
  padding:12px 14px!important;
  border-radius:18px!important;
  border:1px solid rgba(10,22,37,.08)!important;
  background:var(--jood-checkout-navy)!important;
  color:#fff!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:12px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip *{color:inherit!important;}
#jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip a{background:#fff!important;color:var(--jood-checkout-navy)!important;border-radius:999px!important;padding:7px 12px!important;font-weight:900!important;}

#jood-app.jood-app-shell-view-checkout .jood-checkout-layout{
  width:100%!important;
  max-width:100%!important;
  display:grid!important;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr)!important;
  gap:16px!important;
  align-items:start!important;
  direction:rtl!important;
  margin:0!important;
  padding:0!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-main,
#jood-app.jood-app-shell-view-checkout .jood-checkout-side{
  width:100%!important;
  max-width:100%!important;
  min-width:0!important;
  display:block!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-side{
  position:sticky!important;
  top:14px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:8px!important;
  margin:0 0 12px!important;
  padding:8px!important;
  border-radius:20px!important;
  background:#fff!important;
  border:1px solid var(--jood-checkout-border)!important;
  box-shadow:0 10px 28px rgba(10,22,37,.055)!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button{
  height:42px!important;
  border-radius:15px!important;
  border:1px solid var(--jood-checkout-border)!important;
  background:#FFF8EF!important;
  color:var(--jood-checkout-navy)!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:7px!important;
  font-size:12px!important;
  font-weight:900!important;
  box-shadow:none!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button span{
  width:22px!important;
  height:22px!important;
  border-radius:50%!important;
  display:grid!important;
  place-items:center!important;
  background:rgba(10,22,37,.08)!important;
  color:inherit!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button.is-active,
#jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button.is-done{
  background:var(--jood-checkout-navy)!important;
  border-color:var(--jood-checkout-navy)!important;
  color:#fff!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-stage{
  display:none!important;
  min-width:0!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-stage.is-active{
  display:grid!important;
  gap:12px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card,
#jood-app.jood-app-shell-view-checkout .jood-checkout-terms{
  width:100%!important;
  max-width:100%!important;
  min-width:0!important;
  margin:0!important;
  padding:16px!important;
  border:1px solid var(--jood-checkout-border)!important;
  border-radius:22px!important;
  background:#fff!important;
  box-shadow:0 12px 34px rgba(10,22,37,.055)!important;
  overflow:hidden!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card__head,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:12px!important;
  padding:0 0 12px!important;
  margin:0 0 12px!important;
  border-bottom:1px solid rgba(234,220,197,.65)!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card__head h3,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head h3{
  color:var(--jood-checkout-navy)!important;
  font-size:clamp(20px,2.1vw,30px)!important;
  line-height:1.18!important;
  margin:0!important;
  letter-spacing:-.4px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card__head .jood-svg-icon,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head .jood-svg-icon{
  width:42px!important;
  height:42px!important;
  min-width:42px!important;
  border-radius:15px!important;
  display:grid!important;
  place-items:center!important;
  background:#F6E9D8!important;
  color:var(--jood-checkout-navy)!important;
  border:1px solid var(--jood-checkout-border)!important;
}

#jood-app.jood-app-shell-view-checkout .jood-section-kicker,
#jood-app.jood-app-shell-view-checkout .jood-eyebrow{
  display:inline-flex!important;
  align-items:center!important;
  gap:5px!important;
  min-height:22px!important;
  padding:3px 8px!important;
  border-radius:999px!important;
  background:#F6E9D8!important;
  border:1px solid var(--jood-checkout-border)!important;
  color:#a37b25!important;
  font-size:10.5px!important;
  font-weight:900!important;
}

#jood-app.jood-app-shell-view-checkout .jood-form-grid{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:10px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-form-row,
#jood-app.jood-app-shell-view-checkout .form-row{
  width:100%!important;
  max-width:100%!important;
  min-width:0!important;
  margin:0!important;
  padding:0!important;
}

#jood-app.jood-app-shell-view-checkout .jood-form-row-wide,
#jood-app.jood-app-shell-view-checkout .form-row-wide,
#jood-app.jood-app-shell-view-checkout .jood-form-grid > .jood-form-row:last-child:nth-child(odd){
  grid-column:1 / -1!important;
}

#jood-app.jood-app-shell-view-checkout label span,
#jood-app.jood-app-shell-view-checkout .jood-form-row label{
  color:var(--jood-checkout-navy)!important;
  font-size:12px!important;
  font-weight:900!important;
}

#jood-app.jood-app-shell-view-checkout input[type="text"],
#jood-app.jood-app-shell-view-checkout input[type="email"],
#jood-app.jood-app-shell-view-checkout input[type="tel"],
#jood-app.jood-app-shell-view-checkout input[type="time"],
#jood-app.jood-app-shell-view-checkout select,
#jood-app.jood-app-shell-view-checkout textarea{
  width:100%!important;
  min-height:48px!important;
  border:1px solid var(--jood-checkout-border)!important;
  border-radius:16px!important;
  background:#fff!important;
  color:var(--jood-checkout-navy)!important;
  padding:10px 13px!important;
  box-shadow:none!important;
  outline:none!important;
}

#jood-app.jood-app-shell-view-checkout textarea{min-height:82px!important;}

#jood-app.jood-app-shell-view-checkout input:focus,
#jood-app.jood-app-shell-view-checkout select:focus,
#jood-app.jood-app-shell-view-checkout textarea:focus{
  border-color:rgba(10,22,37,.55)!important;
  box-shadow:0 0 0 4px rgba(10,22,37,.08)!important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-methods{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:10px!important;
  margin:0 0 12px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-method{
  min-height:74px!important;
  padding:12px 14px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:12px!important;
  border:1px solid var(--jood-checkout-border)!important;
  border-radius:18px!important;
  background:#fff!important;
  color:var(--jood-checkout-navy)!important;
  box-shadow:none!important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-method input[type="radio"]{
  position:relative!important;
  inset:auto!important;
  opacity:1!important;
  appearance:none!important;
  -webkit-appearance:none!important;
  width:24px!important;
  height:24px!important;
  min-width:24px!important;
  margin:0!important;
  border:2px solid var(--jood-checkout-border)!important;
  border-radius:999px!important;
  background:#fff!important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-method input[type="radio"]:checked{
  border-color:#fff!important;
  background:radial-gradient(circle at center,#fff 0 35%,var(--jood-checkout-gold) 38% 100%)!important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-method:has(input:checked){
  background:var(--jood-checkout-navy)!important;
  border-color:var(--jood-checkout-navy)!important;
  color:#fff!important;
  box-shadow:0 12px 30px rgba(10,22,37,.15)!important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-method:has(input:checked) *{color:#fff!important;}
#jood-app.jood-app-shell-view-checkout .jood-delivery-method span{display:grid!important;gap:3px!important;min-width:0!important;}
#jood-app.jood-app-shell-view-checkout .jood-delivery-method strong{font-size:14px!important;font-weight:900!important;color:inherit!important;}
#jood-app.jood-app-shell-view-checkout .jood-delivery-method small{font-size:11px!important;font-weight:700!important;color:rgba(10,22,37,.62)!important;}

#jood-app.jood-app-shell-view-checkout .jood-delivery-slots-grid,
#jood-app.jood-app-shell-view-checkout .jood-branches-zones-grid{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:10px!important;
  align-items:end!important;
}

#jood-app.jood-app-shell-view-checkout .jood-branches-zones-grid{
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-slots-note,
#jood-app.jood-app-shell-view-checkout .jood-branches-zones-note{
  margin:0 0 12px!important;
  color:#7B6758!important;
  font-size:13px!important;
  font-weight:700!important;
  line-height:1.7!important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-slots-alert,
#jood-app.jood-app-shell-view-checkout .jood-branches-zones-alert{
  padding:11px 13px!important;
  border-radius:16px!important;
  border:1px solid #f1beb8!important;
  background:#fff0ee!important;
  color:#a33025!important;
  font-size:13px!important;
  font-weight:900!important;
}

#jood-app.jood-app-shell-view-checkout .jood-branches-zones-summary{
  margin-top:12px!important;
  padding:12px 14px!important;
  border-radius:16px!important;
  background:var(--jood-checkout-navy)!important;
  color:#fff!important;
  display:grid!important;
  gap:6px!important;
  text-align:center!important;
}
#jood-app.jood-app-shell-view-checkout .jood-branches-zones-summary *{color:inherit!important;}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method,
#jood-app.jood-app-shell-view-checkout .jood-payment-card,
#jood-app.jood-app-shell-view-checkout .jood-checkout-terms{
  min-height:58px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:10px!important;
  border:1px solid var(--jood-checkout-border)!important;
  border-radius:18px!important;
  background:#FFF8EF!important;
  padding:12px 14px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-payment-card.is-selected,
#jood-app.jood-app-shell-view-checkout .jood-shipping-method:has(input:checked){
  background:var(--jood-checkout-navy)!important;
  color:#fff!important;
  border-color:var(--jood-checkout-navy)!important;
}

#jood-app.jood-app-shell-view-checkout .jood-payment-card.is-selected *,
#jood-app.jood-app-shell-view-checkout .jood-shipping-method:has(input:checked) *{color:#fff!important;}

#jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions{
  display:flex!important;
  gap:10px!important;
  margin:0!important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions--split{justify-content:space-between!important;}
#jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn{min-height:52px!important;flex:1!important;border-radius:18px!important;}
#jood-app.jood-app-shell-view-checkout .jood-btn-primary{background:var(--jood-checkout-navy)!important;border-color:var(--jood-checkout-navy)!important;color:#fff!important;}
#jood-app.jood-app-shell-view-checkout .jood-btn-ghost{background:#fff!important;border-color:var(--jood-checkout-border)!important;color:var(--jood-checkout-navy)!important;}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card{
  padding:16px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-items{
  display:grid!important;
  gap:10px!important;
  max-height:260px!important;
  overflow:auto!important;
  padding-inline-end:2px!important;
  margin-bottom:12px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item{
  display:grid!important;
  grid-template-columns:64px minmax(0,1fr) auto!important;
  gap:10px!important;
  align-items:center!important;
  padding:10px!important;
  border-radius:16px!important;
  border:1px solid rgba(234,220,197,.8)!important;
  background:#FFF8EF!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__image{
  width:64px!important;
  height:58px!important;
  border-radius:14px!important;
  background:#fff!important;
  border:1px solid rgba(234,220,197,.75)!important;
  overflow:hidden!important;
  display:grid!important;
  place-items:center!important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__image img{width:100%!important;height:100%!important;object-fit:contain!important;}
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content{display:grid!important;gap:3px!important;min-width:0!important;}
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content strong{color:var(--jood-checkout-navy)!important;font-size:13px!important;font-weight:900!important;white-space:normal!important;}
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content small,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content em{font-size:11px!important;color:#6a7480!important;font-style:normal!important;font-weight:700!important;}
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__total{color:var(--jood-checkout-navy)!important;font-size:13px!important;font-weight:900!important;}

#jood-app.jood-app-shell-view-checkout .jood-cart-totals,
#jood-app.jood-app-shell-view-checkout .jood-cart-summary,
#jood-app.jood-app-shell-view-checkout .jood-cart-total-box{
  width:100%!important;
  margin:0 0 12px!important;
}

#jood-app.jood-app-shell-view-checkout [data-total-field]{
  min-height:42px!important;
  padding:9px 11px!important;
  border-radius:14px!important;
  background:#FFF8EF!important;
  border:1px solid rgba(234,220,197,.85)!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
}

#jood-app.jood-app-shell-view-checkout .jood-place-order-button-side{display:flex!important;}
#jood-app.jood-app-shell-view-checkout .jood-place-order-button-mobile{display:none!important;}

@media (max-width: 980px){
  #jood-app.jood-app-shell-view-checkout .jood-app-main{width:100%!important;padding-inline:10px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero{grid-template-columns:1fr!important;padding:14px!important;border-radius:20px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary{display:none!important;}
  #jood-app.jood-app-shell-view-checkout .jood-checkout-layout{grid-template-columns:1fr!important;gap:12px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-checkout-side{position:relative!important;top:auto!important;order:-1!important;}
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-items{max-height:190px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-place-order-button-side{display:none!important;}
  #jood-app.jood-app-shell-view-checkout .jood-place-order-button-mobile{display:flex!important;}
}

@media (max-width: 640px){
  #jood-app.jood-app-shell-view-checkout .jood-app-main{padding-inline:8px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero{margin-bottom:10px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero__content h2{font-size:24px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-checkout-steps,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:6px!important;padding:6px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button{min-height:36px!important;height:38px!important;padding:5px!important;border-radius:14px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div strong,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button strong{font-size:10.5px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip{display:grid!important;text-align:center!important;padding:10px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-checkout-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-terms{padding:12px!important;border-radius:18px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head h3,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head h3{font-size:22px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-form-grid,
  #jood-app.jood-app-shell-view-checkout .jood-delivery-slots-grid,
  #jood-app.jood-app-shell-view-checkout .jood-branches-zones-grid{grid-template-columns:1fr!important;gap:9px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-delivery-methods{grid-template-columns:1fr 1fr!important;gap:8px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-delivery-method{min-height:66px!important;padding:10px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-delivery-method strong{font-size:12.5px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-delivery-method small{font-size:10px!important;}
  #jood-app.jood-app-shell-view-checkout input[type="text"],
  #jood-app.jood-app-shell-view-checkout input[type="email"],
  #jood-app.jood-app-shell-view-checkout input[type="tel"],
  #jood-app.jood-app-shell-view-checkout input[type="time"],
  #jood-app.jood-app-shell-view-checkout select,
  #jood-app.jood-app-shell-view-checkout textarea{min-height:46px!important;border-radius:14px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item{grid-template-columns:54px minmax(0,1fr)!important;}
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__total{grid-column:2!important;justify-self:start!important;}
  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions{display:grid!important;grid-template-columns:1fr!important;}
  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions--split{grid-template-columns:1fr 1.4fr!important;}
}


/* =========================================================
   99.100 JOOD CHECKOUT POLISH - v4.2.6
   Compact premium checkout interface, safe visual overrides only.
========================================================= */
#jood-app.jood-app-shell-view-checkout{
  --jood-checkout-navy:#2B170F;
  --jood-checkout-navy-soft:#10253d;
  --jood-checkout-gold:#d8bd78;
  --jood-checkout-gold-2:#f4ead2;
  --jood-checkout-line:#eadcc5;
  --jood-checkout-wash:#FFF8EF;
  --jood-checkout-card:#ffffff;
  --jood-checkout-muted:#647184;
  --jood-checkout-shadow-soft:0 16px 42px rgba(10,22,37,.06);
  --jood-checkout-shadow-navy:0 16px 36px rgba(10,22,37,.16);
}

#jood-app.jood-app-shell-view-checkout .jood-app-main{
  width:min(1160px,calc(100% - 26px))!important;
  padding-top:8px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero{
  padding:14px 16px!important;
  margin-bottom:12px!important;
  border-radius:22px!important;
  grid-template-columns:minmax(0,1fr) 220px!important;
  background:
    radial-gradient(circle at 92% 0%,rgba(216,189,120,.16),transparent 35%),
    linear-gradient(135deg,#fff 0%,#FFF8EF 100%)!important;
  box-shadow:var(--jood-checkout-shadow-soft)!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero__content h2{
  font-size:clamp(22px,2.35vw,32px)!important;
  margin-bottom:4px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero__content p{
  margin-bottom:9px!important;
  line-height:1.55!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary{
  min-height:74px!important;
  padding:11px 13px!important;
  border-radius:18px!important;
  background:linear-gradient(135deg,var(--jood-checkout-navy),var(--jood-checkout-navy-soft))!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-steps{
  gap:7px!important;
  margin-top:6px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div{
  min-height:34px!important;
  padding:5px 7px!important;
  border-radius:14px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div span{
  width:20px!important;
  height:20px!important;
  min-width:20px!important;
  font-size:10px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div strong{
  font-size:11px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-layout{
  grid-template-columns:minmax(0,1fr) minmax(0,1fr)!important;
  gap:14px!important;
  align-items:start!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-main,
#jood-app.jood-app-shell-view-checkout .jood-checkout-side{
  min-width:0!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-side{
  top:12px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs{
  margin-bottom:10px!important;
  padding:6px!important;
  gap:6px!important;
  border-radius:18px!important;
  background:#fff!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button{
  height:38px!important;
  min-height:38px!important;
  padding:6px 7px!important;
  border-radius:13px!important;
  font-size:11px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button span{
  width:20px!important;
  height:20px!important;
  min-width:20px!important;
  font-size:10px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-stage.is-active{
  gap:10px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card,
#jood-app.jood-app-shell-view-checkout .jood-checkout-terms{
  padding:14px!important;
  border-radius:20px!important;
  background:
    linear-gradient(180deg,#fff 0%,#fffdf9 100%)!important;
  box-shadow:var(--jood-checkout-shadow-soft)!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card__head,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head{
  padding-bottom:9px!important;
  margin-bottom:10px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card__head h3,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head h3{
  font-size:clamp(19px,1.85vw,26px)!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card__head .jood-svg-icon,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head .jood-svg-icon{
  width:36px!important;
  height:36px!important;
  min-width:36px!important;
  border-radius:13px!important;
  background:#fff9ee!important;
  color:var(--jood-checkout-navy)!important;
}

#jood-app.jood-app-shell-view-checkout .jood-form-grid{
  gap:8px!important;
}

#jood-app.jood-app-shell-view-checkout input[type="text"],
#jood-app.jood-app-shell-view-checkout input[type="email"],
#jood-app.jood-app-shell-view-checkout input[type="tel"],
#jood-app.jood-app-shell-view-checkout input[type="time"],
#jood-app.jood-app-shell-view-checkout select,
#jood-app.jood-app-shell-view-checkout textarea{
  min-height:44px!important;
  border-radius:14px!important;
  padding:9px 12px!important;
  background:#fff!important;
}

#jood-app.jood-app-shell-view-checkout textarea{
  min-height:70px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-methods{
  gap:8px!important;
  margin-bottom:9px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-method{
  min-height:62px!important;
  padding:10px 12px!important;
  border-radius:16px!important;
  position:relative!important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-method input[type="radio"]{
  width:22px!important;
  height:22px!important;
  min-width:22px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-method:has(input:checked){
  background:linear-gradient(135deg,var(--jood-checkout-navy),var(--jood-checkout-navy-soft))!important;
  box-shadow:var(--jood-checkout-shadow-navy)!important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-method:has(input:checked)::after{
  content:"";
  position:absolute;
  inset-inline-end:12px;
  inset-block-start:10px;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--jood-checkout-gold);
  box-shadow:0 0 0 4px rgba(216,189,120,.16);
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-method strong{
  font-size:13px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-method small{
  font-size:10.5px!important;
  line-height:1.45!important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-slots-grid,
#jood-app.jood-app-shell-view-checkout .jood-branches-zones-grid{
  gap:8px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-slots-grid label,
#jood-app.jood-app-shell-view-checkout .jood-branches-zones-grid label{
  display:grid!important;
  gap:5px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-slots-note,
#jood-app.jood-app-shell-view-checkout .jood-branches-zones-note{
  margin-bottom:9px!important;
  font-size:12px!important;
  line-height:1.55!important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-slots-alert,
#jood-app.jood-app-shell-view-checkout .jood-branches-zones-alert{
  padding:9px 11px!important;
  border-radius:14px!important;
  font-size:12px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-branches-zones-summary{
  margin-top:9px!important;
  padding:10px 12px!important;
  border-radius:15px!important;
  background:linear-gradient(135deg,var(--jood-checkout-navy),var(--jood-checkout-navy-soft))!important;
  box-shadow:0 14px 30px rgba(10,22,37,.12)!important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method,
#jood-app.jood-app-shell-view-checkout .jood-payment-card,
#jood-app.jood-app-shell-view-checkout .jood-checkout-terms{
  min-height:50px!important;
  padding:10px 12px!important;
  border-radius:16px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions{
  gap:8px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn{
  min-height:48px!important;
  border-radius:16px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card{
  background:
    linear-gradient(180deg,#fff 0%,#FFF8EF 100%)!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-items{
  gap:8px!important;
  max-height:220px!important;
  margin-bottom:10px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item{
  grid-template-columns:56px minmax(0,1fr) auto!important;
  padding:8px!important;
  border-radius:14px!important;
  gap:8px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__image{
  width:56px!important;
  height:50px!important;
  border-radius:12px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content strong,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__total{
  font-size:12.5px!important;
}

#jood-app.jood-app-shell-view-checkout [data-total-field]{
  min-height:38px!important;
  padding:8px 10px!important;
  border-radius:13px!important;
}

@media (max-width: 980px){
  #jood-app.jood-app-shell-view-checkout{
    background:#FFF8EF!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-app-main{
    padding-inline:9px!important;
    padding-top:7px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero{
    padding:11px!important;
    margin-bottom:9px!important;
    border-radius:18px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero__content h2{
    font-size:22px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero__content p{
    font-size:12px!important;
    margin-bottom:7px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-layout{
    gap:9px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-side{
    order:-1!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card{
    padding:10px!important;
    border-radius:18px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head{
    margin-bottom:7px!important;
    padding-bottom:7px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-items{
    max-height:132px!important;
    gap:6px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item{
    grid-template-columns:46px minmax(0,1fr) auto!important;
    padding:7px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__image{
    width:46px!important;
    height:42px!important;
  }
}

@media (max-width: 640px){
  #jood-app.jood-app-shell-view-checkout .jood-app-main{
    padding-inline:7px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero{
    display:block!important;
    padding:10px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-steps{
    gap:5px!important;
    padding:0!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div{
    min-height:32px!important;
    padding:4px 5px!important;
    border-radius:12px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div span{
    width:18px!important;
    height:18px!important;
    min-width:18px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-steps > div strong{
    font-size:9.8px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs{
    position:sticky!important;
    top:6px!important;
    z-index:30!important;
    margin-bottom:8px!important;
    padding:5px!important;
    border-radius:16px!important;
    box-shadow:0 10px 24px rgba(10,22,37,.09)!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button{
    height:34px!important;
    min-height:34px!important;
    padding:4px!important;
    border-radius:12px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button span{
    width:18px!important;
    height:18px!important;
    min-width:18px!important;
    font-size:9px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button strong{
    font-size:9.8px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-terms{
    padding:10px!important;
    border-radius:17px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head{
    padding-bottom:7px!important;
    margin-bottom:8px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head h3,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head h3{
    font-size:19px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head .jood-svg-icon,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head .jood-svg-icon{
    width:32px!important;
    height:32px!important;
    min-width:32px!important;
    border-radius:11px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-form-grid{
    gap:7px!important;
  }
  #jood-app.jood-app-shell-view-checkout input[type="text"],
  #jood-app.jood-app-shell-view-checkout input[type="email"],
  #jood-app.jood-app-shell-view-checkout input[type="tel"],
  #jood-app.jood-app-shell-view-checkout input[type="time"],
  #jood-app.jood-app-shell-view-checkout select{
    min-height:42px!important;
    border-radius:13px!important;
  }
  #jood-app.jood-app-shell-view-checkout textarea{
    min-height:62px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-delivery-methods{
    gap:7px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-delivery-method{
    min-height:58px!important;
    padding:9px!important;
    border-radius:14px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-delivery-method input[type="radio"]{
    width:18px!important;
    height:18px!important;
    min-width:18px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-delivery-method strong{
    font-size:11.5px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-delivery-method small{
    display:none!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-delivery-slots-grid,
  #jood-app.jood-app-shell-view-checkout .jood-branches-zones-grid{
    gap:7px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-branches-zones-summary,
  #jood-app.jood-app-shell-view-checkout .jood-delivery-slots-alert,
  #jood-app.jood-app-shell-view-checkout .jood-branches-zones-alert{
    padding:8px 10px!important;
    border-radius:13px!important;
    font-size:11.5px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn{
    min-height:44px!important;
    border-radius:14px!important;
    font-size:12px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-items{
    max-height:105px!important;
  }
  #jood-app.jood-app-shell-view-checkout [data-total-field]{
    min-height:35px!important;
    padding:7px 9px!important;
    font-size:12px!important;
  }
}


/* =========================================================
   100.00 JOOD CHECKOUT CONTROLS FINAL POLISH - v4.2.7
   Fix ugly native radio bubbles and compact checkout fields.
   Scope: checkout only, safe override after all previous rules.
========================================================= */
#jood-app.jood-app-shell-view-checkout{
  --jood-pay-navy:#2B170F;
  --jood-pay-navy-2:#10243a;
  --jood-pay-gold:#B9854D;
  --jood-pay-gold-soft:#f7edd9;
  --jood-pay-border:rgba(216,189,128,.46);
  --jood-pay-shadow:0 12px 30px rgba(10,22,37,.07);
}

/* Delivery / pickup cards */
#jood-app.jood-app-shell-view-checkout .jood-delivery-methods{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:10px!important;
  margin:0 0 12px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-method{
  position:relative!important;
  min-height:58px!important;
  padding:12px 48px 12px 14px!important;
  display:grid!important;
  align-items:center!important;
  gap:0!important;
  border:1px solid var(--jood-pay-border)!important;
  border-radius:18px!important;
  background:linear-gradient(180deg,#fff,#FFF8EF)!important;
  color:var(--jood-pay-navy)!important;
  box-shadow:0 8px 20px rgba(10,22,37,.035)!important;
  overflow:hidden!important;
  cursor:pointer!important;
  transform:none!important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-method input[type="radio"]{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  min-width:1px!important;
  min-height:1px!important;
  opacity:0!important;
  pointer-events:none!important;
  margin:0!important;
  padding:0!important;
  appearance:none!important;
  -webkit-appearance:none!important;
  border:0!important;
  box-shadow:none!important;
  inset:auto!important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-method::before{
  content:"";
  position:absolute;
  inset-inline-end:15px;
  top:50%;
  width:21px;
  height:21px;
  border-radius:999px;
  transform:translateY(-50%);
  border:2px solid rgba(216,189,128,.72);
  background:#fff;
  box-shadow:inset 0 0 0 4px #fff, 0 5px 12px rgba(10,22,37,.08);
  transition:background .2s ease,border-color .2s ease,box-shadow .2s ease;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-method:has(input:checked){
  background:linear-gradient(135deg,var(--jood-pay-navy),var(--jood-pay-navy-2))!important;
  border-color:var(--jood-pay-navy)!important;
  color:#fff!important;
  box-shadow:0 14px 34px rgba(10,22,37,.18)!important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-method:has(input:checked)::before{
  border-color:rgba(255,255,255,.92);
  background:var(--jood-pay-gold);
  box-shadow:inset 0 0 0 4px #fff, 0 8px 18px rgba(216,189,128,.22);
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-method span{
  display:grid!important;
  gap:2px!important;
  min-width:0!important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-method strong{
  margin:0!important;
  color:inherit!important;
  font-size:14px!important;
  line-height:1.35!important;
  font-weight:950!important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-method small{
  margin:0!important;
  color:inherit!important;
  opacity:.72!important;
  font-size:11px!important;
  line-height:1.55!important;
  font-weight:750!important;
}

/* Date / period / exact-time fields */
#jood-app.jood-app-shell-view-checkout .jood-delivery-slots-grid{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:10px!important;
  margin-top:0!important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-slots-grid label{
  min-width:0!important;
  display:grid!important;
  gap:5px!important;
  margin:0!important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-slots-grid label > span{
  color:var(--jood-pay-navy)!important;
  font-size:12px!important;
  line-height:1.35!important;
  font-weight:950!important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-slots-grid select,
#jood-app.jood-app-shell-view-checkout .jood-delivery-slots-grid input[type="time"],
#jood-app.jood-app-shell-view-checkout .jood-bz-field select{
  height:44px!important;
  min-height:44px!important;
  padding:0 13px!important;
  border:1px solid var(--jood-pay-border)!important;
  border-radius:15px!important;
  background:#fff!important;
  color:var(--jood-pay-navy)!important;
  font-size:13px!important;
  font-weight:850!important;
  box-shadow:0 6px 16px rgba(10,22,37,.025), inset 0 1px 0 rgba(255,255,255,.92)!important;
  outline:none!important;
}

#jood-app.jood-app-shell-view-checkout .jood-delivery-slots-grid select:focus,
#jood-app.jood-app-shell-view-checkout .jood-delivery-slots-grid input[type="time"]:focus,
#jood-app.jood-app-shell-view-checkout .jood-bz-field select:focus{
  border-color:rgba(10,22,37,.38)!important;
  box-shadow:0 0 0 4px rgba(216,189,128,.14)!important;
}

/* Shipping and payment method cards: remove ugly native bubbles */
#jood-app.jood-app-shell-view-checkout .jood-shipping-method,
#jood-app.jood-app-shell-view-checkout .wc_payment_method,
#jood-app.jood-app-shell-view-checkout #payment li.wc_payment_method{
  position:relative!important;
  min-height:58px!important;
  padding:12px 50px 12px 16px!important;
  display:grid!important;
  align-items:center!important;
  border:1px solid var(--jood-pay-border)!important;
  border-radius:18px!important;
  background:linear-gradient(180deg,#fff,#FFF8EF)!important;
  color:var(--jood-pay-navy)!important;
  box-shadow:0 8px 20px rgba(10,22,37,.035)!important;
  overflow:hidden!important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method input[type="radio"],
#jood-app.jood-app-shell-view-checkout .wc_payment_method input[type="radio"],
#jood-app.jood-app-shell-view-checkout #payment li.wc_payment_method input[type="radio"]{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  min-width:1px!important;
  min-height:1px!important;
  opacity:0!important;
  pointer-events:none!important;
  margin:0!important;
  padding:0!important;
  appearance:none!important;
  -webkit-appearance:none!important;
  border:0!important;
  box-shadow:none!important;
  inset:auto!important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method::before,
#jood-app.jood-app-shell-view-checkout .wc_payment_method::before,
#jood-app.jood-app-shell-view-checkout #payment li.wc_payment_method::before{
  content:"";
  position:absolute;
  inset-inline-end:16px;
  top:50%;
  width:21px;
  height:21px;
  border-radius:999px;
  transform:translateY(-50%);
  border:2px solid rgba(216,189,128,.72);
  background:#fff;
  box-shadow:inset 0 0 0 4px #fff,0 5px 12px rgba(10,22,37,.08);
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method:has(input:checked),
#jood-app.jood-app-shell-view-checkout .wc_payment_method:has(input:checked),
#jood-app.jood-app-shell-view-checkout #payment li.wc_payment_method:has(input:checked){
  background:linear-gradient(135deg,var(--jood-pay-navy),var(--jood-pay-navy-2))!important;
  border-color:var(--jood-pay-navy)!important;
  color:#fff!important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method:has(input:checked)::before,
#jood-app.jood-app-shell-view-checkout .wc_payment_method:has(input:checked)::before,
#jood-app.jood-app-shell-view-checkout #payment li.wc_payment_method:has(input:checked)::before{
  border-color:rgba(255,255,255,.92);
  background:var(--jood-pay-gold);
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method > span,
#jood-app.jood-app-shell-view-checkout .wc_payment_method > label,
#jood-app.jood-app-shell-view-checkout #payment li.wc_payment_method > label{
  width:100%!important;
  min-width:0!important;
  margin:0!important;
  display:grid!important;
  gap:2px!important;
  color:inherit!important;
  font-weight:900!important;
}

#jood-app.jood-app-shell-view-checkout .jood-shipping-method strong,
#jood-app.jood-app-shell-view-checkout .jood-shipping-method small,
#jood-app.jood-app-shell-view-checkout .wc_payment_method label,
#jood-app.jood-app-shell-view-checkout #payment li.wc_payment_method label{
  color:inherit!important;
}

/* Bottom wizard buttons */
#jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-actions,
#jood-app.jood-app-shell-view-checkout .jood-checkout-actions{
  gap:10px!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-next,
#jood-app.jood-app-shell-view-checkout .jood-checkout-submit,
#jood-app.jood-app-shell-view-checkout button[name="jood_place_order"]{
  min-height:50px!important;
  border-radius:18px!important;
  background:linear-gradient(135deg,var(--jood-pay-navy),var(--jood-pay-navy-2))!important;
  color:#fff!important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-prev{
  min-height:50px!important;
  border-radius:18px!important;
  background:#fff!important;
  color:var(--jood-pay-navy)!important;
  border:1px solid var(--jood-pay-border)!important;
}

@media (max-width:720px){
  #jood-app.jood-app-shell-view-checkout .jood-delivery-slots-card{padding:11px!important;}

  #jood-app.jood-app-shell-view-checkout .jood-delivery-methods{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:8px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-delivery-method{
    min-height:54px!important;
    padding:10px 38px 10px 10px!important;
    border-radius:16px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-delivery-method::before{
    inset-inline-end:11px;
    width:18px;
    height:18px;
  }

  #jood-app.jood-app-shell-view-checkout .jood-delivery-method strong{font-size:12.5px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-delivery-method small{font-size:10px!important;}

  #jood-app.jood-app-shell-view-checkout .jood-delivery-slots-grid{
    grid-template-columns:1fr!important;
    gap:8px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-delivery-slots-grid select,
  #jood-app.jood-app-shell-view-checkout .jood-delivery-slots-grid input[type="time"],
  #jood-app.jood-app-shell-view-checkout .jood-bz-field select{
    height:42px!important;
    min-height:42px!important;
    border-radius:14px!important;
    font-size:12px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-shipping-method,
  #jood-app.jood-app-shell-view-checkout .wc_payment_method,
  #jood-app.jood-app-shell-view-checkout #payment li.wc_payment_method{
    min-height:54px!important;
    padding:10px 38px 10px 10px!important;
    border-radius:16px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-shipping-method::before,
  #jood-app.jood-app-shell-view-checkout .wc_payment_method::before,
  #jood-app.jood-app-shell-view-checkout #payment li.wc_payment_method::before{
    inset-inline-end:11px;
    width:18px;
    height:18px;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-next,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-prev,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-submit,
  #jood-app.jood-app-shell-view-checkout button[name="jood_place_order"]{
    min-height:46px!important;
    border-radius:16px!important;
    font-size:13px!important;
  }
}

/* =========================================================
   JOOD CHECKOUT STEP-BY-STEP SUMMARY FIRST v4.2.8
   يجعل أول مرحلة ملخص الطلب فقط، وبعد التالي تختفي وتظهر باقي المراحل.
========================================================= */
#jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-layout--single{
  display:block!important;
  width:min(980px,100%)!important;
  margin-inline:auto!important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-main--wizard{
  width:100%!important;
  max-width:100%!important;
  min-width:0!important;
  display:block!important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-layout--single .jood-checkout-stage{
  width:100%!important;
  max-width:100%!important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs{
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  width:100%!important;
  margin:0 0 12px!important;
  padding:7px!important;
  border-radius:22px!important;
  background:#fff!important;
  border:1px solid rgba(224,198,132,.35)!important;
  box-shadow:0 12px 30px rgba(10,22,37,.06)!important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button{
  min-height:46px!important;
  padding:8px 7px!important;
  border-radius:16px!important;
  gap:5px!important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button span{
  width:22px!important;
  height:22px!important;
  min-width:22px!important;
  font-size:11px!important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card--stage{
  padding:14px!important;
  border-radius:24px!important;
  background:#fff!important;
  border:1px solid rgba(224,198,132,.38)!important;
  box-shadow:0 18px 42px rgba(10,22,37,.07)!important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card--stage .jood-checkout-review-card__head{
  margin-bottom:12px!important;
  padding-bottom:10px!important;
  border-bottom:1px solid rgba(224,198,132,.24)!important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card--stage .jood-checkout-review-card__head h3{
  font-size:clamp(20px,2.4vw,28px)!important;
  color:#2B170F!important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card--stage .jood-checkout-review-card__head p{
  margin:3px 0 0!important;
  color:#596676!important;
  font-size:12px!important;
  font-weight:800!important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-items--stage{
  display:grid!important;
  gap:8px!important;
  margin:0 0 10px!important;
  max-height:245px!important;
  overflow:auto!important;
  padding-inline-end:2px!important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-stage-totals{
  border-radius:20px!important;
  background:linear-gradient(180deg,#fff 0%,#FFF8EF 100%)!important;
  border:1px solid rgba(224,198,132,.32)!important;
  padding:10px!important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-stage-totals .jood-cart-totals,
#jood-app.jood-app-shell-view-checkout .jood-checkout-stage-totals .jood-cart-summary,
#jood-app.jood-app-shell-view-checkout .jood-checkout-stage-totals .jood-cart-summary__rows{
  margin:0!important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions{
  margin-top:12px!important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions--split{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr)!important;
  gap:10px!important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn{
  min-height:48px!important;
  border-radius:18px!important;
  font-size:13px!important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-card{
  padding:14px!important;
  border-radius:24px!important;
}
#jood-app.jood-app-shell-view-checkout .jood-form-grid{
  gap:10px!important;
}

@media (max-width: 782px){
  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero{
    margin-bottom:8px!important;
    padding:10px!important;
    border-radius:18px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero__content h2{
    font-size:22px!important;
    margin:4px 0!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero__content p{
    font-size:12px!important;
    line-height:1.55!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-steps,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip{
    display:none!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs{
    position:sticky!important;
    top:8px!important;
    z-index:30!important;
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
    gap:5px!important;
    padding:5px!important;
    margin-bottom:8px!important;
    border-radius:18px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button{
    min-height:42px!important;
    padding:6px 3px!important;
    border-radius:14px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button strong{
    font-size:10px!important;
    line-height:1.1!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button span{
    width:19px!important;
    height:19px!important;
    min-width:19px!important;
    font-size:10px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card--stage,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-card{
    padding:10px!important;
    border-radius:18px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card--stage .jood-checkout-review-card__head,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head{
    gap:8px!important;
    margin-bottom:8px!important;
    padding-bottom:8px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card--stage .jood-checkout-review-card__head h3,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head h3{
    font-size:18px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head > .jood-svg-icon,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head > .jood-svg-icon{
    width:36px!important;
    height:36px!important;
    min-width:36px!important;
    border-radius:13px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-items--stage{
    max-height:210px!important;
    gap:7px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item{
    padding:8px!important;
    border-radius:15px!important;
    grid-template-columns:46px minmax(0,1fr)!important;
    gap:8px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__image{
    width:46px!important;
    height:46px!important;
    border-radius:12px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content strong{
    font-size:12px!important;
    line-height:1.35!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content small,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content em{
    font-size:10.5px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__total{
    grid-column:2!important;
    justify-self:start!important;
    font-size:12px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-totals{
    padding:8px!important;
    border-radius:16px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions{
    margin-top:8px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions--split{
    gap:7px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn{
    min-height:44px!important;
    border-radius:15px!important;
    font-size:12px!important;
    padding:9px 10px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn .jood-svg-icon{
    width:16px!important;
    height:16px!important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-form-grid{
    gap:8px!important;
  }
  #jood-app.jood-app-shell-view-checkout :where(input,select,textarea){
    min-height:44px!important;
    border-radius:14px!important;
  }
}

@media (max-width: 430px){
  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button strong{font-size:9.5px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions--split{grid-template-columns:1fr 1fr!important;}
  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn{min-height:42px!important;}
}


/* =========================================================
   100.02 JOOD CHECKOUT MOBILE APP COMPACT POLISH - v4.2.9
   هدفه: منع الفراغات الطويلة في الجوال، ضغط المراحل، وتنظيم الحقول كواجهة تطبيق.
   Scope: checkout only.
========================================================= */
#jood-app.jood-app-shell-view-checkout .jood-checkout-stage{
  min-height:0!important;
  height:auto!important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-stage.is-active{
  align-content:start!important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-page,
#jood-app.jood-app-shell-view-checkout .jood-checkout-form,
#jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-layout--single,
#jood-app.jood-app-shell-view-checkout .jood-checkout-main--wizard{
  min-height:0!important;
  height:auto!important;
}

@media (max-width: 782px){
  body.jood-app-page.jood-app-view-checkout,
  #jood-app.jood-app-shell-view-checkout{
    background:#FFF8EF!important;
    overflow-x:hidden!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-app-main{
    padding-inline:6px!important;
    padding-top:4px!important;
    padding-bottom:calc(76px + env(safe-area-inset-bottom))!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-page{
    width:100%!important;
    margin:0!important;
    padding:0!important;
    display:block!important;
  }

  /* نخفي الهيرو الكبير على الجوال ونسيب شريط الخطوات فقط */
  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip{
    display:none!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-layout--single{
    width:100%!important;
    max-width:100%!important;
    margin:0!important;
    padding:0!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-main--wizard{
    display:block!important;
    width:100%!important;
    max-width:100%!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs{
    position:sticky!important;
    top:4px!important;
    z-index:50!important;
    margin:0 0 7px!important;
    padding:4px!important;
    display:grid!important;
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
    gap:4px!important;
    border-radius:17px!important;
    background:rgba(255,255,255,.96)!important;
    border:1px solid rgba(216,189,128,.34)!important;
    box-shadow:0 10px 26px rgba(10,22,37,.10)!important;
    backdrop-filter:blur(14px)!important;
    -webkit-backdrop-filter:blur(14px)!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button{
    min-height:36px!important;
    height:36px!important;
    padding:4px 2px!important;
    border-radius:13px!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;
    gap:2px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button span{
    width:17px!important;
    height:17px!important;
    min-width:17px!important;
    font-size:9px!important;
    line-height:1!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button strong{
    font-size:9.5px!important;
    line-height:1!important;
    max-width:100%!important;
    white-space:nowrap!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage.is-active{
    display:block!important;
    margin:0!important;
    padding:0!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card--stage,
  #jood-app.jood-app-shell-view-checkout .jood-delivery-slots-card,
  #jood-app.jood-app-shell-view-checkout .jood-branches-zones-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-terms{
    margin:0 0 7px!important;
    padding:9px!important;
    border-radius:17px!important;
    background:#fff!important;
    border:1px solid rgba(216,189,128,.32)!important;
    box-shadow:0 8px 22px rgba(10,22,37,.045)!important;
    overflow:hidden!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head{
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    gap:8px!important;
    margin:0 0 7px!important;
    padding:0 0 7px!important;
    border-bottom:1px solid rgba(216,189,128,.22)!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head > div,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head > div{
    min-width:0!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head h3,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head h3{
    font-size:18px!important;
    line-height:1.15!important;
    margin:0!important;
    letter-spacing:-.25px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head p,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head p{
    display:none!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head .jood-svg-icon,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head .jood-svg-icon{
    width:31px!important;
    height:31px!important;
    min-width:31px!important;
    border-radius:11px!important;
  }

  /* بيانات العميل: صفين بدل أربع صفوف طويلة */
  #jood-app.jood-app-shell-view-checkout .jood-form-grid{
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:7px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-form-field,
  #jood-app.jood-app-shell-view-checkout .jood-form-row,
  #jood-app.jood-app-shell-view-checkout .form-row{
    display:grid!important;
    gap:4px!important;
    margin:0!important;
    min-width:0!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-form-field-billing_address_1,
  #jood-app.jood-app-shell-view-checkout .jood-form-field-billing_address_2,
  #jood-app.jood-app-shell-view-checkout .jood-form-field-order_notes,
  #jood-app.jood-app-shell-view-checkout .jood-form-field textarea,
  #jood-app.jood-app-shell-view-checkout .jood-form-row-wide,
  #jood-app.jood-app-shell-view-checkout .form-row-wide{
    grid-column:1 / -1!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-form-field > span,
  #jood-app.jood-app-shell-view-checkout .jood-form-row label,
  #jood-app.jood-app-shell-view-checkout .form-row label{
    font-size:11px!important;
    line-height:1.25!important;
    margin:0!important;
    color:#2B170F!important;
  }

  #jood-app.jood-app-shell-view-checkout input[type="text"],
  #jood-app.jood-app-shell-view-checkout input[type="email"],
  #jood-app.jood-app-shell-view-checkout input[type="tel"],
  #jood-app.jood-app-shell-view-checkout input[type="time"],
  #jood-app.jood-app-shell-view-checkout select{
    min-height:40px!important;
    height:40px!important;
    padding:8px 10px!important;
    border-radius:13px!important;
    font-size:12px!important;
    font-weight:800!important;
    background:#fff!important;
  }

  #jood-app.jood-app-shell-view-checkout textarea{
    min-height:56px!important;
    height:56px!important;
    padding:9px 10px!important;
    border-radius:13px!important;
    font-size:12px!important;
  }

  /* المرحلة الأولى: ملخص قصير بدون تمدد */
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-items--stage{
    max-height:145px!important;
    overflow:auto!important;
    gap:6px!important;
    margin:0 0 7px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item{
    grid-template-columns:42px minmax(0,1fr) auto!important;
    gap:7px!important;
    padding:7px!important;
    border-radius:13px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__image{
    width:42px!important;
    height:40px!important;
    border-radius:11px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content strong,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__total{
    font-size:11.5px!important;
    line-height:1.25!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content small,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content em{
    font-size:9.8px!important;
    line-height:1.2!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-totals{
    padding:7px!important;
    border-radius:14px!important;
  }

  #jood-app.jood-app-shell-view-checkout [data-total-field],
  #jood-app.jood-app-shell-view-checkout .jood-cart-summary-row,
  #jood-app.jood-app-shell-view-checkout .jood-cart-summary__row{
    min-height:32px!important;
    padding:6px 8px!important;
    border-radius:12px!important;
    font-size:11px!important;
  }

  /* خيارات الشحن والشحن كروت صغيرة مرتبة */
  #jood-app.jood-app-shell-view-checkout .jood-delivery-methods{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:7px!important;
    margin:0 0 7px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-delivery-method{
    min-height:54px!important;
    padding:9px!important;
    border-radius:15px!important;
    gap:7px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-delivery-method input[type="radio"]{
    width:17px!important;
    height:17px!important;
    min-width:17px!important;
    order:2!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-delivery-method strong{
    font-size:12px!important;
    line-height:1.2!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-delivery-method small{
    display:block!important;
    font-size:9.7px!important;
    line-height:1.25!important;
    opacity:.75!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-delivery-slots-grid,
  #jood-app.jood-app-shell-view-checkout .jood-branches-zones-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:7px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-delivery-slots-grid > label:first-child,
  #jood-app.jood-app-shell-view-checkout .jood-branches-zones-grid > label:first-child,
  #jood-app.jood-app-shell-view-checkout .jood-bz-field:first-child{
    grid-column:1 / -1!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-delivery-slots-note,
  #jood-app.jood-app-shell-view-checkout .jood-branches-zones-note{
    margin:0 0 7px!important;
    font-size:11px!important;
    line-height:1.45!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-shipping-method,
  #jood-app.jood-app-shell-view-checkout .jood-payment-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-terms{
    min-height:46px!important;
    padding:9px 10px!important;
    border-radius:14px!important;
    font-size:12px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-shipping-method input[type="radio"],
  #jood-app.jood-app-shell-view-checkout .jood-payment-card input[type="radio"],
  #jood-app.jood-app-shell-view-checkout .jood-checkout-terms input[type="checkbox"]{
    width:18px!important;
    height:18px!important;
    min-width:18px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions{
    margin-top:7px!important;
    display:grid!important;
    grid-template-columns:minmax(0,1fr) minmax(0,1.35fr)!important;
    gap:7px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn{
    min-height:42px!important;
    height:42px!important;
    padding:8px 9px!important;
    border-radius:14px!important;
    font-size:12px!important;
    line-height:1.1!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn .jood-svg-icon{
    width:15px!important;
    height:15px!important;
    min-width:15px!important;
  }
}

@media (max-width: 430px){
  #jood-app.jood-app-shell-view-checkout .jood-app-main{
    padding-inline:4px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card--stage,
  #jood-app.jood-app-shell-view-checkout .jood-delivery-slots-card,
  #jood-app.jood-app-shell-view-checkout .jood-branches-zones-card{
    padding:8px!important;
    border-radius:16px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-form-grid{
    gap:6px!important;
  }

  #jood-app.jood-app-shell-view-checkout input[type="text"],
  #jood-app.jood-app-shell-view-checkout input[type="email"],
  #jood-app.jood-app-shell-view-checkout input[type="tel"],
  #jood-app.jood-app-shell-view-checkout input[type="time"],
  #jood-app.jood-app-shell-view-checkout select{
    min-height:38px!important;
    height:38px!important;
    font-size:11.5px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head h3,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head h3{
    font-size:17px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn{
    min-height:40px!important;
    height:40px!important;
    font-size:11.5px!important;
  }
}

/* =========================================================
   100.04 JOOD CHECKOUT MOBILE TRUE STEP SCREEN - v4.2.10
   Goal: each checkout step fits as one centered app screen on phones.
   Scope: checkout only. Does not change checkout logic/modules.
========================================================= */
@media (max-width: 720px){
  html:has(#jood-app.jood-app-shell-view-checkout),
  body:has(#jood-app.jood-app-shell-view-checkout){
    overflow-x:hidden!important;
    background:#FFF8EF!important;
  }

  /* لو القالب حاط هيدر/فوتر/بحث فوق صفحة الدفع نخفيه على صفحة الدفع فقط */
  body.jood-checkout-immersive :where(
    header,
    .site-header,
    .elementor-location-header,
    .main-header,
    .header,
    .navbar,
    .mobile-header,
    .bottom-navigation,
    .mobile-bottom-nav,
    .elementor-location-footer,
    footer.site-footer
  ){
    display:none!important;
  }

  body.jood-checkout-immersive{
    background:#FFF8EF!important;
  }

  body.jood-checkout-immersive #jood-app.jood-app-shell-view-checkout{
    min-height:100svh!important;
    background:linear-gradient(180deg,#FFF8EF 0%,#ffffff 58%,#FFF8EF 100%)!important;
  }

  #jood-app.jood-app-shell-view-checkout{
    --jood-checkout-vh:100svh;
    --jood-checkout-pad:6px;
    --jood-checkout-nav-h:34px;
    --jood-checkout-actions-h:42px;
  }

  #jood-app.jood-app-shell-view-checkout .jood-app-main{
    width:100%!important;
    min-height:100svh!important;
    max-height:100svh!important;
    padding:6px!important;
    margin:0!important;
    display:grid!important;
    align-items:center!important;
    overflow:hidden!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-app-content,
  #jood-app.jood-app-shell-view-checkout .jood-app-content-checkout,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-page,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-form,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-layout,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-main{
    width:100%!important;
    min-width:0!important;
    max-width:100%!important;
    margin:0!important;
    padding:0!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-form{
    display:block!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-layout{
    min-height:calc(100svh - 12px)!important;
    max-height:calc(100svh - 12px)!important;
    display:grid!important;
    grid-template-rows:auto minmax(0,1fr)!important;
    align-items:stretch!important;
    gap:5px!important;
    overflow:hidden!important;
    border:1px solid rgba(216,189,128,.28)!important;
    border-radius:20px!important;
    background:rgba(255,255,255,.74)!important;
    box-shadow:0 16px 34px rgba(10,22,37,.08)!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-main--wizard{
    display:grid!important;
    grid-template-rows:auto minmax(0,1fr)!important;
    min-height:0!important;
    max-height:100%!important;
    overflow:hidden!important;
  }

  /* إخفاء أي عناصر تزود الطول فوق الشاشة */
  #jood-app.jood-app-shell-view-checkout .jood-app-page-head,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip,
  #jood-app.jood-app-shell-view-checkout .jood-loyalty-strip,
  #jood-app.jood-app-shell-view-checkout .jood-app-notice-bar{
    display:none!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs{
    height:var(--jood-checkout-nav-h)!important;
    min-height:var(--jood-checkout-nav-h)!important;
    padding:3px!important;
    margin:0!important;
    display:grid!important;
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
    gap:3px!important;
    border:0!important;
    border-radius:18px 18px 10px 10px!important;
    background:#2B170F!important;
    position:relative!important;
    top:auto!important;
    z-index:5!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button{
    min-width:0!important;
    min-height:28px!important;
    height:28px!important;
    padding:2px 3px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    gap:4px!important;
    border-radius:12px!important;
    color:rgba(255,255,255,.72)!important;
    background:transparent!important;
    border:0!important;
    box-shadow:none!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button.is-active{
    background:#B9854D!important;
    color:#2B170F!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button span{
    width:17px!important;
    height:17px!important;
    min-width:17px!important;
    font-size:10px!important;
    display:grid!important;
    place-items:center!important;
    border-radius:999px!important;
    background:rgba(255,255,255,.16)!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button.is-active span{
    background:rgba(10,22,37,.12)!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button strong{
    display:block!important;
    font-size:10px!important;
    line-height:1!important;
    font-weight:950!important;
    white-space:nowrap!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage{
    display:none!important;
    min-height:0!important;
    max-height:100%!important;
    overflow:hidden!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage.is-active{
    display:grid!important;
    grid-template-rows:minmax(0,1fr) auto!important;
    gap:5px!important;
    min-height:0!important;
    max-height:calc(100svh - 51px)!important;
    padding:5px!important;
    overflow:hidden!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card--stage,
  #jood-app.jood-app-shell-view-checkout .jood-delivery-slots-card,
  #jood-app.jood-app-shell-view-checkout .jood-branches-zones-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-payment-card{
    min-height:0!important;
    max-height:100%!important;
    padding:8px!important;
    margin:0!important;
    border-radius:16px!important;
    border:1px solid rgba(216,189,128,.34)!important;
    background:#fff!important;
    box-shadow:0 9px 22px rgba(10,22,37,.055)!important;
    overflow:hidden!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head{
    min-height:0!important;
    padding:0 0 6px!important;
    margin:0 0 7px!important;
    display:flex!important;
    align-items:center!important;
    gap:7px!important;
    border-bottom:1px solid rgba(216,189,128,.24)!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head .jood-svg-icon,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head .jood-svg-icon{
    width:28px!important;
    height:28px!important;
    min-width:28px!important;
    border-radius:10px!important;
    background:#2B170F!important;
    color:#B9854D!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-section-kicker{
    display:none!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head h3,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head h3{
    font-size:17px!important;
    line-height:1.1!important;
    margin:0!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head p,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head p{
    display:none!important;
  }

  /* مرحلة بياناتك: كارت واحد داخل الشاشة */
  #jood-app.jood-app-shell-view-checkout .jood-form-grid{
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:6px!important;
    min-height:0!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-form-field,
  #jood-app.jood-app-shell-view-checkout .jood-form-row,
  #jood-app.jood-app-shell-view-checkout .form-row{
    gap:3px!important;
    min-width:0!important;
    margin:0!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-form-field > span,
  #jood-app.jood-app-shell-view-checkout .jood-form-row label,
  #jood-app.jood-app-shell-view-checkout .form-row label{
    font-size:10.2px!important;
    line-height:1.15!important;
    margin:0!important;
    font-weight:900!important;
  }

  #jood-app.jood-app-shell-view-checkout input[type="text"],
  #jood-app.jood-app-shell-view-checkout input[type="email"],
  #jood-app.jood-app-shell-view-checkout input[type="tel"],
  #jood-app.jood-app-shell-view-checkout input[type="time"],
  #jood-app.jood-app-shell-view-checkout select{
    height:34px!important;
    min-height:34px!important;
    padding:6px 9px!important;
    border-radius:12px!important;
    font-size:11px!important;
    line-height:1.1!important;
  }

  #jood-app.jood-app-shell-view-checkout textarea{
    height:46px!important;
    min-height:46px!important;
    padding:7px 9px!important;
    border-radius:12px!important;
    font-size:11px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-form-field-billing_address_1,
  #jood-app.jood-app-shell-view-checkout .jood-form-field-billing_address_2,
  #jood-app.jood-app-shell-view-checkout .jood-form-field-order_notes,
  #jood-app.jood-app-shell-view-checkout .jood-form-row-wide,
  #jood-app.jood-app-shell-view-checkout .form-row-wide{
    grid-column:1 / -1!important;
  }

  /* مرحلة الطلب: ملخص مضغوط */
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card--stage{
    display:grid!important;
    grid-template-rows:auto minmax(0,1fr) auto!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-items--stage{
    max-height:none!important;
    min-height:0!important;
    overflow:hidden!important;
    display:grid!important;
    gap:5px!important;
    margin:0 0 5px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item:nth-child(n+3){
    display:none!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item{
    grid-template-columns:38px minmax(0,1fr) auto!important;
    gap:6px!important;
    padding:6px!important;
    min-height:45px!important;
    border-radius:12px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__image{
    width:38px!important;
    height:36px!important;
    border-radius:10px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content strong,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__total{
    font-size:11px!important;
    line-height:1.2!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content small,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content em{
    font-size:9.5px!important;
    line-height:1.1!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-totals{
    padding:6px!important;
    border-radius:12px!important;
  }

  #jood-app.jood-app-shell-view-checkout [data-total-field],
  #jood-app.jood-app-shell-view-checkout .jood-cart-summary-row,
  #jood-app.jood-app-shell-view-checkout .jood-cart-summary__row{
    min-height:28px!important;
    padding:5px 7px!important;
    border-radius:10px!important;
    font-size:10.5px!important;
  }

  /* الشحن: كل حاجة في شاشة واحدة */
  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage[data-jood-checkout-stage="3"].is-active{
    grid-template-rows:minmax(0,1fr) auto!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage[data-jood-checkout-stage="3"].is-active > :not(.jood-checkout-stage-actions){
    margin:0 0 5px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-delivery-methods{
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:6px!important;
    margin:0 0 6px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-delivery-method{
    min-height:43px!important;
    padding:7px 30px 7px 8px!important;
    border-radius:13px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-delivery-method::before{
    width:14px!important;
    height:14px!important;
    inset-inline-end:9px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-delivery-method strong{font-size:11px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-delivery-method small{font-size:8.8px!important;line-height:1.15!important;}

  #jood-app.jood-app-shell-view-checkout .jood-delivery-slots-grid,
  #jood-app.jood-app-shell-view-checkout .jood-branches-zones-grid{
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:5px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-delivery-slots-grid > label:first-child,
  #jood-app.jood-app-shell-view-checkout .jood-branches-zones-grid > label:first-child,
  #jood-app.jood-app-shell-view-checkout .jood-bz-field:first-child{
    grid-column:auto!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-delivery-slots-note,
  #jood-app.jood-app-shell-view-checkout .jood-branches-zones-note,
  #jood-app.jood-app-shell-view-checkout .jood-branches-zones-summary{
    display:none!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-address-card .jood-checkout-card__head{
    display:none!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-address-card{
    padding:7px!important;
  }

  /* الدفع والشحن */
  #jood-app.jood-app-shell-view-checkout .jood-shipping-method,
  #jood-app.jood-app-shell-view-checkout .jood-payment-card,
  #jood-app.jood-app-shell-view-checkout .wc_payment_method,
  #jood-app.jood-app-shell-view-checkout #payment li.wc_payment_method,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-terms{
    min-height:40px!important;
    padding:8px 34px 8px 9px!important;
    border-radius:13px!important;
    font-size:11px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-shipping-method::before,
  #jood-app.jood-app-shell-view-checkout .wc_payment_method::before,
  #jood-app.jood-app-shell-view-checkout #payment li.wc_payment_method::before{
    width:15px!important;
    height:15px!important;
    inset-inline-end:10px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-terms input[type="checkbox"]{
    width:16px!important;
    height:16px!important;
    min-width:16px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions{
    height:var(--jood-checkout-actions-h)!important;
    min-height:var(--jood-checkout-actions-h)!important;
    margin:0!important;
    display:grid!important;
    grid-template-columns:1fr 1.25fr!important;
    gap:6px!important;
    align-items:stretch!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn{
    height:42px!important;
    min-height:42px!important;
    padding:7px 8px!important;
    border-radius:14px!important;
    font-size:11.5px!important;
    line-height:1!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn .jood-svg-icon{
    width:14px!important;
    height:14px!important;
    min-width:14px!important;
  }
}

@media (max-width: 390px){
  #jood-app.jood-app-shell-view-checkout .jood-app-main{padding:4px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-checkout-layout{min-height:calc(100svh - 8px)!important;max-height:calc(100svh - 8px)!important;border-radius:17px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage.is-active{padding:4px!important;gap:4px!important;max-height:calc(100svh - 46px)!important;}
  #jood-app.jood-app-shell-view-checkout .jood-checkout-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card,
  #jood-app.jood-app-shell-view-checkout .jood-delivery-slots-card,
  #jood-app.jood-app-shell-view-checkout .jood-branches-zones-card{padding:6px!important;border-radius:14px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-form-grid{gap:4px!important;}
  #jood-app.jood-app-shell-view-checkout input[type="text"],
  #jood-app.jood-app-shell-view-checkout input[type="email"],
  #jood-app.jood-app-shell-view-checkout input[type="tel"],
  #jood-app.jood-app-shell-view-checkout input[type="time"],
  #jood-app.jood-app-shell-view-checkout select{height:31px!important;min-height:31px!important;font-size:10.5px!important;border-radius:10px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head h3,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head h3{font-size:15.5px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn{height:38px!important;min-height:38px!important;}
}

/* =========================================================
   100.05 JOOD CHECKOUT CLEAN MOBILE WHITE RESET - v4.2.11
   Clean white checkout, compact app-like wizard, no giant blank spaces.
   Scope: checkout page only.
========================================================= */
@media (max-width: 720px){
  html:has(#jood-app.jood-app-shell-view-checkout),
  body:has(#jood-app.jood-app-shell-view-checkout),
  body.jood-checkout-immersive{
    overflow-x:hidden!important;
    overflow-y:auto!important;
    background:#ffffff!important;
  }

  body.jood-checkout-immersive #jood-app.jood-app-shell-view-checkout,
  #jood-app.jood-app-shell-view-checkout{
    min-height:auto!important;
    background:#ffffff!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-app-main{
    width:100%!important;
    min-height:auto!important;
    max-height:none!important;
    height:auto!important;
    padding:8px 8px 84px!important;
    margin:0 auto!important;
    display:block!important;
    align-items:unset!important;
    overflow:visible!important;
    background:#ffffff!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-app-content,
  #jood-app.jood-app-shell-view-checkout .jood-app-content-checkout,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-page,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-form,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-layout,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-main,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-main--wizard{
    width:100%!important;
    max-width:520px!important;
    min-width:0!important;
    height:auto!important;
    min-height:0!important;
    max-height:none!important;
    margin:0 auto!important;
    padding:0!important;
    display:block!important;
    overflow:visible!important;
    background:#ffffff!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-page{
    display:block!important;
    padding:0!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-layout{
    border:1px solid rgba(219,196,160,.55)!important;
    border-radius:18px!important;
    box-shadow:0 10px 28px rgba(10,22,37,.07)!important;
    overflow:hidden!important;
    background:#ffffff!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero{
    min-height:0!important;
    height:auto!important;
    margin:0 0 8px!important;
    padding:10px 12px!important;
    border-radius:16px!important;
    background:#ffffff!important;
    border:1px solid rgba(219,196,160,.55)!important;
    box-shadow:none!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero .jood-section-kicker{
    display:none!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero h1{
    margin:0!important;
    font-size:20px!important;
    line-height:1.25!important;
    color:#2B170F!important;
    letter-spacing:0!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero p{
    margin:4px 0 0!important;
    font-size:12px!important;
    line-height:1.55!important;
    color:#5f6470!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip{
    display:none!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs{
    height:42px!important;
    min-height:42px!important;
    max-height:42px!important;
    margin:0!important;
    padding:5px!important;
    display:grid!important;
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
    gap:4px!important;
    border-radius:0!important;
    border:0!important;
    border-bottom:1px solid rgba(219,196,160,.45)!important;
    background:#2B170F!important;
    overflow:hidden!important;
    box-shadow:none!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button{
    height:32px!important;
    min-height:32px!important;
    padding:2px 3px!important;
    border:0!important;
    border-radius:12px!important;
    display:grid!important;
    grid-template-columns:auto 1fr!important;
    align-items:center!important;
    justify-content:center!important;
    gap:4px!important;
    background:transparent!important;
    color:rgba(255,255,255,.65)!important;
    box-shadow:none!important;
    overflow:hidden!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button.is-active{
    background:#B9854D!important;
    color:#2B170F!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button span{
    width:20px!important;
    height:20px!important;
    min-width:20px!important;
    display:grid!important;
    place-items:center!important;
    border-radius:999px!important;
    background:rgba(255,255,255,.18)!important;
    color:inherit!important;
    font-size:11px!important;
    font-weight:900!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button strong{
    display:block!important;
    min-width:0!important;
    font-size:10.5px!important;
    line-height:1.05!important;
    font-weight:900!important;
    white-space:nowrap!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage{
    display:none!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage.is-active{
    display:grid!important;
    grid-template-rows:minmax(0,1fr) auto!important;
    gap:8px!important;
    padding:8px!important;
    min-height:0!important;
    max-height:none!important;
    overflow:visible!important;
    background:#ffffff!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card--stage,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-payment-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-terms,
  #jood-app.jood-app-shell-view-checkout .jood-delivery-slots-box,
  #jood-app.jood-app-shell-view-checkout .jood-branches-zones-box{
    width:100%!important;
    max-width:100%!important;
    min-height:0!important;
    margin:0!important;
    padding:10px!important;
    border-radius:16px!important;
    border:1px solid rgba(219,196,160,.55)!important;
    background:#ffffff!important;
    box-shadow:none!important;
    overflow:hidden!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head{
    min-height:0!important;
    margin:0 0 8px!important;
    padding:0 0 7px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    gap:8px!important;
    border-bottom:1px solid rgba(219,196,160,.35)!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head .jood-svg-icon,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head .jood-svg-icon{
    width:34px!important;
    height:34px!important;
    min-width:34px!important;
    border-radius:12px!important;
    background:#2B170F!important;
    color:#B9854D!important;
    box-shadow:none!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head h3,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head h3{
    margin:0!important;
    font-size:18px!important;
    line-height:1.2!important;
    color:#2B170F!important;
    font-weight:900!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head p,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head p,
  #jood-app.jood-app-shell-view-checkout .jood-section-kicker{
    display:none!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-form-grid{
    display:grid!important;
    grid-template-columns:1fr 1fr!important;
    gap:7px!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-form-grid > *{
    min-width:0!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-form-grid > :where(.form-row-wide,.jood-form-row-wide,.jood-field-wide),
  #jood-app.jood-app-shell-view-checkout .jood-form-grid > p:nth-last-child(1):nth-child(odd){
    grid-column:1 / -1!important;
  }

  #jood-app.jood-app-shell-view-checkout :where(label){
    margin:0 0 3px!important;
    font-size:11px!important;
    line-height:1.2!important;
    color:#2B170F!important;
    font-weight:800!important;
  }

  #jood-app.jood-app-shell-view-checkout :where(input:not([type="radio"]):not([type="checkbox"]),select,textarea){
    min-height:38px!important;
    height:38px!important;
    padding:8px 10px!important;
    border-radius:12px!important;
    border:1px solid rgba(219,196,160,.65)!important;
    background:#ffffff!important;
    color:#2B170F!important;
    font-size:13px!important;
    line-height:1.2!important;
    box-shadow:none!important;
  }

  #jood-app.jood-app-shell-view-checkout textarea{
    min-height:48px!important;
    height:48px!important;
    resize:none!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-items--stage{
    display:grid!important;
    gap:7px!important;
    margin:0 0 7px!important;
    max-height:none!important;
    overflow:visible!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item:nth-child(n+3){
    display:none!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item{
    min-height:60px!important;
    padding:7px!important;
    border-radius:13px!important;
    border:1px solid rgba(219,196,160,.45)!important;
    background:#ffffff!important;
    display:grid!important;
    grid-template-columns:52px minmax(0,1fr) auto!important;
    gap:8px!important;
    align-items:center!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__image{
    width:52px!important;
    height:46px!important;
    border-radius:10px!important;
    overflow:hidden!important;
    background:#FFF8EF!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content strong,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__total{
    font-size:12.5px!important;
    line-height:1.25!important;
    color:#2B170F!important;
    font-weight:900!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content small,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content em{
    font-size:10.5px!important;
    line-height:1.25!important;
    color:#7B6758!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-totals{
    padding:0!important;
    margin:0!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-cart-summary,
  #jood-app.jood-app-shell-view-checkout .jood-cart-summary__box,
  #jood-app.jood-app-shell-view-checkout .jood-summary-box{
    padding:8px!important;
    border-radius:14px!important;
    background:#ffffff!important;
    border:1px solid rgba(219,196,160,.45)!important;
    box-shadow:none!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-cart-summary :where(li,div,p){
    min-height:30px!important;
    padding:5px 7px!important;
    font-size:12px!important;
    line-height:1.2!important;
  }

  #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-methods,.jood-delivery-method-grid,.jood-fulfillment-methods,.jood-shipping-methods){
    display:grid!important;
    grid-template-columns:1fr 1fr!important;
    gap:7px!important;
  }

  #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-method,.jood-fulfillment-method,.jood-shipping-method){
    min-height:54px!important;
    padding:8px!important;
    border-radius:14px!important;
    border:1px solid rgba(219,196,160,.6)!important;
    background:#ffffff!important;
    color:#2B170F!important;
    box-shadow:none!important;
    overflow:hidden!important;
  }

  #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-method.is-selected,.jood-fulfillment-method.is-selected,.jood-shipping-method:has(input:checked)){
    background:#2B170F!important;
    color:#ffffff!important;
    border-color:#2B170F!important;
  }

  #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-method input,.jood-fulfillment-method input,.jood-shipping-method input){
    position:absolute!important;
    opacity:0!important;
    pointer-events:none!important;
  }

  #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-method strong,.jood-fulfillment-method strong,.jood-shipping-method strong){
    font-size:12.5px!important;
    line-height:1.25!important;
    font-weight:900!important;
  }

  #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-method small,.jood-fulfillment-method small,.jood-shipping-method small){
    display:block!important;
    margin-top:2px!important;
    font-size:10.5px!important;
    line-height:1.25!important;
    color:inherit!important;
    opacity:.78!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions{
    position:sticky!important;
    bottom:0!important;
    z-index:20!important;
    height:auto!important;
    min-height:0!important;
    margin:0!important;
    padding:7px 0 0!important;
    display:grid!important;
    grid-template-columns:1fr 1fr!important;
    gap:7px!important;
    background:#ffffff!important;
    border-top:1px solid rgba(219,196,160,.25)!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn{
    min-height:42px!important;
    height:42px!important;
    padding:8px 10px!important;
    border-radius:14px!important;
    font-size:13px!important;
    line-height:1.2!important;
    box-shadow:none!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn-primary{
    background:#2B170F!important;
    color:#ffffff!important;
    border-color:#2B170F!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn-ghost{
    background:#ffffff!important;
    color:#2B170F!important;
    border:1px solid rgba(219,196,160,.65)!important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn .jood-svg-icon{
    width:16px!important;
    height:16px!important;
    min-width:16px!important;
  }
}

@media (max-width: 380px){
  #jood-app.jood-app-shell-view-checkout .jood-app-main{padding-inline:6px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero{padding:8px 10px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero h1{font-size:18px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button strong{font-size:9.5px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head h3,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head h3{font-size:16px!important;}
  #jood-app.jood-app-shell-view-checkout .jood-form-grid{gap:6px!important;}
  #jood-app.jood-app-shell-view-checkout :where(input:not([type="radio"]):not([type="checkbox"]),select,textarea){height:36px!important;min-height:36px!important;font-size:12px!important;}
}

/* =========================================================
   100.06 JOOD CHECKOUT MOBILE WHITE REBUILD - v4.2.12
   Clean mobile checkout: white page, no theme chrome, compact app steps.
   This block intentionally overrides previous checkout mobile experiments.
========================================================= */
@media (max-width: 720px) {
  html:has(#jood-app.jood-app-shell-view-checkout),
  body:has(#jood-app.jood-app-shell-view-checkout),
  body.jood-checkout-immersive {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    overflow-x: hidden !important;
    background: #ffffff !important;
  }

  body.jood-checkout-immersive :where(
    header,
    .site-header,
    .elementor-location-header,
    .main-header,
    .mobile-header,
    .navbar,
    .jood-app-bottom-nav,
    .bottom-navigation,
    .mobile-bottom-nav,
    .elementor-location-footer,
    footer,
    footer.site-footer
  ) {
    display: none !important;
  }

  body.jood-checkout-immersive #jood-app.jood-app-shell-view-checkout,
  #jood-app.jood-app-shell-view-checkout {
    width: 100vw !important;
    max-width: 100vw !important;
    min-height: 100svh !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    inset: auto !important;
    background: #ffffff !important;
    color: #2B170F !important;
    overflow-x: hidden !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-app-main,
  #jood-app.jood-app-shell-view-checkout.jood-app-with-bottom-nav .jood-app-main {
    width: 100vw !important;
    max-width: 100vw !important;
    min-height: 100svh !important;
    margin: 0 !important;
    padding: 8px 10px 10px !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    background: #ffffff !important;
    overflow: hidden !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-app-content,
  #jood-app.jood-app-shell-view-checkout .jood-app-content-checkout,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-page,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-form,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-layout,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-main,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-main--wizard {
    width: min(100%, 430px) !important;
    max-width: 430px !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    padding: 0 !important;
    background: #ffffff !important;
    overflow: hidden !important;
    box-shadow: none !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-page {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    height: calc(100svh - 18px) !important;
    min-height: 0 !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero__content,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip {
    width: 100% !important;
    min-height: 38px !important;
    margin: 0 !important;
    padding: 7px 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    border: 1px solid rgba(219, 196, 160, .48) !important;
    border-radius: 14px !important;
    background: #FFF8EF !important;
    box-shadow: none !important;
    overflow: hidden !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip div {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    min-width: 0 !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip .jood-svg-icon {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    color: #B9854D !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip span,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip p {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip strong,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip a {
    max-width: 100% !important;
    color: #2B170F !important;
    font-size: 11px !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-layout {
    flex: 1 1 auto !important;
    height: auto !important;
    min-height: 0 !important;
    border: 1px solid rgba(219, 196, 160, .50) !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    overflow: hidden !important;
    box-shadow: 0 10px 26px rgba(10, 22, 37, .06) !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-main--wizard {
    height: 100% !important;
    min-height: 0 !important;
    display: grid !important;
    grid-template-rows: 34px minmax(0, 1fr) !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs {
    height: 34px !important;
    min-height: 34px !important;
    margin: 0 !important;
    padding: 4px !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 4px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #2B170F !important;
    overflow: hidden !important;
    box-shadow: none !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button {
    height: 26px !important;
    min-height: 26px !important;
    padding: 2px 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: transparent !important;
    color: rgba(255,255,255,.72) !important;
    overflow: hidden !important;
    box-shadow: none !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button.is-active {
    background: #B9854D !important;
    color: #2B170F !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button span {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.18) !important;
    color: inherit !important;
    font-size: 10px !important;
    font-weight: 900 !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button strong {
    display: block !important;
    max-width: 48px !important;
    min-width: 0 !important;
    font-size: 9px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage.is-active {
    height: 100% !important;
    min-height: 0 !important;
    padding: 8px !important;
    display: grid !important;
    grid-template-rows: minmax(0, 1fr) 44px !important;
    gap: 7px !important;
    background: #ffffff !important;
    overflow: hidden !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card--stage,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-payment-card,
  #jood-app.jood-app-shell-view-checkout .jood-delivery-slots-box,
  #jood-app.jood-app-shell-view-checkout .jood-branches-zones-box,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-terms {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 8px !important;
    border: 1px solid rgba(219,196,160,.45) !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    box-shadow: none !important;
    overflow: hidden !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage.is-active > :not(.jood-checkout-stage-actions) {
    min-height: 0 !important;
    overflow: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage.is-active > :not(.jood-checkout-stage-actions)::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head {
    min-height: 0 !important;
    margin: 0 0 7px !important;
    padding: 0 0 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    border-bottom: 1px solid rgba(219,196,160,.28) !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head .jood-svg-icon,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head .jood-svg-icon {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    border-radius: 10px !important;
    background: #2B170F !important;
    color: #B9854D !important;
    box-shadow: none !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head h3,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head h3 {
    margin: 0 !important;
    color: #2B170F !important;
    font-size: 17px !important;
    line-height: 1.15 !important;
    font-weight: 900 !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head p,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head p,
  #jood-app.jood-app-shell-view-checkout .jood-section-kicker {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-form-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 6px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-form-grid > :where(.form-row-wide,.jood-form-row-wide,.jood-field-wide),
  #jood-app.jood-app-shell-view-checkout .jood-form-grid > p:nth-last-child(1):nth-child(odd) {
    grid-column: 1 / -1 !important;
  }

  #jood-app.jood-app-shell-view-checkout :where(label) {
    margin: 0 0 2px !important;
    color: #2B170F !important;
    font-size: 10px !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;
  }

  #jood-app.jood-app-shell-view-checkout :where(input:not([type="radio"]):not([type="checkbox"]), select, textarea) {
    height: 34px !important;
    min-height: 34px !important;
    padding: 7px 9px !important;
    border: 1px solid rgba(219,196,160,.55) !important;
    border-radius: 11px !important;
    background: #ffffff !important;
    color: #2B170F !important;
    font-size: 12px !important;
    line-height: 1.15 !important;
    box-shadow: none !important;
  }

  #jood-app.jood-app-shell-view-checkout textarea {
    height: 42px !important;
    min-height: 42px !important;
    resize: none !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-items--stage {
    display: grid !important;
    gap: 6px !important;
    margin: 0 0 6px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item:nth-child(n+2) {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item {
    min-height: 54px !important;
    padding: 6px !important;
    display: grid !important;
    grid-template-columns: 46px minmax(0,1fr) auto !important;
    gap: 7px !important;
    align-items: center !important;
    border-radius: 12px !important;
    border: 1px solid rgba(219,196,160,.42) !important;
    background: #ffffff !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__image {
    width: 46px !important;
    height: 40px !important;
    border-radius: 9px !important;
    overflow: hidden !important;
    background: #FFF8EF !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content strong,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__total {
    color: #2B170F !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content small,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content em {
    color: #7B6758 !important;
    font-size: 10px !important;
    line-height: 1.2 !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-totals,
  #jood-app.jood-app-shell-view-checkout .jood-cart-summary,
  #jood-app.jood-app-shell-view-checkout .jood-cart-summary__box,
  #jood-app.jood-app-shell-view-checkout .jood-summary-box {
    margin: 0 !important;
    padding: 6px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(219,196,160,.40) !important;
    background: #ffffff !important;
    box-shadow: none !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-cart-summary :where(li, div, p) {
    min-height: 25px !important;
    padding: 4px 6px !important;
    font-size: 11px !important;
    line-height: 1.15 !important;
  }

  #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-methods,.jood-delivery-method-grid,.jood-fulfillment-methods,.jood-shipping-methods) {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
  }

  #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-method,.jood-fulfillment-method,.jood-shipping-method) {
    min-height: 48px !important;
    padding: 7px !important;
    border: 1px solid rgba(219,196,160,.55) !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    color: #2B170F !important;
    box-shadow: none !important;
  }

  #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-method.is-selected,.jood-fulfillment-method.is-selected,.jood-shipping-method:has(input:checked)) {
    background: #2B170F !important;
    color: #ffffff !important;
    border-color: #2B170F !important;
  }

  #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-method input,.jood-fulfillment-method input,.jood-shipping-method input) {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-method strong,.jood-fulfillment-method strong,.jood-shipping-method strong) {
    font-size: 11.5px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
  }

  #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-method small,.jood-fulfillment-method small,.jood-shipping-method small) {
    margin-top: 2px !important;
    display: block !important;
    color: inherit !important;
    opacity: .76 !important;
    font-size: 9.5px !important;
    line-height: 1.15 !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions {
    height: 44px !important;
    min-height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 7px !important;
    background: #ffffff !important;
    border: 0 !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn {
    width: 100% !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 7px 8px !important;
    border-radius: 13px !important;
    font-size: 12px !important;
    line-height: 1.15 !important;
    font-weight: 900 !important;
    box-shadow: none !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn-primary {
    background: #2B170F !important;
    color: #ffffff !important;
    border-color: #2B170F !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn-ghost {
    background: #ffffff !important;
    color: #2B170F !important;
    border: 1px solid rgba(219,196,160,.60) !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn .jood-svg-icon {
    width: 15px !important;
    height: 15px !important;
    min-width: 15px !important;
  }
}

@media (max-width: 380px) {
  #jood-app.jood-app-shell-view-checkout .jood-app-main {
    padding: 6px 7px 8px !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-page {
    height: calc(100svh - 14px) !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button strong {
    max-width: 34px !important;
    font-size: 8px !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head h3,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head h3 {
    font-size: 15px !important;
  }
  #jood-app.jood-app-shell-view-checkout :where(input:not([type="radio"]):not([type="checkbox"]), select, textarea) {
    height: 32px !important;
    min-height: 32px !important;
    font-size: 11px !important;
  }
}

/* =========================================================
   Jood Checkout Final Rebuild v4.2.13
   Clean white checkout, normal header/footer, equal desktop width,
   compact mobile app-like steps without hiding store chrome.
   ========================================================= */
body.jood-checkout-immersive {
  min-height: auto !important;
  height: auto !important;
  overflow: auto !important;
  background: #FFF8EF !important;
}
body.jood-checkout-immersive :where(.jood-app-header,.jood-mobile-header,.jood-app-bottom-nav,.jood-bottom-nav,.jood-app-footer,.jood-mobile-search,.jood-search-shell,.jood-store-search) {
  display: initial !important;
  visibility: visible !important;
}

#jood-app.jood-app-shell-view-checkout {
  --jood-checkout-navy: #2B170F;
  --jood-checkout-gold: #B9854D;
  --jood-checkout-gold-soft: #f5ead0;
  --jood-checkout-border: rgba(216,189,116,.42);
  --jood-checkout-bg: #FFF8EF;
  --jood-checkout-card: #ffffff;
  background: var(--jood-checkout-bg) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-app-main {
  width: 100% !important;
  max-width: none !important;
  min-height: auto !important;
  padding: clamp(18px, 2vw, 30px) 18px 34px !important;
  margin: 0 auto !important;
  background: transparent !important;
  overflow: visible !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-page {
  width: min(1180px, calc(100vw - 36px)) !important;
  max-width: 1180px !important;
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  gap: 14px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero {
  width: 100% !important;
  min-height: 112px !important;
  margin: 0 !important;
  padding: 18px 22px !important;
  display: grid !important;
  grid-template-columns: minmax(0,1fr) 220px !important;
  gap: 18px !important;
  align-items: center !important;
  border-radius: 22px !important;
  border: 1px solid var(--jood-checkout-border) !important;
  background: #fff !important;
  box-shadow: 0 18px 45px rgba(10,22,37,.06) !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero__content,
#jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary {
  display: block !important;
  width: auto !important;
  max-width: none !important;
  text-align: right !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero h2,
#jood-app.jood-app-shell-view-checkout .jood-checkout-hero h1 {
  margin: 7px 0 5px !important;
  font-size: clamp(26px, 3vw, 42px) !important;
  line-height: 1.1 !important;
  color: var(--jood-checkout-navy) !important;
  font-weight: 900 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero p {
  margin: 0 !important;
  color: #5d6676 !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary {
  padding: 14px !important;
  border-radius: 18px !important;
  border: 1px solid var(--jood-checkout-border) !important;
  background: linear-gradient(180deg,#fff,#FFF8EF) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip {
  width: 100% !important;
  margin: 0 !important;
  min-height: 54px !important;
  padding: 12px 16px !important;
  display: grid !important;
  grid-template-columns: auto minmax(0,1fr) auto !important;
  gap: 12px !important;
  align-items: center !important;
  border-radius: 18px !important;
  border: 1px solid rgba(10,22,37,.08) !important;
  background: var(--jood-checkout-navy) !important;
  color: #fff !important;
  box-shadow: none !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip :where(p,span,strong,a) {
  color: inherit !important;
  margin: 0 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip a {
  display: inline-flex !important;
  min-height: 34px !important;
  padding: 7px 12px !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: var(--jood-checkout-navy) !important;
  text-decoration: none !important;
  font-weight: 900 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-form,
#jood-app.jood-app-shell-view-checkout .jood-checkout-layout,
#jood-app.jood-app-shell-view-checkout .jood-checkout-main,
#jood-app.jood-app-shell-view-checkout .jood-checkout-main--wizard {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-layout {
  border-radius: 22px !important;
  border: 1px solid var(--jood-checkout-border) !important;
  background: #fff !important;
  padding: 14px !important;
  box-shadow: 0 18px 50px rgba(10,22,37,.07) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs {
  width: 100% !important;
  height: auto !important;
  margin: 0 0 14px !important;
  padding: 6px !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0,1fr)) !important;
  gap: 8px !important;
  border-radius: 18px !important;
  background: #fdf8ef !important;
  border: 1px solid rgba(216,189,116,.35) !important;
  overflow: visible !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button {
  height: 48px !important;
  min-height: 48px !important;
  padding: 8px 10px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  border: 1px solid rgba(216,189,116,.45) !important;
  border-radius: 14px !important;
  background: #fff !important;
  color: var(--jood-checkout-navy) !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button.is-active {
  background: var(--jood-checkout-navy) !important;
  border-color: var(--jood-checkout-navy) !important;
  color: #fff !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button span {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: rgba(10,22,37,.08) !important;
  color: inherit !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button.is-active span {
  background: var(--jood-checkout-gold) !important;
  color: var(--jood-checkout-navy) !important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button strong {
  display: inline !important;
  max-width: none !important;
  color: inherit !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-stage {
  display: none !important;
  width: 100% !important;
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-stage.is-active {
  display: grid !important;
  grid-template-columns: minmax(0,1fr) !important;
  gap: 14px !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card--stage,
#jood-app.jood-app-shell-view-checkout .jood-checkout-payment-card,
#jood-app.jood-app-shell-view-checkout .jood-checkout-terms {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 18px !important;
  border-radius: 20px !important;
  border: 1px solid rgba(216,189,116,.38) !important;
  background: #fff !important;
  color: var(--jood-checkout-navy) !important;
  box-shadow: 0 10px 30px rgba(10,22,37,.045) !important;
  overflow: visible !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card__head,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head {
  margin: 0 0 14px !important;
  padding: 0 0 12px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  border-bottom: 1px solid rgba(216,189,116,.25) !important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-card__head h3,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head h3 {
  margin: 0 !important;
  font-size: clamp(20px,2vw,30px) !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  color: var(--jood-checkout-navy) !important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-card__head p,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head p {
  margin: 4px 0 0 !important;
  display: block !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  color: #697386 !important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-card__head > .jood-svg-icon,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head > .jood-svg-icon {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  border-radius: 14px !important;
  background: var(--jood-checkout-navy) !important;
  color: var(--jood-checkout-gold) !important;
  border: 0 !important;
  box-shadow: none !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-items--stage {
  display: grid !important;
  gap: 10px !important;
  margin: 0 0 12px !important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item:nth-child(n+2) {
  display: grid !important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item {
  padding: 10px !important;
  min-height: 76px !important;
  display: grid !important;
  grid-template-columns: 70px minmax(0,1fr) auto !important;
  gap: 12px !important;
  align-items: center !important;
  border-radius: 16px !important;
  border: 1px solid rgba(216,189,116,.34) !important;
  background: #fff !important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__image {
  width: 70px !important;
  height: 62px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(216,189,116,.30) !important;
  background: #FFF8EF !important;
  overflow: hidden !important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-stage-totals,
#jood-app.jood-app-shell-view-checkout .jood-cart-summary,
#jood-app.jood-app-shell-view-checkout .jood-cart-summary__box,
#jood-app.jood-app-shell-view-checkout .jood-summary-box {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 14px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(216,189,116,.34) !important;
  background: #fff !important;
  box-shadow: none !important;
}

#jood-app.jood-app-shell-view-checkout .jood-form-grid {
  display: grid !important;
  grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  gap: 12px !important;
}
#jood-app.jood-app-shell-view-checkout .jood-form-grid > :where(.form-row-wide,.jood-form-row-wide,.jood-field-wide) {
  grid-column: 1 / -1 !important;
}
#jood-app.jood-app-shell-view-checkout :where(input:not([type="radio"]):not([type="checkbox"]), select, textarea) {
  width: 100% !important;
  min-height: 48px !important;
  height: 48px !important;
  padding: 11px 13px !important;
  border: 1px solid rgba(216,189,116,.45) !important;
  border-radius: 14px !important;
  background: #fff !important;
  color: var(--jood-checkout-navy) !important;
  box-shadow: none !important;
  font-size: 14px !important;
}
#jood-app.jood-app-shell-view-checkout textarea {
  height: 76px !important;
  min-height: 76px !important;
}

#jood-app.jood-app-shell-view-checkout :where(.jood-delivery-methods,.jood-delivery-method-grid,.jood-fulfillment-methods,.jood-shipping-methods) {
  display: grid !important;
  grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  gap: 10px !important;
}
#jood-app.jood-app-shell-view-checkout :where(.jood-delivery-method,.jood-fulfillment-method,.jood-shipping-method,.jood-payment-card) {
  min-height: 72px !important;
  padding: 14px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(216,189,116,.42) !important;
  background: #fff !important;
  color: var(--jood-checkout-navy) !important;
  box-shadow: none !important;
}
#jood-app.jood-app-shell-view-checkout :where(.jood-delivery-method.is-selected,.jood-fulfillment-method.is-selected,.jood-shipping-method:has(input:checked),.jood-payment-card.is-selected) {
  background: var(--jood-checkout-navy) !important;
  border-color: var(--jood-checkout-navy) !important;
  color: #fff !important;
}
#jood-app.jood-app-shell-view-checkout :where(.jood-delivery-method input,.jood-fulfillment-method input,.jood-shipping-method input,.jood-payment-card input) {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn {
  width: 100% !important;
  height: 52px !important;
  min-height: 52px !important;
  border-radius: 16px !important;
  font-size: 14px !important;
  font-weight: 900 !important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn-primary {
  background: var(--jood-checkout-navy) !important;
  border-color: var(--jood-checkout-navy) !important;
  color: #fff !important;
}
#jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn-ghost {
  background: #fff !important;
  border: 1px solid rgba(216,189,116,.45) !important;
  color: var(--jood-checkout-navy) !important;
}

@media (min-width: 900px) {
  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage[data-jood-checkout-stage="1"].is-active .jood-checkout-review-card--stage {
    display: grid !important;
    grid-template-columns: minmax(0,1fr) 360px !important;
    gap: 16px !important;
    align-items: start !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage[data-jood-checkout-stage="1"].is-active .jood-checkout-review-card__head {
    grid-column: 1 / -1 !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage[data-jood-checkout-stage="1"].is-active .jood-checkout-review-items--stage {
    margin: 0 !important;
  }
}

@media (max-width: 720px) {
  body.jood-checkout-immersive :where(.jood-app-header,.jood-mobile-header,.jood-app-bottom-nav,.jood-bottom-nav,.jood-app-footer,.jood-mobile-search,.jood-search-shell,.jood-store-search) {
    display: initial !important;
    visibility: visible !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-app-main {
    padding: 10px 10px 96px !important;
    overflow: visible !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-page {
    width: 100% !important;
    max-width: 100% !important;
    gap: 8px !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero {
    min-height: 0 !important;
    padding: 10px 12px !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    border-radius: 16px !important;
    box-shadow: none !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary {
    display: none !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero h2,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero h1 {
    font-size: 19px !important;
    margin: 4px 0 3px !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero p {
    font-size: 11px !important;
    line-height: 1.4 !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip {
    min-height: 42px !important;
    padding: 8px 10px !important;
    grid-template-columns: 1fr auto !important;
    gap: 6px !important;
    border-radius: 14px !important;
    font-size: 10px !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip p {
    display: none !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip a {
    min-height: 30px !important;
    padding: 6px 9px !important;
    font-size: 10px !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-layout {
    padding: 7px !important;
    border-radius: 16px !important;
    box-shadow: none !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs {
    margin: 0 0 8px !important;
    padding: 4px !important;
    gap: 4px !important;
    border-radius: 13px !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button {
    height: 34px !important;
    min-height: 34px !important;
    padding: 4px !important;
    gap: 3px !important;
    border-radius: 10px !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button span {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    font-size: 10px !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button strong {
    font-size: 9px !important;
    max-width: 44px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage.is-active {
    gap: 8px !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card--stage,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-payment-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-terms {
    padding: 10px !important;
    border-radius: 15px !important;
    box-shadow: none !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head {
    margin: 0 0 8px !important;
    padding: 0 0 7px !important;
    gap: 7px !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head h3,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head h3 {
    font-size: 17px !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head p,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head p {
    display: none !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head > .jood-svg-icon,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head > .jood-svg-icon {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    border-radius: 11px !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-items--stage {
    gap: 6px !important;
    margin: 0 0 7px !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item:nth-child(n+2) {
    display: none !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item {
    min-height: 54px !important;
    padding: 6px !important;
    grid-template-columns: 46px minmax(0,1fr) auto !important;
    gap: 7px !important;
    border-radius: 12px !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__image {
    width: 46px !important;
    height: 42px !important;
    border-radius: 9px !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content strong,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__total {
    font-size: 12px !important;
    line-height: 1.2 !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content small,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content em {
    font-size: 10px !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-totals,
  #jood-app.jood-app-shell-view-checkout .jood-cart-summary,
  #jood-app.jood-app-shell-view-checkout .jood-cart-summary__box,
  #jood-app.jood-app-shell-view-checkout .jood-summary-box {
    padding: 8px !important;
    border-radius: 13px !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-cart-summary :where(li, div, p) {
    min-height: 28px !important;
    padding: 5px 7px !important;
    font-size: 11px !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-form-grid {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    gap: 7px !important;
  }
  #jood-app.jood-app-shell-view-checkout :where(label) {
    font-size: 10px !important;
    margin: 0 0 2px !important;
  }
  #jood-app.jood-app-shell-view-checkout :where(input:not([type="radio"]):not([type="checkbox"]), select, textarea) {
    height: 38px !important;
    min-height: 38px !important;
    padding: 8px 10px !important;
    border-radius: 11px !important;
    font-size: 12px !important;
  }
  #jood-app.jood-app-shell-view-checkout textarea {
    height: 48px !important;
    min-height: 48px !important;
  }
  #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-methods,.jood-delivery-method-grid,.jood-fulfillment-methods,.jood-shipping-methods) {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    gap: 7px !important;
  }
  #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-method,.jood-fulfillment-method,.jood-shipping-method,.jood-payment-card) {
    min-height: 48px !important;
    padding: 8px !important;
    border-radius: 12px !important;
  }
  #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-method strong,.jood-fulfillment-method strong,.jood-shipping-method strong,.jood-payment-card strong) {
    font-size: 11px !important;
    line-height: 1.15 !important;
  }
  #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-method small,.jood-fulfillment-method small,.jood-shipping-method small,.jood-payment-card small) {
    font-size: 9px !important;
    line-height: 1.15 !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions {
    gap: 7px !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn {
    height: 42px !important;
    min-height: 42px !important;
    padding: 6px 8px !important;
    border-radius: 12px !important;
    font-size: 11px !important;
  }
}

/* =========================================================
 * JOOD CHECKOUT GLOBAL REBUILD FIX v4.2.15
 * الهدف: صفحة دفع طبيعية بعرض مضبوط، بدون قص يمين/شمال،
 * بدون إخفاء الهيدر/الفوتر، وبخلفية بيضاء منظمة.
 * ========================================================= */
html,
body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

body.jood-checkout-immersive {
  overflow-x: hidden !important;
  background: #FFF8EF !important;
}

body.jood-checkout-immersive :where(.jood-app-header,.jood-mobile-header,.jood-app-bottom-nav,.jood-bottom-nav,.jood-app-footer,.jood-mobile-search,.jood-search-shell,.jood-store-search) {
  display: initial !important;
  visibility: visible !important;
  opacity: 1 !important;
}

#jood-app.jood-app-shell-view-checkout,
#jood-app.jood-app-shell-view-checkout *,
#jood-app.jood-app-shell-view-checkout *::before,
#jood-app.jood-app-shell-view-checkout *::after {
  box-sizing: border-box !important;
}

#jood-app.jood-app-shell-view-checkout {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  background: #FFF8EF !important;
}

#jood-app.jood-app-shell-view-checkout .jood-app-main,
#jood-app.jood-app-shell-view-checkout main,
#jood-app.jood-app-shell-view-checkout .jood-page,
#jood-app.jood-app-shell-view-checkout .jood-page-shell,
#jood-app.jood-app-shell-view-checkout .jood-content,
#jood-app.jood-app-shell-view-checkout .jood-app-content {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
  overflow-x: hidden !important;
}

#jood-app.jood-app-shell-view-checkout .jood-app-main {
  padding-left: 16px !important;
  padding-right: 16px !important;
  padding-bottom: 110px !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-page {
  --jood-checkout-navy: #2B170F;
  --jood-checkout-gold: #d9bd76;
  --jood-checkout-gold-soft: #f7efd9;
  --jood-checkout-border: rgba(217,189,118,.42);
  width: min(1180px, calc(100vw - 32px)) !important;
  max-width: min(1180px, calc(100vw - 32px)) !important;
  min-width: 0 !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 14px !important;
  overflow: visible !important;
  transform: none !important;
  left: auto !important;
  right: auto !important;
  position: relative !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 16px 18px !important;
  border-radius: 22px !important;
  border: 1px solid var(--jood-checkout-border) !important;
  background: #fff !important;
  box-shadow: 0 16px 40px rgba(10,22,37,.05) !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-hero h1,
#jood-app.jood-app-shell-view-checkout .jood-checkout-hero h2 {
  color: var(--jood-checkout-navy) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-steps {
  display: none !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 12px 16px !important;
  display: grid !important;
  grid-template-columns: auto minmax(0,1fr) auto !important;
  align-items: center !important;
  gap: 12px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(217,189,118,.38) !important;
  background: #fff !important;
  color: var(--jood-checkout-navy) !important;
  box-shadow: 0 10px 30px rgba(10,22,37,.04) !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip div {
  min-width: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: var(--jood-checkout-navy) !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip p {
  margin: 0 !important;
  min-width: 0 !important;
  color: #5f6878 !important;
  font-size: 12px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip a {
  min-height: 34px !important;
  padding: 7px 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: var(--jood-checkout-navy) !important;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-form,
#jood-app.jood-app-shell-view-checkout .jood-checkout-layout,
#jood-app.jood-app-shell-view-checkout .jood-checkout-main,
#jood-app.jood-app-shell-view-checkout .jood-checkout-main--wizard {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  transform: none !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-layout {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 14px !important;
  border-radius: 22px !important;
  border: 1px solid var(--jood-checkout-border) !important;
  background: #fff !important;
  box-shadow: 0 16px 42px rgba(10,22,37,.055) !important;
  overflow: visible !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 0 14px !important;
  padding: 6px !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 8px !important;
  border-radius: 18px !important;
  background: #FFF8EF !important;
  border: 1px solid rgba(217,189,118,.35) !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button {
  min-width: 0 !important;
  width: 100% !important;
  height: 46px !important;
  min-height: 46px !important;
  padding: 7px 8px !important;
  border-radius: 14px !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-stage,
#jood-app.jood-app-shell-view-checkout .jood-checkout-stage.is-active {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow: visible !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-stage.is-active {
  display: grid !important;
  grid-template-columns: minmax(0,1fr) !important;
  gap: 14px !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card--stage,
#jood-app.jood-app-shell-view-checkout .jood-checkout-payment-card,
#jood-app.jood-app-shell-view-checkout .jood-checkout-terms,
#jood-app.jood-app-shell-view-checkout .jood-checkout-stage-totals,
#jood-app.jood-app-shell-view-checkout .jood-cart-summary,
#jood-app.jood-app-shell-view-checkout .jood-cart-summary__box,
#jood-app.jood-app-shell-view-checkout .jood-summary-box {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-card,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-card--stage,
#jood-app.jood-app-shell-view-checkout .jood-checkout-payment-card,
#jood-app.jood-app-shell-view-checkout .jood-checkout-terms {
  padding: 18px !important;
  border-radius: 20px !important;
  border: 1px solid rgba(217,189,118,.36) !important;
  background: #fff !important;
  box-shadow: none !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  grid-template-columns: 76px minmax(0,1fr) auto !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content,
#jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__total {
  min-width: 0 !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0,1fr)) !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn {
  width: 100% !important;
  min-width: 0 !important;
  white-space: nowrap !important;
}

@media (min-width: 920px) {
  #jood-app.jood-app-shell-view-checkout .jood-checkout-page {
    width: min(1120px, calc(100vw - 48px)) !important;
    max-width: min(1120px, calc(100vw - 48px)) !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage[data-jood-checkout-stage="1"].is-active .jood-checkout-review-card--stage {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px) !important;
    gap: 16px !important;
    align-items: start !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage[data-jood-checkout-stage="1"].is-active .jood-checkout-review-card__head {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 720px) {
  html,
  body,
  #jood-app.jood-app-shell-view-checkout {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-app-main {
    width: 100% !important;
    max-width: 100% !important;
    padding: 8px 8px 96px !important;
    margin: 0 auto !important;
    overflow-x: hidden !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-page {
    width: calc(100vw - 16px) !important;
    max-width: calc(100vw - 16px) !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    padding: 0 !important;
    gap: 8px !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    overflow: visible !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 10px 12px !important;
    border-radius: 16px !important;
    text-align: start !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero h1,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero h2 {
    font-size: 20px !important;
    line-height: 1.2 !important;
    margin: 3px 0 !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-hero p {
    font-size: 11px !important;
    line-height: 1.45 !important;
    margin: 0 !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip {
    grid-template-columns: minmax(0,1fr) auto !important;
    padding: 8px 10px !important;
    border-radius: 14px !important;
    min-height: 42px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip p {
    display: none !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip a {
    min-height: 30px !important;
    padding: 5px 9px !important;
    font-size: 10px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-layout {
    width: 100% !important;
    max-width: 100% !important;
    padding: 8px !important;
    border-radius: 16px !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs {
    grid-template-columns: repeat(4, minmax(0,1fr)) !important;
    gap: 4px !important;
    padding: 4px !important;
    margin: 0 0 8px !important;
    border-radius: 13px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button {
    height: 34px !important;
    min-height: 34px !important;
    padding: 3px !important;
    gap: 2px !important;
    border-radius: 10px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button span {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    font-size: 10px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button strong {
    display: inline-block !important;
    max-width: 44px !important;
    font-size: 9px !important;
    line-height: 1.1 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage.is-active {
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card--stage,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-payment-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-terms {
    padding: 11px !important;
    border-radius: 15px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head {
    margin: 0 0 9px !important;
    padding: 0 0 8px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head h3,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head h3 {
    font-size: 18px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item {
    min-height: 62px !important;
    padding: 8px !important;
    grid-template-columns: 56px minmax(0,1fr) auto !important;
    gap: 8px !important;
    border-radius: 13px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__image {
    width: 56px !important;
    height: 48px !important;
    border-radius: 10px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content strong,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__total {
    font-size: 12px !important;
    line-height: 1.25 !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-cart-summary :where(li, div, p),
  #jood-app.jood-app-shell-view-checkout .jood-summary-box :where(li, div, p) {
    min-height: 34px !important;
    padding: 7px 9px !important;
    font-size: 12px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-form-grid {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-checkout :where(input:not([type="radio"]):not([type="checkbox"]), select, textarea) {
    height: 40px !important;
    min-height: 40px !important;
    padding: 8px 10px !important;
    border-radius: 12px !important;
    font-size: 12px !important;
  }

  #jood-app.jood-app-shell-view-checkout textarea {
    height: 52px !important;
    min-height: 52px !important;
  }

  #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-methods,.jood-delivery-method-grid,.jood-fulfillment-methods,.jood-shipping-methods) {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-method,.jood-fulfillment-method,.jood-shipping-method,.jood-payment-card) {
    min-height: 54px !important;
    padding: 9px !important;
    border-radius: 13px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    gap: 8px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn {
    height: 44px !important;
    min-height: 44px !important;
    padding: 6px 8px !important;
    border-radius: 13px !important;
    font-size: 11px !important;
  }
}

@media (max-width: 390px) {
  #jood-app.jood-app-shell-view-checkout .jood-app-main {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-page {
    width: calc(100vw - 12px) !important;
    max-width: calc(100vw - 12px) !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-layout {
    padding: 6px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card--stage,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-payment-card,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-terms {
    padding: 9px !important;
  }
}

/* ==========================================================
   v4.2.16 - Checkout two-elements width fix only
   Fixes: loyalty strip + stage action buttons clipping.
   ========================================================== */
#jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip,
#jood-app.jood-app-shell-view-checkout .jood-loyalty-strip{
  width:100% !important;
  max-width:100% !important;
  min-width:0 !important;
  box-sizing:border-box !important;
  margin-inline:0 !important;
  overflow:hidden !important;
  contain:layout paint !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip{
  display:grid !important;
  grid-template-columns:auto minmax(0,1fr) auto !important;
  align-items:center !important;
  gap:10px !important;
  padding:12px 14px !important;
  border-radius:18px !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip > div,
#jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip > p,
#jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip > a{
  min-width:0 !important;
  max-width:100% !important;
  box-sizing:border-box !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip > p{
  overflow-wrap:anywhere !important;
  white-space:normal !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip > a{
  justify-self:end !important;
  white-space:nowrap !important;
  max-width:100% !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions,
#jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions--split{
  width:100% !important;
  max-width:100% !important;
  min-width:0 !important;
  box-sizing:border-box !important;
  margin-inline:0 !important;
  overflow:hidden !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions--split{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr) !important;
  gap:10px !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn{
  width:100% !important;
  max-width:100% !important;
  min-width:0 !important;
  box-sizing:border-box !important;
  overflow:hidden !important;
}

#jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn span{
  min-width:0 !important;
  max-width:100% !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
}

@media (max-width:720px){
  #jood-app.jood-app-shell-view-checkout .jood-checkout-page,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-form,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-layout,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-main,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage,
  #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    box-sizing:border-box !important;
    overflow-x:hidden !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip{
    grid-template-columns:minmax(0,1fr) auto !important;
    gap:8px !important;
    padding:10px 12px !important;
    border-radius:16px !important;
    margin:8px 0 10px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip > p{
    grid-column:1 / -1 !important;
    font-size:11px !important;
    line-height:1.45 !important;
    margin:0 !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip > a{
    padding:7px 10px !important;
    font-size:11px !important;
    border-radius:999px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions{
    padding:0 !important;
    margin:10px 0 0 !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions--split{
    grid-template-columns:minmax(0,1fr) minmax(0,1fr) !important;
    gap:8px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn{
    height:auto !important;
    min-height:44px !important;
    padding:9px 8px !important;
    border-radius:14px !important;
    font-size:12px !important;
    line-height:1.15 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:6px !important;
  }

  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn .jood-svg-icon{
    width:15px !important;
    height:15px !important;
    min-width:15px !important;
  }
}

@media (max-width:390px){
  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions--split{
    gap:6px !important;
  }
  #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn{
    font-size:11px !important;
    padding-inline:6px !important;
  }
}

/* =========================================================
   99.99 CHECKOUT FINAL ISOLATED REBUILD v4.2.17
   Scope: checkout view only. Keeps header/search/footer intact.
========================================================= */
html body #jood-app.jood-app-shell-view-checkout,
html body #jood-app.jood-app-shell-view-checkout *{
  box-sizing:border-box!important;
}
html body #jood-app.jood-app-shell-view-checkout{
  --jood-co-navy:#2B170F;
  --jood-co-gold:#d9bd77;
  --jood-co-gold-soft:#f7edd8;
  --jood-co-border:#eadcc0;
  --jood-co-bg:#FFF8EF;
  --jood-co-card:#ffffff;
  --jood-co-text:#2B170F;
  --jood-co-muted:#7B6758;
  overflow-x:hidden!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-app-main,
html body #jood-app.jood-app-shell-view-checkout .jood-app-content,
html body #jood-app.jood-app-shell-view-checkout .jood-app-content-checkout{
  width:100%!important;
  max-width:100%!important;
  min-width:0!important;
  margin:0 auto!important;
  padding-left:0!important;
  padding-right:0!important;
  overflow-x:hidden!important;
  transform:none!important;
  float:none!important;
  clear:both!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-app-main{
  padding-top:clamp(12px,2vw,24px)!important;
  padding-bottom:calc(105px + env(safe-area-inset-bottom,0px))!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-page.jood-checkout-page--rebuilt{
  width:100%!important;
  max-width:100%!important;
  min-width:0!important;
  margin:0 auto!important;
  padding:0!important;
  overflow:visible!important;
  background:transparent!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-shell{
  width:min(1160px,calc(100% - 28px))!important;
  max-width:1160px!important;
  min-width:0!important;
  margin:0 auto!important;
  padding:0!important;
  display:block!important;
  overflow:visible!important;
  direction:rtl!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-hero.jood-checkout-hero--compact{
  width:100%!important;
  max-width:100%!important;
  margin:0 0 14px!important;
  padding:18px 22px!important;
  min-height:0!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:16px!important;
  background:linear-gradient(135deg,#fff,#FFF8EF)!important;
  border:1px solid var(--jood-co-border)!important;
  border-radius:22px!important;
  box-shadow:0 12px 32px rgba(10,22,37,.06)!important;
  overflow:hidden!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-hero__content{
  min-width:0!important;
  display:block!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-hero__content h2,
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-hero__content h1{
  margin:4px 0!important;
  color:var(--jood-co-navy)!important;
  font-size:clamp(24px,3vw,38px)!important;
  line-height:1.15!important;
  letter-spacing:0!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-hero__content p{
  margin:0!important;
  color:var(--jood-co-muted)!important;
  font-size:14px!important;
  line-height:1.7!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary{
  flex:0 0 auto!important;
  width:auto!important;
  min-width:190px!important;
  max-width:260px!important;
  margin:0!important;
  padding:12px 14px!important;
  display:grid!important;
  grid-template-columns:34px 1fr!important;
  gap:4px 10px!important;
  align-items:center!important;
  background:#fff!important;
  border:1px solid var(--jood-co-border)!important;
  border-radius:18px!important;
  color:var(--jood-co-navy)!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary .jood-svg-icon{
  grid-row:1 / span 3!important;
  width:34px!important;
  height:34px!important;
  min-width:34px!important;
  border-radius:12px!important;
  display:grid!important;
  place-items:center!important;
  background:var(--jood-co-navy)!important;
  color:var(--jood-co-gold)!important;
  border:0!important;
  box-shadow:none!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary svg{
  width:18px!important;
  height:18px!important;
  stroke:currentColor!important;
  fill:none!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary span,
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary small{
  color:var(--jood-co-muted)!important;
  font-size:11px!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary strong{
  color:var(--jood-co-navy)!important;
  font-size:14px!important;
}

/* Loyalty banner: one clean full-width row inside checkout shell */
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip,
html body #jood-app.jood-app-shell-view-checkout .jood-loyalty-strip.jood-checkout-loyalty-strip{
  width:100%!important;
  max-width:100%!important;
  min-width:0!important;
  margin:0 0 14px!important;
  padding:12px 14px!important;
  display:grid!important;
  grid-template-columns:minmax(190px,.9fr) minmax(220px,1fr) auto!important;
  align-items:center!important;
  gap:12px!important;
  background:var(--jood-co-navy)!important;
  color:#fff!important;
  border:1px solid rgba(217,189,119,.35)!important;
  border-radius:18px!important;
  overflow:hidden!important;
  box-shadow:0 14px 30px rgba(10,22,37,.08)!important;
  transform:none!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip > div,
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip > p,
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip > a{
  width:auto!important;
  min-width:0!important;
  max-width:100%!important;
  margin:0!important;
  position:static!important;
  transform:none!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip > div{
  display:flex!important;
  align-items:center!important;
  gap:10px!important;
  color:#fff!important;
  white-space:normal!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip .jood-svg-icon{
  width:34px!important;
  height:34px!important;
  min-width:34px!important;
  display:grid!important;
  place-items:center!important;
  border-radius:50%!important;
  background:rgba(217,189,119,.16)!important;
  color:var(--jood-co-gold)!important;
  border:1px solid rgba(217,189,119,.38)!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip svg{
  width:18px!important;
  height:18px!important;
  stroke:currentColor!important;
  fill:none!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip span{
  color:var(--jood-co-gold)!important;
  font-size:11px!important;
  line-height:1.2!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip strong{
  color:#fff!important;
  font-size:13px!important;
  line-height:1.4!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip p{
  color:#fff!important;
  opacity:.92!important;
  font-size:12px!important;
  line-height:1.6!important;
  text-align:center!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip a{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-height:38px!important;
  padding:9px 14px!important;
  border-radius:999px!important;
  background:#fff!important;
  color:var(--jood-co-navy)!important;
  border:0!important;
  text-decoration:none!important;
  font-weight:800!important;
  font-size:12px!important;
  white-space:nowrap!important;
}

/* Form and wizard: single clean container, no side columns */
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-form,
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-form--rebuilt,
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-layout,
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-rebuilt-layout,
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-layout,
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-main,
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-main--wizard{
  width:100%!important;
  max-width:100%!important;
  min-width:0!important;
  margin:0!important;
  padding:0!important;
  display:block!important;
  grid-template-columns:none!important;
  float:none!important;
  clear:both!important;
  overflow:visible!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-rebuilt-layout{
  padding:0!important;
  border-radius:0!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-main--wizard{
  background:var(--jood-co-card)!important;
  border:1px solid var(--jood-co-border)!important;
  border-radius:22px!important;
  box-shadow:0 16px 40px rgba(10,22,37,.07)!important;
  overflow:hidden!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs{
  width:100%!important;
  min-width:0!important;
  margin:0!important;
  padding:12px!important;
  display:grid!important;
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:10px!important;
  background:#fff!important;
  border:0!important;
  border-bottom:1px solid var(--jood-co-border)!important;
  border-radius:0!important;
  overflow:visible!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button{
  width:100%!important;
  min-width:0!important;
  min-height:50px!important;
  padding:8px 10px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:8px!important;
  flex-direction:row-reverse!important;
  border:1px solid var(--jood-co-border)!important;
  border-radius:14px!important;
  background:#fff!important;
  color:var(--jood-co-navy)!important;
  box-shadow:none!important;
  overflow:hidden!important;
  text-align:center!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button.is-active{
  background:var(--jood-co-navy)!important;
  border-color:var(--jood-co-navy)!important;
  color:#fff!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button span{
  width:24px!important;
  height:24px!important;
  min-width:24px!important;
  display:grid!important;
  place-items:center!important;
  border-radius:999px!important;
  background:#eef1f5!important;
  color:var(--jood-co-navy)!important;
  font-weight:900!important;
  font-size:12px!important;
  line-height:1!important;
  margin:0!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button.is-active span{
  background:var(--jood-co-gold)!important;
  color:var(--jood-co-navy)!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button strong{
  display:block!important;
  min-width:0!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
  white-space:nowrap!important;
  font-size:13px!important;
  line-height:1.2!important;
  font-weight:900!important;
  color:inherit!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage{
  display:none!important;
  width:100%!important;
  max-width:100%!important;
  min-width:0!important;
  margin:0!important;
  padding:18px!important;
  overflow:visible!important;
  background:#fff!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage.is-active{
  display:block!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-card,
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card,
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-payment-card,
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-terms,
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-totals,
html body #jood-app.jood-app-shell-view-checkout .jood-cart-summary,
html body #jood-app.jood-app-shell-view-checkout .jood-summary-box{
  width:100%!important;
  max-width:100%!important;
  min-width:0!important;
  margin:0 0 14px!important;
  padding:18px!important;
  background:#fff!important;
  border:1px solid var(--jood-co-border)!important;
  border-radius:18px!important;
  box-shadow:0 10px 24px rgba(10,22,37,.045)!important;
  overflow:hidden!important;
  transform:none!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage > :last-child{
  margin-bottom:0!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head,
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head{
  width:100%!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:12px!important;
  margin:0 0 14px!important;
  padding:0 0 12px!important;
  border-bottom:1px solid #f0e7d6!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head > div,
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head > div{
  min-width:0!important;
  flex:1 1 auto!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head h3,
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head h3{
  color:var(--jood-co-navy)!important;
  font-size:clamp(20px,2.4vw,30px)!important;
  line-height:1.25!important;
  margin:2px 0!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head p,
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head p{
  margin:0!important;
  color:var(--jood-co-muted)!important;
  font-size:12px!important;
  line-height:1.5!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head > .jood-svg-icon,
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head > .jood-svg-icon{
  order:2!important;
  width:46px!important;
  height:46px!important;
  min-width:46px!important;
  display:grid!important;
  place-items:center!important;
  border-radius:14px!important;
  background:var(--jood-co-navy)!important;
  color:var(--jood-co-gold)!important;
  border:0!important;
  box-shadow:none!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head > .jood-svg-icon svg,
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head > .jood-svg-icon svg{
  width:22px!important;
  height:22px!important;
  stroke:currentColor!important;
  fill:none!important;
}

/* First stage: desktop order details side-by-side */
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage--order .jood-checkout-order-card{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) minmax(280px,420px)!important;
  gap:18px!important;
  align-items:start!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage--order .jood-checkout-review-card__head{
  grid-column:1 / -1!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage--order .jood-checkout-review-items--stage{
  width:100%!important;
  min-width:0!important;
  display:flex!important;
  flex-direction:column!important;
  gap:12px!important;
  margin:0!important;
  padding:0!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage--order .jood-checkout-stage-totals{
  margin:0!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item{
  width:100%!important;
  max-width:100%!important;
  min-width:0!important;
  display:grid!important;
  grid-template-columns:72px minmax(0,1fr) auto!important;
  gap:12px!important;
  align-items:center!important;
  margin:0!important;
  padding:12px!important;
  border:1px solid var(--jood-co-border)!important;
  border-radius:16px!important;
  background:#fff!important;
  overflow:hidden!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__image{
  width:72px!important;
  height:72px!important;
  min-width:72px!important;
  border-radius:14px!important;
  background:#FFF8EF!important;
  border:1px solid #efe2ca!important;
  overflow:hidden!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__image img{
  width:100%!important;
  height:100%!important;
  object-fit:contain!important;
  display:block!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content{
  min-width:0!important;
  display:flex!important;
  flex-direction:column!important;
  gap:4px!important;
  text-align:right!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content strong{
  color:var(--jood-co-navy)!important;
  font-size:14px!important;
  line-height:1.35!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content small,
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content em{
  color:var(--jood-co-muted)!important;
  font-size:12px!important;
  line-height:1.35!important;
  font-style:normal!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__total{
  color:var(--jood-co-navy)!important;
  font-size:14px!important;
  font-weight:900!important;
  white-space:nowrap!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-cart-summary__box,
html body #jood-app.jood-app-shell-view-checkout .jood-summary-box,
html body #jood-app.jood-app-shell-view-checkout .jood-cart-summary{
  box-shadow:none!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-cart-summary :where(li,div,p),
html body #jood-app.jood-app-shell-view-checkout .jood-summary-box :where(li,div,p){
  max-width:100%!important;
}

/* Fields and option cards */
html body #jood-app.jood-app-shell-view-checkout .jood-form-grid{
  width:100%!important;
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:12px!important;
  margin:0!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-form-field,
html body #jood-app.jood-app-shell-view-checkout .form-row{
  width:100%!important;
  max-width:100%!important;
  min-width:0!important;
  margin:0!important;
}
html body #jood-app.jood-app-shell-view-checkout :where(input:not([type="radio"]):not([type="checkbox"]),select,textarea){
  width:100%!important;
  max-width:100%!important;
  min-height:48px!important;
  padding:10px 14px!important;
  border-radius:14px!important;
  border:1px solid var(--jood-co-border)!important;
  background:#fff!important;
  color:var(--jood-co-navy)!important;
  box-shadow:none!important;
  outline:none!important;
}
html body #jood-app.jood-app-shell-view-checkout textarea{
  min-height:74px!important;
  resize:vertical!important;
}
html body #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-methods,.jood-delivery-method-grid,.jood-fulfillment-methods,.jood-shipping-methods,.jood-payment-methods){
  width:100%!important;
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:12px!important;
  margin:0!important;
}
html body #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-method,.jood-fulfillment-method,.jood-shipping-method,.jood-payment-card){
  width:100%!important;
  min-width:0!important;
  margin:0!important;
  padding:14px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:10px!important;
  border:1px solid var(--jood-co-border)!important;
  border-radius:16px!important;
  background:#fff!important;
  color:var(--jood-co-navy)!important;
  box-shadow:none!important;
  overflow:hidden!important;
}
html body #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-method,.jood-fulfillment-method,.jood-shipping-method,.jood-payment-card).is-active,
html body #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-method,.jood-fulfillment-method,.jood-shipping-method,.jood-payment-card):has(input:checked){
  background:var(--jood-co-navy)!important;
  border-color:var(--jood-co-navy)!important;
  color:#fff!important;
}
html body #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-method,.jood-fulfillment-method,.jood-shipping-method,.jood-payment-card) input[type="radio"]{
  appearance:none!important;
  -webkit-appearance:none!important;
  width:18px!important;
  height:18px!important;
  min-width:18px!important;
  border-radius:50%!important;
  border:2px solid var(--jood-co-border)!important;
  background:#fff!important;
  box-shadow:inset 0 0 0 4px #fff!important;
  margin:0!important;
}
html body #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-method,.jood-fulfillment-method,.jood-shipping-method,.jood-payment-card) input[type="radio"]:checked{
  background:var(--jood-co-gold)!important;
  border-color:#fff!important;
}

/* Buttons row */
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions,
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions--split{
  width:100%!important;
  max-width:100%!important;
  min-width:0!important;
  margin:16px 0 0!important;
  padding:0!important;
  display:grid!important;
  grid-template-columns:1fr 1fr!important;
  gap:12px!important;
  align-items:center!important;
  overflow:visible!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn{
  width:100%!important;
  max-width:100%!important;
  min-width:0!important;
  min-height:52px!important;
  margin:0!important;
  padding:12px 14px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:8px!important;
  border-radius:16px!important;
  font-size:14px!important;
  font-weight:900!important;
  line-height:1.2!important;
  text-decoration:none!important;
  white-space:normal!important;
  overflow:hidden!important;
  transform:none!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn-primary,
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-place-order-button{
  background:var(--jood-co-navy)!important;
  border:1px solid var(--jood-co-navy)!important;
  color:#fff!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn-ghost{
  background:#fff!important;
  border:1px solid var(--jood-co-border)!important;
  color:var(--jood-co-navy)!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn .jood-svg-icon{
  width:18px!important;
  height:18px!important;
  min-width:18px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  color:currentColor!important;
}
html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn .jood-svg-icon svg{
  width:18px!important;
  height:18px!important;
  stroke:currentColor!important;
  fill:none!important;
}

@media (max-width: 782px){
  html body #jood-app.jood-app-shell-view-checkout .jood-app-main{
    padding-top:10px!important;
    padding-bottom:calc(96px + env(safe-area-inset-bottom,0px))!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-shell{
    width:calc(100% - 20px)!important;
    max-width:calc(100% - 20px)!important;
    margin-inline:auto!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-hero.jood-checkout-hero--compact{
    padding:12px 14px!important;
    border-radius:18px!important;
    margin-bottom:10px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-hero__summary{
    display:none!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-hero__content h2,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-hero__content h1{
    font-size:22px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-hero__content p{
    font-size:12px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip,
  html body #jood-app.jood-app-shell-view-checkout .jood-loyalty-strip.jood-checkout-loyalty-strip{
    grid-template-columns:1fr auto!important;
    gap:8px!important;
    padding:9px 10px!important;
    border-radius:16px!important;
    margin-bottom:10px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip p{
    grid-column:1 / -1!important;
    text-align:right!important;
    font-size:10px!important;
    line-height:1.35!important;
    opacity:.88!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip > div{
    gap:7px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip .jood-svg-icon{
    width:28px!important;
    height:28px!important;
    min-width:28px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip span{
    font-size:10px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip strong{
    font-size:11px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip a{
    min-height:32px!important;
    padding:7px 10px!important;
    font-size:10px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-main--wizard{
    border-radius:18px!important;
    overflow:hidden!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs{
    padding:8px!important;
    gap:6px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button{
    min-height:42px!important;
    padding:6px 5px!important;
    gap:4px!important;
    border-radius:12px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button span{
    width:22px!important;
    height:22px!important;
    min-width:22px!important;
    font-size:11px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button strong{
    font-size:10px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage{
    padding:10px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-card,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-payment-card,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-terms,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-totals,
  html body #jood-app.jood-app-shell-view-checkout .jood-cart-summary,
  html body #jood-app.jood-app-shell-view-checkout .jood-summary-box{
    padding:12px!important;
    border-radius:16px!important;
    margin-bottom:10px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head{
    gap:8px!important;
    margin-bottom:10px!important;
    padding-bottom:10px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head h3,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head h3{
    font-size:20px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head p,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head p{
    font-size:10.5px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head > .jood-svg-icon,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head > .jood-svg-icon{
    width:40px!important;
    height:40px!important;
    min-width:40px!important;
    border-radius:12px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage--order .jood-checkout-order-card{
    display:block!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item{
    grid-template-columns:58px minmax(0,1fr) auto!important;
    gap:8px!important;
    padding:10px!important;
    border-radius:14px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__image{
    width:58px!important;
    height:58px!important;
    min-width:58px!important;
    border-radius:12px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content strong,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__total{
    font-size:12px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content small,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content em{
    font-size:10.5px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-form-grid,
  html body #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-methods,.jood-delivery-method-grid,.jood-fulfillment-methods,.jood-shipping-methods,.jood-payment-methods){
    grid-template-columns:1fr!important;
    gap:9px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout :where(input:not([type="radio"]):not([type="checkbox"]),select,textarea){
    min-height:44px!important;
    padding:9px 12px!important;
    border-radius:13px!important;
    font-size:13px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout textarea{
    min-height:64px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-method,.jood-fulfillment-method,.jood-shipping-method,.jood-payment-card){
    padding:11px!important;
    border-radius:14px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions--split{
    gap:8px!important;
    margin-top:10px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn{
    min-height:46px!important;
    padding:10px 8px!important;
    border-radius:14px!important;
    font-size:12px!important;
    gap:5px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn .jood-svg-icon,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn .jood-svg-icon svg{
    width:15px!important;
    height:15px!important;
    min-width:15px!important;
  }
}
@media (max-width: 390px){
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-shell{
    width:calc(100% - 14px)!important;
    max-width:calc(100% - 14px)!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs{
    gap:4px!important;
    padding:6px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button{
    min-height:38px!important;
    padding:5px 3px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button span{
    width:20px!important;
    height:20px!important;
    min-width:20px!important;
    font-size:10px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button strong{
    font-size:9px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn{
    font-size:11px!important;
  }
}

/* =========================================================
   Jood Checkout Mobile Final Compact — v4.2.18
   Scope: checkout page only. No product/cart/modules changes.
   Goal: fit each checkout step inside mobile width with minimum vertical scroll.
   ========================================================= */
@media (max-width: 782px){
  html, body{
    overflow-x:hidden!important;
  }
  html body #jood-app.jood-app-shell-view-checkout,
  html body #jood-app.jood-app-shell-view-checkout *{
    box-sizing:border-box!important;
  }
  html body #jood-app.jood-app-shell-view-checkout{
    --jood-checkout-mobile-pad:10px;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-app-main{
    width:100%!important;
    max-width:100%!important;
    overflow-x:hidden!important;
    padding:6px var(--jood-checkout-mobile-pad) calc(92px + env(safe-area-inset-bottom,0px))!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-page,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-page--rebuilt,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-shell,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-form,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-layout,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-layout,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-main,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-main--wizard{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    margin-left:auto!important;
    margin-right:auto!important;
    padding-left:0!important;
    padding-right:0!important;
    overflow:visible!important;
    transform:none!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-page{
    margin:0!important;
    padding:0!important;
    background:transparent!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-shell{
    display:block!important;
    margin-top:0!important;
    margin-bottom:0!important;
  }

  /* Keep site header/search visible, but remove only the extra checkout title block on mobile. */
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-hero,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-hero--compact{
    display:none!important;
  }

  /* Loyalty banner: compact full-width app strip. */
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip,
  html body #jood-app.jood-app-shell-view-checkout .jood-loyalty-strip.jood-checkout-loyalty-strip,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip--inside{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    margin:0 0 7px!important;
    padding:7px 8px!important;
    display:grid!important;
    grid-template-columns:minmax(0,1fr) auto!important;
    align-items:center!important;
    gap:7px!important;
    border-radius:14px!important;
    overflow:hidden!important;
    background:#2B170F!important;
    color:#fff!important;
    border:0!important;
    box-shadow:0 8px 18px rgba(10,22,37,.10)!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip > div{
    min-width:0!important;
    display:flex!important;
    align-items:center!important;
    gap:6px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip .jood-svg-icon{
    width:24px!important;
    height:24px!important;
    min-width:24px!important;
    border-radius:9px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip span{
    display:none!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip strong{
    display:block!important;
    max-width:100%!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    white-space:nowrap!important;
    font-size:10.5px!important;
    line-height:1.25!important;
    color:#fff!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip p{
    display:none!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-loyalty-strip a{
    min-height:28px!important;
    padding:6px 9px!important;
    border-radius:999px!important;
    font-size:10px!important;
    line-height:1!important;
    white-space:nowrap!important;
    background:#fff!important;
    color:#2B170F!important;
  }

  /* Wizard frame: full mobile width, no side gaps, no clipping. */
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-main--wizard,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-rebuilt-layout .jood-checkout-main--wizard{
    border-radius:16px!important;
    border:1px solid rgba(226,211,184,.78)!important;
    background:#fff!important;
    box-shadow:0 10px 25px rgba(10,22,37,.07)!important;
    overflow:hidden!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    display:grid!important;
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
    gap:4px!important;
    padding:6px!important;
    margin:0!important;
    border-radius:0!important;
    background:#2B170F!important;
    overflow:hidden!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button{
    min-width:0!important;
    width:100%!important;
    min-height:34px!important;
    padding:4px 3px!important;
    border-radius:10px!important;
    display:flex!important;
    flex-direction:row-reverse!important;
    align-items:center!important;
    justify-content:center!important;
    gap:4px!important;
    overflow:hidden!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button span{
    width:18px!important;
    height:18px!important;
    min-width:18px!important;
    font-size:9px!important;
    line-height:18px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-wizard-tabs button strong{
    max-width:100%!important;
    font-size:9px!important;
    line-height:1!important;
    white-space:nowrap!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
  }

  /* Stage body: compact one-card view. */
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    padding:8px!important;
    margin:0!important;
    overflow:visible!important;
    background:#fff!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-card,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-order-card,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-payment-card,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-terms,
  html body #jood-app.jood-app-shell-view-checkout .jood-cart-summary,
  html body #jood-app.jood-app-shell-view-checkout .jood-summary-box,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-totals{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    margin:0 0 7px!important;
    padding:9px!important;
    border-radius:14px!important;
    overflow:hidden!important;
    box-shadow:none!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head{
    min-width:0!important;
    gap:7px!important;
    padding:0 0 7px!important;
    margin:0 0 7px!important;
    border-bottom:1px solid rgba(226,211,184,.55)!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head > .jood-svg-icon,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head > .jood-svg-icon{
    width:34px!important;
    height:34px!important;
    min-width:34px!important;
    border-radius:11px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head h3,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head h3{
    font-size:18px!important;
    line-height:1.1!important;
    margin:0!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head p,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head p,
  html body #jood-app.jood-app-shell-view-checkout .jood-section-kicker{
    display:none!important;
  }

  /* Order step compression. */
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-items,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-items--stage{
    display:block!important;
    margin:0!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-items--stage .jood-checkout-review-item:nth-child(n+2){
    display:none!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    display:grid!important;
    grid-template-columns:48px minmax(0,1fr) auto!important;
    gap:7px!important;
    align-items:center!important;
    padding:8px!important;
    border-radius:12px!important;
    margin:0 0 7px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__image{
    width:48px!important;
    height:48px!important;
    min-width:48px!important;
    border-radius:10px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content{
    min-width:0!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content strong,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__total{
    font-size:11.5px!important;
    line-height:1.2!important;
    white-space:nowrap!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content small,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-item__content em{
    font-size:10px!important;
    line-height:1.2!important;
  }

  /* Totals become a short 2-column receipt grid on mobile. */
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-totals{
    padding:8px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-totals .jood-cart-summary,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-totals .jood-summary-box{
    padding:8px!important;
    margin:0!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-totals :where(.jood-summary-row,.jood-cart-summary__row,.jood-cart-total-row,.jood-cart-summary-row){
    min-height:32px!important;
    padding:6px 8px!important;
    border-radius:11px!important;
    margin:0 0 6px!important;
    font-size:11px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-totals :where(.jood-summary-row strong,.jood-cart-summary__row strong,.jood-cart-total-row strong){
    font-size:12px!important;
  }

  /* Customer/delivery steps: compact fields. */
  html body #jood-app.jood-app-shell-view-checkout .jood-form-grid{
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:7px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-form-grid > *{
    min-width:0!important;
  }
  html body #jood-app.jood-app-shell-view-checkout :where(input:not([type="radio"]):not([type="checkbox"]),select,textarea){
    min-height:38px!important;
    height:auto!important;
    padding:7px 10px!important;
    border-radius:12px!important;
    font-size:12px!important;
    line-height:1.25!important;
  }
  html body #jood-app.jood-app-shell-view-checkout textarea{
    min-height:50px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout :where(label,.jood-field-label){
    font-size:10.5px!important;
    line-height:1.2!important;
    margin-bottom:4px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-methods,.jood-delivery-method-grid,.jood-fulfillment-methods,.jood-shipping-methods,.jood-payment-methods){
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:7px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-method,.jood-fulfillment-method,.jood-shipping-method,.jood-payment-card){
    min-width:0!important;
    min-height:46px!important;
    padding:8px!important;
    border-radius:12px!important;
    gap:5px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-method strong,.jood-fulfillment-method strong,.jood-shipping-method strong,.jood-payment-card strong){
    font-size:11.5px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout :where(.jood-delivery-method small,.jood-fulfillment-method small,.jood-shipping-method small,.jood-payment-card small){
    font-size:9.5px!important;
    line-height:1.25!important;
  }

  /* Navigation buttons: always within same width; no side gaps. */
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions--split{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    display:grid!important;
    grid-template-columns:1fr 1fr!important;
    gap:7px!important;
    margin:7px 0 0!important;
    padding:0!important;
    overflow:hidden!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn{
    min-width:0!important;
    width:100%!important;
    max-width:100%!important;
    min-height:40px!important;
    padding:8px 7px!important;
    border-radius:13px!important;
    font-size:11px!important;
    line-height:1.15!important;
    white-space:nowrap!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn .jood-svg-icon,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn .jood-svg-icon svg{
    width:14px!important;
    height:14px!important;
    min-width:14px!important;
  }
}

@media (max-width: 380px){
  html body #jood-app.jood-app-shell-view-checkout .jood-app-main{
    padding-left:6px!important;
    padding-right:6px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage{
    padding:6px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-card,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-order-card,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-payment-card,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-totals{
    padding:7px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-card__head h3,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card__head h3{
    font-size:16px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout .jood-form-grid{
    gap:6px!important;
  }
  html body #jood-app.jood-app-shell-view-checkout :where(input:not([type="radio"]):not([type="checkbox"]),select,textarea){
    min-height:35px!important;
    font-size:11px!important;
  }
}

/* =========================================================
   100.20 JOOD CHECKOUT MOBILE STAGE 2 + ADDRESS FIELD FIX - v4.2.19
   Scope: checkout only. Fixes empty vertical space under active step
   and makes city/address fields use the full card width on mobile.
========================================================= */
@media (max-width: 782px){
  html body #jood-app.jood-app-shell-view-checkout,
  html body #jood-app.jood-app-shell-view-checkout .jood-app-main,
  html body #jood-app.jood-app-shell-view-checkout .jood-app-content,
  html body #jood-app.jood-app-shell-view-checkout .jood-app-content-checkout,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-page,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-form,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-layout,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-main,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-main--wizard{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    margin-left:auto!important;
    margin-right:auto!important;
    box-sizing:border-box!important;
    overflow-x:hidden!important;
  }

  html body #jood-app.jood-app-shell-view-checkout .jood-app-main{
    padding-left:8px!important;
    padding-right:8px!important;
    padding-bottom:calc(76px + env(safe-area-inset-bottom,0px))!important;
  }

  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage.is-active{
    display:block!important;
    width:100%!important;
    max-width:100%!important;
    min-height:0!important;
    height:auto!important;
    max-height:none!important;
    overflow:visible!important;
    padding:8px!important;
    margin:0!important;
    background:#fff!important;
  }

  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage.is-active > :not(.jood-checkout-stage-actions){
    margin-bottom:8px!important;
  }

  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage.is-active > :not(.jood-checkout-stage-actions):last-of-type{
    margin-bottom:0!important;
  }

  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-card,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-review-card,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-order-card,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-payment-card,
  html body #jood-app.jood-app-shell-view-checkout .jood-delivery-slots-card,
  html body #jood-app.jood-app-shell-view-checkout .jood-branches-zones-card,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-totals{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    height:auto!important;
    min-height:0!important;
    max-height:none!important;
    overflow:visible!important;
    box-sizing:border-box!important;
  }

  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage[data-jood-checkout-stage="2"] .jood-checkout-customer-card{
    padding:10px!important;
    margin:0!important;
  }

  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage[data-jood-checkout-stage="2"] .jood-checkout-card__head{
    margin-bottom:8px!important;
    padding-bottom:8px!important;
  }

  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage[data-jood-checkout-stage="2"] .jood-form-grid{
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:8px!important;
    align-items:start!important;
  }

  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage[data-jood-checkout-stage="2"] .jood-form-field{
    min-width:0!important;
    margin:0!important;
  }

  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage[data-jood-checkout-stage="2"] :where(input:not([type="radio"]):not([type="checkbox"]),select,textarea){
    width:100%!important;
    height:42px!important;
    min-height:42px!important;
    padding:8px 10px!important;
    border-radius:13px!important;
    font-size:12px!important;
  }

  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage[data-jood-checkout-stage="3"] .jood-form-field-billing_city,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage[data-jood-checkout-stage="3"] .jood-form-field-billing_address_1,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage[data-jood-checkout-stage="3"] .jood-form-field-billing_address_2,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage[data-jood-checkout-stage="3"] .jood-form-field-order_notes{
    grid-column:1 / -1!important;
    width:100%!important;
    max-width:100%!important;
  }

  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage[data-jood-checkout-stage="3"] .jood-form-field-billing_city input,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage[data-jood-checkout-stage="3"] .jood-form-field-billing_city select{
    width:100%!important;
    max-width:100%!important;
  }

  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions,
  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions--split{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    display:grid!important;
    grid-template-columns:1fr 1fr!important;
    gap:8px!important;
    margin-top:8px!important;
    padding:0!important;
    overflow:hidden!important;
    box-sizing:border-box!important;
  }

  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage-actions .jood-btn{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    min-height:42px!important;
    height:42px!important;
    padding:8px!important;
    border-radius:14px!important;
    box-sizing:border-box!important;
  }
}

@media (max-width: 430px){
  html body #jood-app.jood-app-shell-view-checkout .jood-app-main{
    padding-left:6px!important;
    padding-right:6px!important;
    padding-bottom:calc(72px + env(safe-area-inset-bottom,0px))!important;
  }

  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage.is-active{
    padding:6px!important;
  }

  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage[data-jood-checkout-stage="2"] .jood-form-grid{
    gap:7px!important;
  }

  html body #jood-app.jood-app-shell-view-checkout .jood-checkout-stage[data-jood-checkout-stage="2"] :where(input:not([type="radio"]):not([type="checkbox"]),select,textarea){
    height:40px!important;
    min-height:40px!important;
    font-size:11.5px!important;
  }
}

/* =========================================================
   Jood Loyalty Pro v4.2.22 — isolated checkout/account styles
   ========================================================= */
.jood-loyalty-pro-checkout,
.jood-loyalty-pro-checkout *{box-sizing:border-box}
.jood-loyalty-pro-checkout{width:100%;margin:14px 0 0;padding:16px;border-radius:22px;border:1px solid rgba(214,185,129,.34);background:linear-gradient(135deg,#fff 0%,#FFF8EF 100%);box-shadow:0 12px 30px rgba(10,22,37,.055);overflow:hidden;direction:rtl;text-align:right;color:#2B170F}
.jood-loyalty-pro-checkout__head{display:flex;align-items:flex-start;gap:12px;margin-bottom:13px}
.jood-loyalty-pro-medal{flex:0 0 42px;width:42px;height:42px;border-radius:16px;display:grid;place-items:center;background:#2B170F;color:#D7B179;font-size:18px;line-height:1;box-shadow:0 10px 22px rgba(10,22,37,.18)}
.jood-loyalty-pro-checkout__head h3{margin:2px 0 4px;color:#2B170F;font-size:17px;font-weight:900;letter-spacing:-.2px}
.jood-loyalty-pro-checkout__head p{margin:0;color:#8B5A36;font-size:12.5px;font-weight:700;line-height:1.75}
.jood-loyalty-pro-balance{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;margin:0 0 10px}
.jood-loyalty-pro-balance>div{min-width:0;background:#fff;border:1px solid #F6E9D8;border-radius:16px;padding:10px 11px;box-shadow:0 6px 18px rgba(10,22,37,.035)}
.jood-loyalty-pro-balance span{display:block;color:#9A806D;font-size:11px;font-weight:800;margin-bottom:4px}
.jood-loyalty-pro-balance strong{display:block;color:#2B170F;font-size:13px;font-weight:900;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.jood-loyalty-pro-input{display:grid;gap:7px;margin-top:8px}
.jood-loyalty-pro-input>span{font-size:12px;font-weight:900;color:#2B170F}
.jood-loyalty-pro-input>b{display:grid;grid-template-columns:1fr auto;gap:8px;align-items:center;background:#fff;border:1px solid #F6E9D8;border-radius:18px;padding:8px;box-shadow:0 8px 20px rgba(10,22,37,.04)}
.jood-loyalty-pro-input input{width:100%;min-height:42px;border:0!important;background:#FFF8EF!important;border-radius:13px!important;padding:0 12px!important;font-weight:900;color:#2B170F;box-shadow:none!important;text-align:right}
.jood-loyalty-pro-input button,.jood-loyalty-pro-login a{min-height:42px;border:0;border-radius:13px;background:#2B170F;color:#fff;padding:0 14px;font-weight:900;cursor:pointer;text-decoration:none;display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;box-shadow:0 10px 22px rgba(10,22,37,.16)}
.jood-loyalty-pro-hint{display:block;margin-top:8px;color:#9A806D;font-size:11.5px;font-weight:700;line-height:1.7}
.jood-loyalty-pro-empty,.jood-loyalty-pro-login{display:flex;align-items:center;justify-content:space-between;gap:10px;background:#fff;border:1px dashed rgba(214,185,129,.75);border-radius:17px;padding:12px;color:#8B5A36;font-size:12px;font-weight:800;line-height:1.7}
.jood-loyalty-pro-login strong{color:#2B170F;font-size:13px}
.jood-loyalty-pro-account{margin:14px 0;background:#fff;border:1px solid #F6E9D8;border-radius:20px;padding:13px;box-shadow:0 10px 26px rgba(10,22,37,.04)}
.jood-loyalty-pro-account__stats{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px;margin-bottom:10px}
.jood-loyalty-pro-account__stats>div{background:#FFF8EF;border-radius:15px;padding:10px;border:1px solid #F6E9D8}
.jood-loyalty-pro-account__stats span{display:block;color:#9A806D;font-size:11px;font-weight:800;margin-bottom:4px}
.jood-loyalty-pro-account__stats strong{display:block;color:#2B170F;font-size:13px;font-weight:900}
.jood-loyalty-pro-history{display:grid;gap:7px}.jood-loyalty-pro-history>strong{font-size:12px;color:#2B170F;font-weight:900}.jood-loyalty-pro-history p{margin:0;display:flex;justify-content:space-between;gap:10px;align-items:center;background:#FFF8EF;border:1px solid rgba(214,185,129,.28);border-radius:13px;padding:8px 10px;color:#8B5A36;font-size:11.5px;font-weight:800}.jood-loyalty-pro-history b{color:#2B170F;font-size:12px;white-space:nowrap}
@media (max-width: 768px){
  .jood-loyalty-pro-checkout{margin-top:10px;padding:12px;border-radius:18px;width:100%;max-width:100%;box-shadow:0 8px 18px rgba(10,22,37,.045)}
  .jood-loyalty-pro-checkout__head{gap:9px;margin-bottom:10px}.jood-loyalty-pro-medal{width:36px;height:36px;flex-basis:36px;border-radius:13px;font-size:15px}.jood-loyalty-pro-checkout__head h3{font-size:15px;margin:0 0 2px}.jood-loyalty-pro-checkout__head p{font-size:11.5px;line-height:1.55}
  .jood-loyalty-pro-balance{grid-template-columns:repeat(3,minmax(0,1fr));gap:6px}.jood-loyalty-pro-balance>div{padding:8px 7px;border-radius:13px}.jood-loyalty-pro-balance span{font-size:9.8px;margin-bottom:3px}.jood-loyalty-pro-balance strong{font-size:11px}
  .jood-loyalty-pro-input>b{grid-template-columns:1fr;gap:7px;padding:7px;border-radius:15px}.jood-loyalty-pro-input input{min-height:38px}.jood-loyalty-pro-input button{min-height:38px;width:100%}.jood-loyalty-pro-hint{font-size:10.8px;line-height:1.55;margin-top:6px}.jood-loyalty-pro-empty,.jood-loyalty-pro-login{display:grid;gap:8px;padding:10px;border-radius:15px}.jood-loyalty-pro-login a{width:100%;min-height:38px}.jood-loyalty-pro-account{padding:10px;border-radius:17px}.jood-loyalty-pro-account__stats{gap:7px}.jood-loyalty-pro-account__stats>div{padding:8px;border-radius:13px}.jood-loyalty-pro-history p{padding:7px 8px;border-radius:12px;font-size:10.8px}
}
@media (max-width: 380px){.jood-loyalty-pro-balance{grid-template-columns:1fr}.jood-loyalty-pro-account__stats{grid-template-columns:1fr}}

/* =========================================================
   Jood Order Reviews - isolated responsive module v4.2.24
   ========================================================= */
.jood-reviews-account-panel,
.jood-reviews-product-section,
.jood-reviews-form-panel{
    direction: rtl;
    text-align: right;
    box-sizing: border-box;
}
.jood-reviews-account-panel *,
.jood-reviews-product-section *,
.jood-reviews-form-panel *{
    box-sizing: border-box;
}
.jood-reviews-account-panel{
    width: 100%;
    margin: 16px 0 18px;
    padding: clamp(16px, 2.5vw, 24px);
    border: 1px solid rgba(231,237,244,.95);
    border-radius: 26px;
    background:
        radial-gradient(circle at 0% 0%, rgba(214,185,129,.13), transparent 34%),
        linear-gradient(180deg,#ffffff 0%,#fbfcfe 100%);
    box-shadow: 0 14px 36px rgba(10,22,37,.065);
    overflow: hidden;
}
.jood-reviews-account-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:14px;
    margin-bottom:14px;
}
.jood-reviews-account-head h2{
    margin:4px 0 6px;
    font-size: clamp(18px, 2.2vw, 24px);
    line-height:1.25;
    font-weight:950;
    color:#2B170F;
    letter-spacing:-.35px;
}
.jood-reviews-account-head p{
    margin:0;
    color:#7B6758;
    font-size:13px;
    line-height:1.85;
    font-weight:700;
}
.jood-reviews-account-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
}
.jood-reviews-account-card{
    min-width:0;
    padding:14px;
    border:1px solid #F6E9D8;
    border-radius:20px;
    background:#fff;
    box-shadow:0 10px 24px rgba(10,22,37,.045);
    display:flex;
    flex-direction:column;
    gap:8px;
}
.jood-reviews-account-card span,
.jood-reviews-account-card small{
    color:#7B6758;
    font-size:12px;
    font-weight:800;
}
.jood-reviews-account-card strong{
    color:#2B170F;
    font-size:20px;
    font-weight:950;
}
.jood-reviews-account-card .jood-btn{
    width:100%;
    justify-content:center;
    min-height:42px;
}
.jood-reviews-account-history{
    display:grid;
    gap:9px;
    margin-top:13px;
}
.jood-reviews-account-history div{
    display:flex;
    justify-content:space-between;
    gap:12px;
    align-items:center;
    border:1px solid #edf1f6;
    border-radius:16px;
    background:#fff;
    padding:10px 12px;
}
.jood-reviews-account-history strong{
    color:#2B170F;
    font-size:13px;
    font-weight:900;
}
.jood-reviews-account-history span{
    color:#B9854D;
    font-size:12px;
    font-weight:900;
    white-space:nowrap;
}
.jood-reviews-account-notice{
    width:100%;
    margin:0 0 14px;
    padding:12px 14px;
    border-radius:18px;
    border:1px solid rgba(214,185,129,.42);
    background:#FFF8EF;
    color:#6f4d10;
    font-size:13px;
    font-weight:900;
    line-height:1.8;
}
.jood-reviews-form{
    display:grid;
    gap:14px;
}
.jood-reviews-rating-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
}
.jood-reviews-rating-field,
.jood-reviews-note-field{
    display:grid;
    gap:8px;
    min-width:0;
}
.jood-reviews-rating-field span,
.jood-reviews-note-field span{
    color:#2B170F;
    font-size:13px;
    font-weight:900;
}
.jood-reviews-rating-field select,
.jood-reviews-note-field textarea{
    width:100%;
    max-width:100%;
    border:1px solid #dfe7ef;
    border-radius:18px;
    background:#fff;
    color:#2B170F;
    font-size:14px;
    font-weight:800;
    outline:0;
    box-shadow:none;
}
.jood-reviews-rating-field select{
    min-height:50px;
    padding:0 14px;
}
.jood-reviews-note-field textarea{
    resize:vertical;
    min-height:116px;
    padding:13px 14px;
    line-height:1.8;
}
.jood-reviews-form-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}
.jood-reviews-form-actions .jood-btn{
    width:100%;
    justify-content:center;
    min-height:48px;
}
.jood-reviews-order-btn,
.jood-reviews-account-badge{
    width:100%;
    justify-content:center;
    min-height:38px;
    margin-top:8px;
}
.jood-reviews-account-badge{
    display:inline-flex;
    align-items:center;
    border-radius:999px;
    padding:8px 12px;
    background:#f7f1e6;
    border:1px solid rgba(214,185,129,.48);
    color:#7a5a1c;
    font-size:12px;
    font-weight:950;
}
.jood-reviews-product-section{
    margin-top:18px;
}
.jood-reviews-product-head{
    display:flex;
    justify-content:space-between;
    gap:18px;
    align-items:flex-end;
    margin-bottom:14px;
}
.jood-reviews-product-head h3{
    margin:4px 0 6px;
    color:#2B170F;
    font-size:clamp(19px,2.4vw,26px);
    font-weight:950;
    letter-spacing:-.35px;
}
.jood-reviews-product-head p{
    margin:0;
    color:#7B6758;
    font-size:13px;
    font-weight:700;
    line-height:1.8;
}
.jood-reviews-product-score{
    min-width:116px;
    border-radius:22px;
    padding:12px 14px;
    background:#2B170F;
    color:#fff;
    text-align:center;
    box-shadow:0 14px 30px rgba(10,22,37,.15);
}
.jood-reviews-product-score strong{
    display:block;
    color:#fff;
    font-size:25px;
    font-weight:950;
    line-height:1;
}
.jood-reviews-product-score span{
    display:block;
    margin-top:6px;
    color:#D7B179;
    font-size:13px;
    letter-spacing:1px;
}
.jood-reviews-product-rail{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:14px;
}
.jood-reviews-card{
    min-width:0;
    border:1px solid #F6E9D8;
    border-radius:22px;
    background:#fff;
    padding:16px;
    box-shadow:0 12px 30px rgba(10,22,37,.055);
}
.jood-reviews-card-stars{
    color:#B9854D;
    letter-spacing:1px;
    font-size:15px;
    font-weight:950;
    margin-bottom:9px;
}
.jood-reviews-card p{
    margin:0 0 12px;
    color:#475467;
    font-size:13px;
    line-height:1.9;
    font-weight:700;
}
.jood-reviews-card strong{
    color:#2B170F;
    font-size:13px;
    font-weight:950;
}
@media (max-width: 860px){
    .jood-reviews-account-grid,
    .jood-reviews-rating-grid,
    .jood-reviews-product-rail{
        grid-template-columns:1fr;
    }
    .jood-reviews-product-head{
        align-items:stretch;
        flex-direction:column;
    }
    .jood-reviews-product-score{
        width:100%;
        display:flex;
        align-items:center;
        justify-content:space-between;
        text-align:right;
    }
}
@media (max-width: 560px){
    .jood-reviews-account-panel{
        margin:10px 0 12px;
        padding:12px;
        border-radius:20px;
    }
    .jood-reviews-account-head{
        display:block;
        margin-bottom:10px;
    }
    .jood-reviews-account-head h2{
        font-size:18px;
        margin-bottom:4px;
    }
    .jood-reviews-account-head p{
        font-size:12px;
        line-height:1.7;
    }
    .jood-reviews-account-card{
        padding:12px;
        border-radius:17px;
    }
    .jood-reviews-account-history div{
        align-items:flex-start;
        flex-direction:column;
        gap:5px;
    }
    .jood-reviews-form-actions{
        grid-template-columns:1fr;
    }
    .jood-reviews-rating-field select{
        min-height:46px;
        border-radius:15px;
    }
    .jood-reviews-note-field textarea{
        min-height:96px;
        border-radius:15px;
    }
    .jood-reviews-product-rail{
        display:flex;
        overflow-x:auto;
        gap:10px;
        padding:2px 0 8px;
        scroll-snap-type:x mandatory;
        -webkit-overflow-scrolling:touch;
    }
    .jood-reviews-card{
        flex:0 0 82%;
        scroll-snap-align:start;
        padding:14px;
        border-radius:19px;
    }
}


/* =========================================================
   COCH FURNITURE THEME OVERRIDE
   Wood identity isolation for كوخ الأثاث without touching plugin logic.
========================================================= */
#jood-app {
  --coch-dark: #2B170F;
  --coch-dark-2: #3A2116;
  --coch-brown: #6B3E25;
  --coch-brown-2: #8B5A36;
  --coch-wood: #B9854D;
  --coch-gold: #D7B179;
  --coch-cream: #F6E9D8;
  --coch-cream-2: #FFF8EF;
  --coch-text: #241812;
  --coch-muted: #7B6758;
  --jood-ink: var(--coch-dark) !important;
  --jood-ink-2: var(--coch-dark-2) !important;
  --jood-ink-3: #4A2A1D !important;
  --jood-gold: var(--coch-wood) !important;
  --jood-gold-2: var(--coch-gold) !important;
  --jood-gold-3: #E8C99A !important;
  --jood-gold-4: var(--coch-cream-2) !important;
  --jood-brown: var(--coch-brown) !important;
  --jood-brown-2: var(--coch-brown-2) !important;
  --jood-text: var(--coch-text) !important;
  --jood-muted: var(--coch-muted) !important;
  --jood-page-bg: #FFF8EF !important;
  --jood-page-bg-soft: #F6E9D8 !important;
  background:
    radial-gradient(circle at 14% 6%, rgba(185,133,77,.16), transparent 32%),
    radial-gradient(circle at 88% 0%, rgba(107,62,37,.10), transparent 34%),
    linear-gradient(180deg, #FFF8EF 0%, #FFFFFF 42%, #F6E9D8 100%) !important;
}
#jood-app .jood-app-shell,
#jood-app .jood-store-topbar,
#jood-app .jood-home-hero,
#jood-app .jood-category-hero,
#jood-app .jood-cart-page,
#jood-app .jood-checkout-page,
#jood-app .jood-account-page,
#jood-app .jood-product-page {
  background-image:
    radial-gradient(circle at 18% 12%, rgba(185,133,77,.13), transparent 34%),
    repeating-linear-gradient(135deg, rgba(107,62,37,.035) 0 8px, transparent 8px 18px) !important;
}
#jood-app .jood-btn-primary,
#jood-app button.jood-btn-primary,
#jood-app .jood-add-cart,
#jood-app .single_add_to_cart_button,
#jood-app .checkout-button,
#jood-app .button.alt {
  background: linear-gradient(135deg, #2B170F, #6B3E25 58%, #8B5A36) !important;
  color: #fff !important;
  border-color: rgba(215,177,121,.34) !important;
  box-shadow: 0 18px 42px rgba(43,23,15,.22) !important;
}
#jood-app .jood-btn-primary:hover,
#jood-app .jood-add-cart:hover,
#jood-app .single_add_to_cart_button:hover,
#jood-app .checkout-button:hover,
#jood-app .button.alt:hover {
  background: linear-gradient(135deg, #B9854D, #6B3E25) !important;
  transform: translateY(-2px);
}
#jood-app .jood-card,
#jood-app .jood-product-card,
#jood-app .jood-category-card,
#jood-app .jood-panel,
#jood-app .jood-cart-summary,
#jood-app .jood-checkout-card {
  border-color: rgba(185,133,77,.28) !important;
  box-shadow: 0 18px 48px rgba(43,23,15,.10) !important;
}
#jood-app .jood-product-card::before,
#jood-app .jood-category-card::before {
  background: linear-gradient(180deg, rgba(185,133,77,.80), rgba(107,62,37,.75)) !important;
}
#jood-app .jood-eyebrow,
#jood-app .jood-section-kicker,
#jood-app .jood-badge,
#jood-app .jood-product-badge,
#jood-app .onsale {
  background: rgba(185,133,77,.13) !important;
  color: #6B3E25 !important;
  border-color: rgba(185,133,77,.30) !important;
}
#jood-app .jood-price,
#jood-app .price,
#jood-app .amount {
  color: #6B3E25 !important;
}
#jood-app input:focus,
#jood-app select:focus,
#jood-app textarea:focus {
  border-color: #B9854D !important;
  box-shadow: 0 0 0 4px rgba(185,133,77,.14) !important;
}
#jood-app .jood-app-bottom-nav {
  border-color: rgba(185,133,77,.34) !important;
  background: rgba(255,248,239,.96) !important;
  box-shadow: 0 -16px 44px rgba(43,23,15,.16) !important;
}
#jood-app .jood-app-bottom-nav a.is-active,
#jood-app .jood-app-bottom-nav a:hover {
  background: linear-gradient(135deg, #2B170F, #6B3E25) !important;
  color: #fff !important;
}


/* =========================================================
   COCH FURNITURE WOOD IDENTITY - HARD ISOLATED OVERRIDE
   Brown / Wood / Cream palette only for #jood-app
========================================================= */
#jood-app{
  --jood-ink:#2B170F !important;
  --jood-ink-2:#3A2116 !important;
  --jood-ink-3:#4A2A1D !important;
  --jood-brown:#6B3E25 !important;
  --jood-brown-2:#8B5A36 !important;
  --jood-gold:#B9854D !important;
  --jood-gold-2:#D7B179 !important;
  --jood-gold-3:#E8C99A !important;
  --jood-gold-4:#FFF8EF !important;
  --jood-cream:#FFF8EF !important;
  --jood-cream-2:#F6E9D8 !important;
  --jood-cream-3:#EFE0CC !important;
  --jood-page-bg:#FFF8EF !important;
  --jood-page-bg-soft:#F6E9D8 !important;
  --jood-page-bg-warm:#FFF3E4 !important;
  --jood-surface:#FFFFFF !important;
  --jood-surface-soft:#FFF8EF !important;
  --jood-surface-muted:#F6E9D8 !important;
  --jood-text:#241812 !important;
  --jood-text-soft:#4A3428 !important;
  --jood-muted:#7B6758 !important;
  --jood-muted-2:#9A806D !important;
  --jood-border:rgba(107,62,37,.16) !important;
  --jood-border-2:rgba(185,133,77,.34) !important;
  --jood-border-3:#B9854D !important;
  --jood-dark-surface:#2B170F !important;
  --jood-dark-surface-2:#3A2116 !important;
  color:#241812 !important;
}
#jood-app .jood-app-page,
#jood-app .jood-store-page,
#jood-app .jood-category-page,
#jood-app .jood-product-page,
#jood-app .jood-cart-page,
#jood-app .jood-checkout-page,
#jood-app .jood-account-page{
  background:
    radial-gradient(circle at 10% 0%, rgba(185,133,77,.16), transparent 34%),
    radial-gradient(circle at 95% 12%, rgba(107,62,37,.10), transparent 30%),
    linear-gradient(180deg,#FFF8EF 0%,#F6E9D8 100%) !important;
  color:#241812 !important;
}
#jood-app :where(.jood-btn,.jood-primary-btn,.jood-add-cart,.jood-product-add-to-cart,.jood-checkout-submit,.jood-place-order-button,.button,.single_add_to_cart_button){
  background:linear-gradient(135deg,#2B170F,#6B3E25 55%,#8B5A36) !important;
  color:#FFFFFF !important;
  border-color:rgba(215,177,121,.45) !important;
  box-shadow:0 18px 42px rgba(43,23,15,.22) !important;
}
#jood-app :where(.jood-card,.jood-product-card,.jood-category-card,.jood-cart-card,.jood-checkout-card,.jood-account-card,.jood-panel,.jood-box){
  background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(255,248,239,.94)) !important;
  border-color:rgba(185,133,77,.34) !important;
  box-shadow:0 18px 52px rgba(43,23,15,.10) !important;
}
#jood-app :where(.jood-badge,.jood-chip,.jood-tag,.jood-mini-badge){
  background:linear-gradient(135deg,#FFF8EF,#F6E9D8) !important;
  color:#6B3E25 !important;
  border-color:rgba(185,133,77,.32) !important;
}
#jood-app :where(input,select,textarea){
  background:#FFFFFF !important;
  color:#241812 !important;
  border-color:rgba(107,62,37,.18) !important;
}
#jood-app :where(input:focus,select:focus,textarea:focus){
  border-color:#B9854D !important;
  box-shadow:0 0 0 4px rgba(185,133,77,.16) !important;
}
