/* Import Google Fonts for Montserrat */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;400;600;800&display=swap");

:root {
  /* Primary Brand Colors [cite: 20, 21, 27, 35] */
  --color-primary-dark: #233524;
  --color-primary-mid: #658875;

  /* Requested Background Color [cite: 33, 41] */
  /* Note: Guidelines specify #F1F1F1 or #E4C0BA; using your requested #E4E6D9 */
  --color-bg-main: #e4e6d9;

  /* Typography - Montserrat [cite: 68, 71] */
  --font-primary: "Montserrat", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: #fff;
}

ul {
  padding: 0;
  margin: 0;
}

body {
  color: var(--color-primary-dark);
  font-family: var(--font-primary);
  font-weight: 400; /* Regular weight [cite: 77] */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-color: #E4E6D9;
}

/* Header & Navigation */
header {
  background-color: #ffffff; /* Clean white for contrast */
  padding: 0 0;
  text-align: center;
}

.logo-wordmark {
  font-family: var(--font-primary);
  font-weight: 600; /* Semibold [cite: 77] */
  /* letter-spacing: 0.1em; */
  text-transform: uppercase;
  color: var(--color-primary-dark);
}

/* Typography Hierarchy [cite: 73, 75, 76, 77] */
h1,
h2,
h3 {
  font-family: var(--font-primary);
  color: var(--color-primary-dark);
  /* text-transform: uppercase; */
  margin-bottom: 1rem;
}

h1 {
  font-weight: 800; /* Extrabold for headlines [cite: 77] */
  font-size: 3rem;
}

h2 {
  font-weight: 600; /* Semibold [cite: 77] */
  font-size: 2rem;
}

p {
  font-weight: 400; /* Regular for body text [cite: 73, 77] */
  font-size: 1rem;
  max-width: 70ch;
}

.light-text {
  font-weight: 200; /* Extra Light [cite: 76] */
}

.thin-text {
  font-weight: 100; /* Thin [cite: 75] */
}

/* Elements & Buttons */
.btn-primary {
  background-color: var(--color-primary-dark);
  color: #ffffff;
  padding: 12px 24px;
  border: none;
  font-family: var(--font-primary);
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--color-primary-mid);
}

/* Clear Space Utility  */
.logo-container {
  padding: 40px; /* Ensuring no element invades the clear zone */
  display: inline-block;
}

/* Section Tones [cite: 43, 44, 45, 46] */
.section-muted {
  background-color: rgba(35, 53, 36, 0.1); /* 10% Tone variation */
}

/* navigation */

.jf-main-title {
  margin-bottom: 0;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
  color: #233524;
}

/* Header Scaffolding */
.jf-header-wrapper {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1000;
}

.jf-top-branding {
  border-bottom: 1px solid #eeeeee;
  padding: 15px 0;
  text-align: center;
  display: flex;
  justify-content: center;
}

.jf-top-branding img {
  width: 24%;
}

#nav_container {
  background-color: #233524;
  position: fixed;
  top: 95px;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: top 0.1s ease-in;
}

.jf-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

/* Logo Area */
.jf-logo-group {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.jf-header-balance {
  flex: 1;
}

.jf-gif-logo {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 50%;
}

.jf-company-logo {
  max-width: 100%;
}

.jf-company-logo img {
  width: 50px;
}

/* Nav Links */
.jf-nav-menu {
  display: flex;
  gap: 25px;
  width: max-content;

  justify-content: center;
}

.jf-nav-item,
.jf_nav_item {
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;

  padding: 25px 0;
  cursor: pointer;
  transition: color 0.3s;
}

.jf-nav-item:hover {
  color: #e5bb58;
}

.jf-nav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #333333;
  transition: width 0.3s;
  transform: translateX(-50%);
  left: 50%;
}

.jf-nav-item:hover::after {
  width: 100%;
}

/* Action Icons */
.jf-action-icons {
  display: flex;
  gap: 20px;
  flex: 1;
  justify-content: flex-end;
  color: #333333;
  align-items: center;
  position: relative;
}

#nav_container .jf-action-icons-nav {
  flex: 0 0 auto;
  margin-left: auto;
  color: #ffffff;
}

#nav_container .jf-action-icons-nav .jf-icon-btn,
#nav_container .jf-action-icons-nav .jf-cart-trigger {
  color: #ffffff;
}

#nav_container .jf-action-icons-nav .jf-icon-btn:hover {
  color: #ffffff;
  opacity: 0.78;
}

#nav_container .jf-action-icons-nav .jf-cart-badge {
  background: #ffffff;
  color: #233524;
}

.jf-icon-btn {
  cursor: pointer;
  transition: transform 0.2s;
  color: inherit;
  background: transparent;
  border: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.jf-icon-btn:hover {
  transform: translateY(-2px);
  color: #000000;
}

.jf-header-search {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.jf-search-popover {
  position: absolute;
  top: calc(100% + 18px);
  right: -8px;
  width: min(420px, calc(100vw - 32px));
  background: #fff;
  border: 1px solid #dfe4d9;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(31, 48, 38, .16);
  padding: 16px;
  z-index: 1100;
}

.jf-search-popover::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 14px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid #dfe4d9;
  border-top: 1px solid #dfe4d9;
  transform: rotate(45deg);
}

.jf-search-label {
  display: block;
  color: #233524;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.jf-search-field-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.jf-search-input {
  flex: 1;
  min-width: 0;
  border: 1px solid #d8d9cd;
  border-radius: 6px;
  height: 44px;
  padding: 0 14px;
  color: #233524;
  font-size: 15px;
  outline: none;
}

.jf-search-input:focus {
  border-color: #233524;
  box-shadow: 0 0 0 3px rgba(35, 53, 36, .08);
}

.jf-search-submit {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 6px;
  background: #233524;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.jf-search-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.jf-search-hints button {
  border: 1px solid #e2e0d8;
  border-radius: 999px;
  background: #f7f8f3;
  color: #233524;
  min-height: 30px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

/* MEGA MENU STYLES */
.jf-mega-menu {
  position: absolute;
  top: 87%;
  left: 0;
  right: 0;
  width: 100%;
  background: white;
  border-top: 1px solid #eeeeee;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 25% 1fr 25%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  max-height: 85vh;
  overflow: hidden;
  z-index: 999;
}

#nav_container:has(.jf-nav-has-mega:hover) #shared-mega-menu,
#shared-mega-menu:hover {
  opacity: 1;
  visibility: visible;
  /* transform: translateY(0); */
}

/* Left Sidebar of Mega Menu */
.jf-mega-sidebar {
  background: #ffff;
  border-right: 1px solid #e5e2d9;
  padding: 10px 0 0;
}

.jf-sidebar-link {
  padding: 10px 20px;
  font-size: 0.9rem;
  color: #666666;
  cursor: pointer;
  transition: all 0.2s ease;
  width: max-content;
  text-transform: capitalize;
  margin: 5px 0 0 10px;
}

.jf-sidebar-link:hover {
  color: #333333;
  background: rgba(255, 255, 255, 0.4);
}

.jf-sidebar-link.active {
  color: #333333;
  background: #E4E6D9;
  border-left-color: #333333;
  font-weight: 600;
  width: max-content;
  box-shadow: 2px 2px #ccc;
  margin: 5px 0 0 10px;
  border-radius: 10px;
}

/* Center Content of Mega Menu */
.jf-mega-content {
  padding: 10px 0px;
  display: flex;
  flex-direction: column;
  background: #fff;
  gap: 20px;
}

.jf-mega-content-combined {
  padding: 18px 34px;
}

.jf-combined-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 980px;
  margin: 0 auto;
}

.jf-combined-menu-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jf-combined-menu-head,
.jf-combined-menu-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(210px, 0.72fr);
  align-items: center;
  column-gap: 34px;
}

.jf-combined-menu-head {
  padding: 0 8px;
  color: #233524;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.jf-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0px;
  margin-bottom: 30px;
}

.jf-links-grid-category,
.jf-links-grid-price {
  margin-bottom: 0;
}

.jf-links-grid-price {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.jf-combined-menu-row .jf-content-item {
  width: 100%;
  margin: 0;
  min-height: 58px;
  border-radius: 8px;
}

.jf-combined-menu-row .jf-price-item {
  justify-self: stretch;
}

.jf-combined-menu-row .jf-price-item .jf-item-label {
  white-space: nowrap;
}

.jf-content-item {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 6px;
  transition: background 0.2s;
  text-decoration: none;
  color: #333333;
}

.jf-content-item:hover,
.jf-content-item.active {
  background: #E4E6D9;
}

.jf-item-icon {
  width: 36px;
  height: 36px;
  background: #E4E6D9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.jf-item-label {
  font-size: 0.9rem;
  font-weight: 400;
  color: #000;
}

/* Bottom Promo Banner in Menu */
.jf-mega-banner {
  margin-top: auto;
  border: 1px solid #E4E6D9;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  height: auto;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  width: 90%;
  margin: auto;
}

.sidebar_links {
  display: flex;
  justify-content: flex-start;
  gap: 48px;
  padding: 0 12px;
}

.meg_banner_inside {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.jf-banner-thumbs {
  display: flex;
  gap: 8px;
  width: 100%;
}

.jf-banner-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #E4E6D9;
}

.jf-banner-text,
.jf-view-all {
  display: none;
}

.jf-banner-text h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #333333;
}

.jf-banner-text p {
  font-size: 0.75rem;
  color: #666666;
  margin-bottom: 10px;
}

.jf-view-all {
  background: #333333;
  color: #E4E6D9;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  text-decoration: none;
  transition: background 0.2s;
}

.jf-view-all:hover {
  background: #000000;
}

/* Right Image Section of Mega Menu */
.jf-mega-promo {
  padding: 30px;
  /* background: #E4E6D9; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.jf-promo-card {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin-bottom: 15px;
  border: 1px solid #e5e2d9;
  background: #fafafa;
}

.jf-promo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.jf-promo-title {
  text-transform: none;
  font-size: 1.1rem;
  margin-bottom: 8px;
  line-height: 1.4;
  color: #333333;
  padding: 0 10px;
}

.jf-promo-link {
  color: #333333;
  font-size: 0.85rem;
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .jf-nav-container {
    padding: 0 15px;
  }
  .jf-nav-menu {
    display: none;
  }
  .jf-mega-menu {
    display: none;
  }
}

#nav_container:has(.jf-nav-has-mega:hover) #shared-mega-menu,
#shared-mega-menu:hover {
  opacity: 1;
  visibility: visible;
  /* transform:translateY(0); */
}

.jf-item-icon-box {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  background: #fbfaf5;
  border: 1px solid #eee7d7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(32, 56, 39, 0.08);
}

.jf-item-img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

/* hero section */

.jf-home-shell {
  min-height: 100vh;
  background: #ffffff;
}

.jf-home-shell-empty {
  min-height: 60vh;
}

.jf-hero-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
}

.jf-hero-video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: none;
}

.jf-hero-video-element {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.jf-hero-image-element {
  display: block;
}

.jf-media-broken {
  display: none !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .jf-hero-container {
    height: 100vh;
  }
  
}

/* second section */
.jf-slider-section {
  padding: 80px 40px 40px;
  background-color: #ffffff;

  overflow: hidden;
}

.jf-slider-container {
  /* max-width: 1400px; */
  margin: 0 auto;
  position: relative;
}

.jf-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

.jf-slider-title {
  font-weight: 400;
  font-size: 2.5rem;
  color: #1a1a1a;
}

/* Scroll Area */
.jf-slider-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  scrollbar-width: none; /* Firefox */
  padding-bottom: 10px;
}

.jf-slider-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* Individual Card */
.jf-slider-card {
  flex: 0 0 calc(25% - 18px); /* 4 items on desktop */
  min-width: 280px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 1024px) {
  .jf-slider-card {
    flex: 0 0 calc(50% - 12px);
  } /* 2 items on tablet */
}

@media (max-width: 640px) {
  .jf-slider-card {
    flex: 0 0 85%;
  } /* 1.2 items on mobile */
  .jf-slider-section {
    padding: 40px 20px;
  }
  .jf-slider-title {
    font-size: 1.8rem;
  }
}

.jf-slider-img-wrapper {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  /* background-color: #f9f9f9; */
  border: 1px solid #23352438;
  border-radius: 0;
  margin-bottom: 16px;
  position: relative;
}

.jf-slider-img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.jf-slider-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  /* letter-spacing: 0.15em; */
  color: #1a1a1a;
  font-weight: 500;
  margin-top: 12px;
  display: block;
}

/* Navigation Buttons */
.jf-slider-nav-group {
  display: flex;
  gap: 12px;
}

.jf-slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
}

.jf-slider-btn:hover {
  background: #E4E6D9;
  color: #658875;
}

.jf-slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.jf-showcase-wrapper {
  padding: 30px 40px 80px;
  background-color: #E4E6D9;
}

.showcase-title-container {
  padding: 0 40px 0;
  /* max-width: 1400px; */
  margin: 0 auto 30px;
}

.jf-showcase-container {
  display: flex;
  /* max-width: 1400px; */
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: #E4E6D9;
  min-height: 420px;
  min-width: 0;
}

/* Left Side: 40% - Hero Section */
.jf-showcase-hero {
  flex: 0 0 40%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 40px;
  color: #ffffff;
}

.jf-showcase-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3); /* Global overlay for depth */
}

.jf-showcase-hero-inner {
  position: relative;
  z-index: 10;

  padding: 30px;
}

.jf-showcase-title {
  color: #fff;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.jf-showcase-label {
  display: inline-block;
  padding: 6px 12px;
  background: #233524;
  color: #ffffff;
  border-radius: 4px;
  font-size: 0.7rem;
  text-transform: uppercase;
  /* letter-spacing: 2px; */
  margin-bottom: 12px;
}

/* Right Side: 60% - Product Slider Area */
.jf-showcase-slider-pane {
  flex: 0 0 60%;
  min-width: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #F1EFE9;
  overflow: hidden;
}

.jf-showcase-container-solo .jf-showcase-slider-pane {
  flex-basis: 100%;
}

.jf-showcase-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  margin-bottom: 25px;
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.jf-showcase-viewport::-webkit-scrollbar {
  display: none;
}

.jf-showcase-rail {
  display: flex;
  gap: 20px;
  width: max-content;
  min-width: 100%;
}

/* Product Cards adjusted for 2.2 visible layout */
.jf-showcase-card {
  flex: 0 0 clamp(260px, calc((100vw - 520px) / 3), 430px);
  width: clamp(260px, calc((100vw - 520px) / 3), 430px);
  color: inherit;
  text-decoration: none;
  
  /* background: #ffffff; */
  /* border-radius: 12px; */
  padding: 16px;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); */
  text-align: center;
  transition: transform 0.3s ease;
}

.jf-showcase-card:hover {
  /* transform: translateY(-5px); */
}

.jf-showcase-img-holder {
  width: 100%;
  aspect-ratio: 4/5; /* Fixed aspect ratio for consistency */
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jf-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px; /* Added border radius to image */
  transition: transform 0.5s ease;
  border: 1px solid #233524;
  border-radius: 10px;
}

/* .jf-showcase-card:hover .jf-showcase-img {
  transform: scale(1.1);
} */

.jf-showcase-prod-name {
  font-weight: 500;
  font-size: 0.9rem;
  color: #1a1a1a;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jf-showcase-prod-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #233524;
}

.jf-showcase-old-val {
  font-size: 0.8rem;
  color: #999999;
  text-decoration: line-through;
  margin-left: 6px;
}

/* Navigation Buttons */
.jf-showcase-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.jf-showcase-btn-wrap {
  display: flex;
  gap: 12px;
}

.jf-showcase-nav-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
}

.jf-showcase-nav-btn:hover {
  background: #E4E6D9;
  color: #658875;
}

.jf-showcase-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.jf-showcase-cta {
  background: #233524;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;

  /* letter-spacing: 0.05em; */
}

.jf-showcase-cta:hover {
  background: #658875;
  box-shadow: 0 5px 15px rgba(35, 53, 36, 0.2);
}

@media (max-width: 1024px) {
  .jf-showcase-container {
    flex-direction: column;
    min-height: auto;
  }
  .jf-showcase-hero,
  .jf-showcase-slider-pane {
    flex: 0 0 100%;
  }
  .jf-showcase-slider-pane{
    padding: 20px;
  }
  .jf-showcase-hero {
    min-height: 350px;
    padding: 0px;
  }
  .jf-showcase-card {
    flex: 0 0 min(420px, 72vw);
    width: min(420px, 72vw);
  }
}

@media (max-width: 640px) {
  .jf-showcase-wrapper {
    padding: 28px 12px 52px;
  }

  .jf-showcase-wrapper .jf-slider-title {
    font-size: clamp(2.4rem, 12vw, 3.1rem);
    line-height: 1.05;
  }

  .jf-showcase-container {
    border-radius: 14px;
    background: transparent;
    gap: 0;
  }

  .jf-showcase-hero {
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-radius: 14px 14px 0 0;
    overflow: hidden;
    align-items: flex-end;
    background-position: center top;
  }

  .jf-showcase-hero-inner {
    width: 100%;
    padding: 26px 28px 28px;
  }

  .jf-showcase-title {
    font-size: 1.6rem;
  }

  .jf-showcase-hero-inner .jf-showcase-title {
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 1.08;
  }

  .jf-showcase-hero-inner p {
    font-size: clamp(1.05rem, 5.8vw, 1.55rem);
    line-height: 1.45;
    margin: 14px 0 0;
  }

  .showcase-title-container{
    padding: 0;
    margin-bottom: 24px;
  }

  .jf-showcase-slider-pane {
    padding: 18px 16px 20px;
    border-radius: 0 0 14px 14px;
    background: #ffffff;
    justify-content: flex-start;
  }

  .jf-showcase-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: 18px;
  }

  .jf-showcase-rail {
    width: auto;
    min-width: 0;
    gap: 14px;
  }
 .jf-showcase-card {
    flex: 0 0 min(74vw, 270px);
    width: min(74vw, 270px);
    padding: 0;
    box-sizing: border-box;
    transform: none !important; /* Prevent hover transforms from breaking layout */
  }

  .jf-showcase-img-holder {
    aspect-ratio: 1 / 1;
    border: 1px solid #dfe3d8;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 10px;
  }

  .jf-showcase-img {
    border: 0;
    border-radius: 8px;
    object-fit: contain;
  }

  .jf-showcase-prod-name {
    font-size: 0.95rem;
    white-space: normal;
    line-height: 1.25;
    min-height: 2.4em;
  }

  .jf-showcase-prod-price {
    font-size: 1rem;
  }

  .jf-showcase-controls {
    gap: 14px;
  }

  .jf-showcase-btn-wrap {
    gap: 10px;
  }

  .jf-showcase-nav-btn {
    width: 38px;
    height: 38px;
  }

  .jf-showcase-cta {
    padding: 10px 16px;
    font-size: 0.85rem;
    white-space: nowrap;
  }
}

.jf-split-wrapper {
  padding: 0;
  /* max-width: 1400px; */
  margin: 0 auto;
  background: #ffffff;
}

.jf-split-grid {
  display: grid;
  /* 40% Left (Smaller), 60% Right (Bigger) as per screenshot */
  grid-template-columns: 2fr 3fr;
  gap: 40px;
  align-items: start;
}

/* Left Side: Content and Smaller Image */
.jf-split-left-col {
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.jf-split-img-container-left {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 30px;
}

.jf-split-img-container-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jf-split-text-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  padding: 0 24px 32px;
}

.jf-split-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  /* letter-spacing: 0.15em; */
  color: #233524;
  font-weight: 500;
  margin-bottom: 12px;
}

.jf-split-cta {
  font-size: 0.75rem;
  text-transform: uppercase;
  /* letter-spacing: 0.1em; */
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  margin-bottom: 25px;
}

.jf-split-cta:hover {
  border-bottom-color: #333;
}

/* Slider Navigation below left image */
.jf-split-nav {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #666;
}

.jf-split-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.jf-split-nav-btn:hover {
  color: #000;
}

.jf-split-counter {
  font-size: 0.7rem;
  font-weight: 400;
  /* letter-spacing: 0.05em; */
  min-width: 40px;
  text-align: center;
}

/* Right Side: Bigger Image */
.jf-split-right-col {
  width: 100%;
  height: 100%;
}

.jf-split-img-container-right {
  width: 100%;
  /* Fixed height or aspect ratio to ensure it looks larger */
  aspect-ratio: 4/4;
  overflow: hidden;
}

.jf-split-img-container-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
  .jf-split-wrapper {
    padding: 40px 20px;
  }
  .jf-split-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .jf-split-grid {
    grid-template-columns: 1fr;
  }
  .jf-split-right-col {
    order: -1; /* Image first on mobile stack */
    margin-bottom: 30px;
  }
  .jf-split-img-container-right {
    aspect-ratio: 1/1;
  }
}

#leftImage,
#rightImage {
  transition: opacity 1.5s ease-out;
}

.fade-out {
  opacity: 0;
}

.jf-feature-banner-wrapper {
  width: 100%;
  background: #ffffff;
}

.jf-feature-banner-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f8f7f2;
}

.jf-feature-banner-link {
  position: relative;
  display: block;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.jf-feature-banner-link-static {
  cursor: default;
}

.jf-feature-banner-asset {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.jf-feature-banner-content {
  position: absolute;
  left: clamp(28px, 7vw, 108px);
  bottom: clamp(32px, 8vw, 116px);
  max-width: min(470px, calc(100% - 56px));
  color: #233524;
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.35);
}

.jf-feature-banner-content h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: 0;
}

.jf-feature-banner-content p {
  margin: 0 0 20px;
  font-size: clamp(0.95rem, 1.35vw, 1.25rem);
  line-height: 1.55;
}

.jf-feature-banner-content .jf-feature-banner-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 22px;
  border-radius: 5px;
  background: #233524;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
}

.jf-feature-banner-nav {
  position: absolute;
  left: clamp(28px, 7vw, 108px);
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #233524;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(35, 53, 36, 0.12);
  border-radius: 999px;
  padding: 6px 10px;
  backdrop-filter: blur(8px);
}

.jf-feature-banner-btn {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #233524;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (max-width: 768px) {
  .jf-feature-banner-media {
    min-height: 0;
  }

  .jf-feature-banner-content {
    left: 22px;
    right: 22px;
    bottom: 78px;
    max-width: none;
  }

  .jf-feature-banner-nav {
    left: 22px;
  }
}

.jf-best-sellers-section {
  background: #ffffff;
  padding: clamp(48px, 7vw, 88px) clamp(18px, 4vw, 54px);
}

.jf-best-sellers-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto 28px;
  max-width: 1760px;
}

.jf-best-sellers-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #657060;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.jf-best-sellers-title {
  margin: 0;
  color: #1f2f20;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.jf-best-sellers-actions {
  display: inline-flex;
  gap: 10px;
}

.jf-best-sellers-viewport {
  max-width: 1760px;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.jf-best-sellers-viewport::-webkit-scrollbar {
  display: none;
}

.jf-best-sellers-rail {
  display: flex;
  gap: clamp(14px, 1.8vw, 28px);
  width: max-content;
  min-width: 100%;
}

.jf-best-seller-card {
  flex: 0 0 clamp(230px, 22vw, 390px);
  width: clamp(230px, 22vw, 390px);
  color: #1f2f20;
  text-decoration: none;
}

.jf-best-seller-image-wrap {
  width: 100%;
  aspect-ratio: 1930 / 2000;
  border: 1px solid #dfe3d8;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.jf-best-seller-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.jf-best-seller-info {
  padding: 16px 4px 0;
}

.jf-best-seller-name {
  display: block;
  color: #5f605d;
  font-size: 0.95rem;
  line-height: 1.35;
  min-height: 2.7em;
}

.jf-best-seller-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: #233524;
  font-size: 1.2rem;
  font-weight: 700;
}

.jf-best-seller-price span {
  color: #969696;
  font-size: 0.86rem;
  font-weight: 500;
  text-decoration: line-through;
}

@media (max-width: 768px) {
  .jf-best-sellers-section {
    padding: 42px 14px 54px;
  }

  .jf-best-sellers-header {
    align-items: center;
    margin-bottom: 22px;
  }

  .jf-best-sellers-title {
    font-size: clamp(2.2rem, 12vw, 3.1rem);
  }

  .jf-best-sellers-actions {
    flex-shrink: 0;
  }

  .jf-best-seller-card {
    flex-basis: min(72vw, 290px);
    width: min(72vw, 290px);
  }
}

.jf-lab-grown-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 520px;
  overflow: hidden;
  background-color: #f3efe6;
}

.jf-lab-grown-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background-color: #f3efe6;
}

@media (max-width: 768px) {
  .jf-lab-grown-viewport {
    min-height: 250px;
  }
}

/* All variables removed and replaced with direct values */
.jf-footer-root {
  background-color: #ffffff;
  position: relative;
  padding: 80px 5% 36px 5%;
  color: #333333;
  border-top: 0;
  margin-bottom: 0;
}

.jf-footer-root::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 0;
  height: 2px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(220, 210, 184, 0.38) 16%, rgba(176, 140, 73, 0.72) 50%, rgba(220, 210, 184, 0.38) 84%, transparent 100%);
  box-shadow: 0 10px 28px rgba(176, 140, 73, 0.12);
}

.jf-footer-root::after {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(222, 211, 184, 0.45) 18%, rgba(176, 140, 73, 0.7) 50%, rgba(222, 211, 184, 0.45) 82%, transparent 100%);
}

/* Footer Grid System */
.jf-footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, .9fr) minmax(220px, .9fr) minmax(420px, 1.35fr);
  justify-content: stretch;
  gap: clamp(64px, 11vw, 220px);
  width: min(100%, 1760px);
  margin: 0 auto 24px;
}

.jf-footer-col-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #233524;
  text-transform: uppercase;
  /* letter-spacing: 0.1em; */
}

.jf-footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jf-footer-link-item {
  margin-bottom: 12px;
}

.jf-footer-link {
  text-decoration: none;
  color: #666666;
  font-size: 0.9rem;
  transition: all 0.1s ease;
}

.jf-footer-link:hover {
  color: #233524;
  padding-left: 5px;
  font-weight: 500;
}

.jf-footer-address {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #666666;
  font-style: normal;
}

.jf-footer-address-line {
  display: block;
}

.jf-footer-address-line:first-of-type {
  color: #233524;
  font-weight: 600;
}

/* Bottom Section: Apps & Socials */
.jf-footer-bottom-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 40px;
  border-top: 1px solid #e5e5e5;
}

.jf-app-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 450px;
  border: 1px solid #e5e5e5;
}

.jf-app-text h4 {
  font-weight: 600;
  font-size: 1.2rem;
  color: #233524;
  margin-bottom: 6px;
}

.jf-app-text p {
  font-size: 0.85rem;
  color: #666666;
  line-height: 1.5;
}

.jf-store-buttons {
  display: flex;
  gap: 12px;
}

.jf-store-btn img {
  height: 38px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.jf-store-btn:hover img {
  transform: scale(1.08);
}

.jf-social-row {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 25px;
}

.jf-payment-row {
  display: flex;
  gap: 28px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

.jf-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  border: 1px solid #e5e5e5;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.jf-social-icon:hover {
  background: #233524;
  color: #ffffff;
  border-color: #233524;
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(35, 53, 36, 0.2);
}

/* Floating Support UI */
.jf-support-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.jf-support-timing {
  background: white;
  padding: 12px 18px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  font-size: 0.75rem;
  color: #333333;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  border: 1px solid #e5e5e5;
  text-align: right;
}

.jf-support-btn {
  width: 60px;
  height: 60px;
  background-color: #233524;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(35, 53, 36, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.jf-support-widget:hover .jf-support-timing {
  opacity: 1;
  transform: translateY(0);
}

.jf-support-btn:hover {
  transform: scale(1.1) rotate(5deg);
}

/* Responsive Logic */
@media (max-width: 1024px) {
  .jf-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .jf-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .jf-footer-bottom-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }
  .jf-store-buttons {
    justify-content: center;
  }
  .jf-social-row,
  .jf-payment-row {
    justify-content: center;
  }
  .jf-support-widget{
    bottom: 10px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .jf-footer-grid {
    grid-template-columns: 1fr;
  }
  .jf-footer-root {
    padding: 60px 20px 30px 20px;
  }
}

.cl-insider-section-wrapper {
  padding: 100px 20px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cl-insider-main-card {
  width: 100%;
  max-width: 1100px;
  min-height: 220px;
  /* Updated background to use #233524 as requested */
  background-color: #233524;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 30px 50px;
  box-sizing: border-box;
  gap: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Left Side: Branding and Text */
.cl-insider-brand-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 25px;
  min-width: 300px;
}

.cl-insider-gift-icon {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.cl-insider-text-group {
  color: #e4e6d9; /* Light color from palette */
}

.cl-insider-headline {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #fff;
  letter-spacing: 0.5px;
}

.cl-insider-subtext {
  font-size: 16px;
  opacity: 0.85;
  margin: 0;
  font-weight: 300;
}

/* Right Side: Form elements */
.cl-insider-form-container {
  flex: 1;
  max-width: 450px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cl-insider-input-field {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(228, 230, 217, 0.2);
  padding: 0 20px;
  font-size: 15px;
  box-sizing: border-box;
  background-color: #E4E6D9; /* Background color from palette */
  color: #233524;
}

.cl-insider-input-field::placeholder {
  color: #658875;
  opacity: 0.7;
}

.cl-insider-input-field:focus {
  outline: 2px solid #658875;
}

.cl-insider-submit-btn {
  width: 100%;
  height: 48px;
  background-color: #658875; /* Primary color from palette */
  color: #E4E6D9; /* Background color used as text for contrast */
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-transform: lowercase;
  transition:
    opacity 0.2s,
    transform 0.1s;
}

.cl-insider-submit-btn:hover {
  opacity: 0.9;
}

.cl-insider-submit-btn:active {
  transform: scale(0.98);
}

.cl-insider-radio-row {
  display: flex;
  gap: 20px;
  padding-left: 5px;
}

.cl-insider-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e4e6d9; /* Light color from palette */
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}

.cl-insider-radio-input {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #658875; /* Accent color for radio borders */
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  margin: 0;
}

.cl-insider-radio-input:checked {
  border-color: #e4e6d9;
}

.cl-insider-radio-input:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: #e4e6d9;
  border-radius: 50%;
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
  .cl-insider-main-card {
    padding: 40px;
    justify-content: center;
    text-align: center;
  }
  .cl-insider-brand-content {
    flex-direction: column;
    min-width: 100%;
  }
  .cl-insider-form-container {
    max-width: 100%;
    width: 100%;
  }
  .cl-insider-radio-row {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cl-insider-main-card {
    padding: 30px 20px;
  }
  .cl-insider-headline {
    font-size: 22px;
  }
  .cl-insider-subtext {
    font-size: 14px;
  }
}

.cl-popular-links-container {
  background-color: #ffffff !important;
  padding: 34px 5% 28px 5%;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  border-top: 0;
}

.cl-popular-links-container::before {
  content: none;
  display: none;
}

.cl-popular-links-container::after {
  content: none;
  display: none;
}

.cl-links-wrapper {
  /* max-width: 1200px; */
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.cl-links-main-title {
  color: #233524;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 30px;
  font-weight: 500;
}

.cl-links-group {
  position: relative;
  margin-bottom: 25px;
  border-bottom: 0;
  padding-bottom: 20px;
}

.cl-links-group:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(220, 210, 184, 0.4) 12%, rgba(176, 140, 73, 0.45) 50%, rgba(220, 210, 184, 0.4) 88%, transparent 100%);
  opacity: 0.95;
}

.cl-links-category-title {
  color: #658875;
  font-size: 16px;
  margin: 0 0 10px 0;
  font-weight: 600;
}

.cl-links-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0;
  row-gap: 10px;
  max-width: 100%;
  line-height: 1.45;
}

.cl-link-item {
  color: #233524;
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  max-width: 100%;
  white-space: normal;
}

.cl-link-item:hover {
  color: #658875;
  text-decoration: underline;
}

/* Pipe Separator Logic */
.cl-link-item:not(:last-child)::after {
  content: "|";
  margin: 0 10px;
  color: #658875;
  opacity: 0.5;
  font-weight: 300;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .cl-popular-links-container {
    padding: 28px 18px 30px;
  }
  .cl-links-main-title {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .cl-links-category-title {
    font-size: 14px;
  }
  .cl-link-item {
    font-size: 12px;
    line-height: 1.4;
  }
  .cl-link-item:not(:last-child)::after {
    margin: 0 6px;
  }
}

.jf-bottom-bar {
  border-top: 1px solid rgba(35, 53, 36, 0.1);
  padding: 20px 0% 20px 0%;
  margin-top: 20px;
  background: #ffffff;
}

.jf-bottom-content {
  /* max-width: 1200px; */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.jf-brand-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.jf-logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #233524;
}

.jf-copy-text {
  font-size: 13px;
  color: #000;
}

.jf-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.jf-policy-links a {
  text-decoration: none;
  color: #233524;
  font-size: 13px;
  transition: color 0.2s;
}

.jf-policy-links a:hover {
  color: #658875;
}

.jf-nav-delivery-wrapper {
}

.jf-delivery-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px;
}

.jf-trigger-label {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
}

.jf-trigger-pincode {
  font-size: 14px;
  color: #E4E6D9; /* Bright pink/purple from your theme */
  font-weight: 600;
}

/* Popup Container */
.jf-delivery-popup {
  position: absolute;
  top: 100%;
  right: 20px;
  width: 340px;
  background-color: #E4E6D9; /* Requested Background */
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 25px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(101, 136, 117, 0.1);
}

/* Show Popup on Hover */
.jf-delivery-trigger:hover .jf-delivery-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.jf-popup-content {
  text-align: center;
}

.jf-popup-title {
  color: #233524;
  font-size: 18px;
  margin: 0 0 8px 0;
  font-weight: 700;
}

.jf-popup-subtitle {
  color: #658875;
  font-size: 13px;
  line-height: 1.4;
  margin: 0 0 20px 0;
}

.jf-popup-illustration {
  background-color: #fff;
  padding: 20px;
  display: flex;
  border-radius: 12px;
  margin-bottom: 20px;
}

.jf-illustration-text {
  color: #233524;
  font-weight: 600;
  font-size: 14px;
  margin-top: 10px;
}

.jf-pincode-input-group {
  margin-top: 15px;
}

.jf-input-container {
  display: flex;
  align-items: center;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 15px;
  background: white;
  transition: border-color 0.2s;
}

.jf-input-container:focus-within {
  border-color: #233524;
}

.jf-loc-icon {
  color: #233524;
  margin-right: 10px;
}

.jf-pincode-input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  color: #233524;
  font-weight: 500;
}

.jf-change-btn {
  background: none;
  border: none;
  color: #233524;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  padding-left: 10px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .jf-delivery-popup {
    position: fixed;
    left: 10px;
    right: 10px; 
    width: calc(100% - 20px);
    top: auto;
    bottom: 20px;
  }
}

@media (max-width: 768px){  
  .jf-bottom-content {
    justify-content: center;
  }
  .jf-brand-info{
    flex-direction: column;
  }
}

.jfm_mega_menu_panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s;
  z-index: 1000;
  padding: 30px;
}

#jf_trend_nav_link:hover .jfm_mega_menu_panel {
  opacity: 1;
  visibility: visible;
}

.jfm_panel_content {
  display: grid;
  grid-template-columns: 200px 1fr; /* Sidebar width vs rest */
  gap: 40px;

  margin: 0 auto;
}

.jfm_card_gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.jfm_gallery_item img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.jfm_item_title {
  text-align: center;
  padding: 10px;
  color: #000;
}

.jfm_sidebar_links a {
  font-size: 14px;
  color: #000;
}

/* Positioning the content */
.jf-hero-content {
  position: absolute;
  top: 50%;
  left: 10%; /* Positions it on the left */
  transform: translateY(-50%);
  color: #ffffff;
  max-width: 500px;
  z-index: 2;
}

.jf-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.jf-hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #000;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.jf-hero-btn {
  padding: 12px 30px;
  background-color: #d4af37; /* Gold tone */
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.jf-hero-btn:hover {
  background-color: #b8962d;
}

/* Overlay background */
#onload_popup_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

#onload_popup_overlay.onload_popup_visible {
  opacity: 1;
  visibility: visible;
}

/* Modal Box */
.onload_popup_container {
  background-color: #E4E6D9; /* Your requested color */
  width: 90%;
  max-width: 400px;
  padding: 40px 30px;
  border-radius: 24px;
  position: relative;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Close Button */
.onload_popup_close {
  position: absolute;
  top: 0;
  right: 20px;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #4a4a4a;
}

.onload_popup_title {
  color: #3b3663;
  font-size: 22px;
  margin-bottom: 12px;
}

.onload_popup_subtitle {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 5px;
}

/* Icon Section */
.onload_popup_store_icon {
  width: 80px;
  height: 60px;

  margin: 0 auto 10px;
  border-radius: 12px 12px 5px 5px;
  opacity: 0.8;
}

.onload_popup_icon_label {
  color: #233524;
  font-weight: bold;
  display: block;
  margin-bottom: 30px;
}

/* Input Field */
.onload_popup_input_group {
  border: 1px solid #dcdcdc;
  border-radius: 15px;
  display: flex;
  align-items: center;
  padding: 12px 15px;
  background: #fff;
}

.onload_popup_loc_icon {
  font-size: 20px;
  color: #3b3663;
  margin-right: 10px;
}

.onload_popup_input {
  border: none;
  outline: none;
  flex-grow: 1;
  font-size: 16px;
  color: #3b3663;
}

.onload_popup_change_btn {
  background: none;
  border: none;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  letter-spacing: 0.5px;
}

/* Container handles responsiveness and spacing */
.filter_chip_container {
  display: flex;
  gap: 12px;
  padding: 20px 40px 0;
  overflow-x: auto; /* Enables horizontal scroll on mobile */
  white-space: nowrap;
  -webkit-overflow-scrolling: touch; /* Smooth scroll for iOS */
  scrollbar-width: none; /* Hides scrollbar for Firefox */
  background-color: #fff;
}

/* Hide scrollbar for Chrome/Safari */
.filter_chip_container::-webkit-scrollbar {
  display: none;
}

/* Base Chip Style */
.filter_chip_item {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background-color: #ffffff;
  color: #333333;

  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

/* Active State (using your requested F1EFE9 color) */
.filter_chip_item.filter_chip_active {
  background-color: #233524;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Responsive adjustment for desktop */
@media (min-width: 768px) {
  .filter_chip_container {
    overflow-x: visible;
    padding-top: 50px;
    
  }
  
}

@media (max-width: 768px){
  .filter_chip_container{
    padding: 20px 10px 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  .filter_chip_item{
    width: 150px;
  }
  .jf-hero-content{
    top: auto;
    bottom: 10%;
    left: 10%;
    transform: translateY(-20%);
  }
  .jf-hero-content p{
    display: none;
  }
  .jf-hero-content h1{
    font-size: 2rem;
  }
}

/* Layout */
.luxury-container {
  width: 100%;
  padding: 70px 40px 20px;
  background-color: #fff;
}

.luxury-main-layout {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.luxury-products-main {
  flex: 1;
  min-width: 0;
}

.luxury-main-layout.filters-collapsed {
  gap: 0;
}

.luxury-main-layout.filters-collapsed .luxury-sidebar {
  display: none;
}

.luxury-main-layout.filters-collapsed .luxury-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.luxury-main-layout.filters-open .luxury-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Header Controls */
.luxury-header-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 20px;
  /* border-bottom: 1px solid #eee; */
}

.luxury-filter-tags {
  display: flex;
  align-items: center;
  gap: 15px;
}

.luxury-filter-panel-head,
.luxury-filter-backdrop {
  display: none;
}

.luxury-mobile-filter-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid #d8d9cd;
  border-radius: 6px;
  background: #233524;
  color: #fff;
  font-weight: 800;
  padding: 0 16px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(35, 53, 36, .14);
}

.luxury-filter-tags .luxury-tag-label {
  display: none;
}

.luxury-mobile-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #c3a35f;
  color: #203827;
  font-size: 12px;
}

.luxury-filter-panel-eyebrow {
  display: block;
  margin-bottom: 2px;
  color: #8b8f84;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.luxury-tag-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: #666;
}

.luxury-active-tag {
  background-color: #E4E6D9;
  border: 1px solid #e2e0d8;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-bottom: 20px;
}

.luxury-search-summary {
  border: 1px solid #dfe4d9;
  border-radius: 8px;
  background: #fff;
  padding: 22px 24px;
  margin-bottom: 22px;
  box-shadow: 0 10px 30px rgba(31, 48, 38, .06);
}

.luxury-search-summary span {
  display: block;
  color: #7b8176;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.luxury-search-summary h1 {
  color: #233524;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  margin: 0 0 8px;
  font-weight: 700;
}

.luxury-search-summary p {
  color: #666;
  margin: 0;
  font-size: 14px;
}

.luxury-clear-btn {
  background: none;
  border: none;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  color: #8c887d;
  text-decoration: underline;
}

/* Custom Dropdown Styles */
.luxury-sort-area {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 100;
}

.sort-label {
  font-size: 14px;
  color: #666;
}

.custom-select-wrapper {
  position: relative;
  min-width: 160px;
}

.custom-select-trigger {
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.custom-options {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  width: 180px;
  margin-top: 10px;
  overflow: hidden;
}

.custom-options.show {
  display: flex;
}

.custom-option {
  padding: 12px 15px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.custom-option:hover {
  background-color: #E4E6D9;
}

/* Sidebar */
.luxury-sidebar {
  width: 20%;
  min-width: 300px;
}

.luxury-sidebar-inner {
  position: sticky;
  top: 20px;
  /* height: calc(100vh - 80px); */
  overflow-y: auto;
  background-color: #fff;
  padding: 25px;
  border-radius: 15px;
  /* Hide scrollbar */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE & Edge */
}

.luxury-load-more {
  display: flex;
  justify-content: center;
  padding: 28px 0 10px;
}

.luxury-load-more-btn {
  border: 1px solid #233524;
  border-radius: 6px;
  background: #233524;
  color: #fff;
  font-weight: 800;
  min-height: 42px;
  padding: 0 18px;
}

/* Chrome, Safari */
.luxury-sidebar-inner::-webkit-scrollbar {
  display: none;
}

.filter-group {
  margin-bottom: 14px;
  border-bottom: 1px solid #e2e0d8;
  padding-bottom: 14px;
}

.filter-title {
  margin: 0;
}

.filter-title-button {
  width: 100%;
  min-height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #222;
  font: inherit;
  cursor: pointer;
}

.filter-title-button span:first-child {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
  color: #222;
}

.filter-title-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid #d8d9cd;
  border-radius: 50%;
  color: #233524;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  background: #fff;
}

.filter-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.filter-list.is-collapsed {
  display: none;
}

.filter-list.is-open {
  display: block;
}

.filter-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  cursor: pointer;
  color: #555;
}

.filter-item input {
  margin-right: 12px;
  accent-color: #8c887d;
}

.filter-item label {
  display: flex;
  align-items: center;
  width: 100%;
  cursor: pointer;
}

.filter-item label > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.filter-count {
  margin-left: auto;
  font-size: 11px;
  color: #999;
}

.filter-list-swatch,
.filter-list-shape {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-list-swatch.is-open {
  display: grid;
  grid-template-columns: repeat(3, minmax(68px, 1fr));
  gap: 20px 14px;
  align-items: start;
}

.filter-list-shape.is-open {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.filter-list-swatch.is-collapsed,
.filter-list-shape.is-collapsed {
  display: none;
}

.filter-item-swatch,
.filter-item-shape {
  margin: 0;
}

.filter-item-swatch label,
.filter-item-shape label {
  width: 100%;
}

.filter-item-swatch label > span,
.filter-item-shape label > span {
  justify-content: center;
}

.filter-item-swatch label > span {
  width: 100%;
}

.filter-item-shape label,
.filter-item-shape label > span {
  width: 100%;
}

.filter-item-swatch input,
.filter-item-shape input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.filter-swatch {
  flex: 0 0 70px;
  width: 70px;
  min-width: 70px;
  height: 70px;
  min-height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #f1eee8;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .9);
  background: #fbfaf5;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.filter-swatch::before {
  content: "";
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: block;
  background: #d9c065;
}

.filter-swatch.metal-yellow::before { background: linear-gradient(135deg, #f4d56f, #caa94a); }
.filter-swatch.metal-white::before { background: linear-gradient(135deg, #f4f4f0, #cfd3d0); }
.filter-swatch.metal-rose::before { background: linear-gradient(135deg, #f3b79f, #d8957d); }
.filter-swatch.metal-silver::before { background: linear-gradient(135deg, #edf0f1, #bfc5c8); }
.filter-swatch.metal-platinum::before { background: linear-gradient(135deg, #e2e6e7, #b8bec1); }
.filter-swatch.metal-generic::before { background: linear-gradient(135deg, #e5e6da, #bac5b1); }

.filter-swatch.is-selected {
  border-color: #233524;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .92), 0 0 0 1px #233524;
  transform: translateY(-2px);
}

.filter-metal-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.filter-swatch-text {
  display: block;
  width: 100%;
  min-width: 0;
  color: #222;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.filter-swatch.is-selected + .filter-swatch-text {
  color: #233524;
  font-weight: 800;
}

.filter-shape-chip {
  width: 100%;
  min-width: 0;
  min-height: 108px;
  border: 1px solid #e5e2d9;
  border-radius: 8px;
  background: #fff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 8px;
  color: #233524;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.filter-shape-chip img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: transparent !important;
  border-radius: 0;
}

.filter-shape-chip.is-selected {
  border-color: #233524;
  background: #fff;
  box-shadow: 0 8px 20px rgba(35, 53, 36, .08);
}

/* Product Grid */
.luxury-product-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

/* Product Card */
.luxury-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.luxury-card-media {
  position: relative;
  aspect-ratio: 1930 / 2000;
  background-color: #fff;
  /* border-radius: 12px; */
  overflow: hidden;
  border: 1px solid #23352438;
}

.luxury-card-media > .luxury-card-link {
  display: block;
  width: 100%;
  height: 100%;
}

.luxury-slider-wrapper {
  display: flex;
  height: 100%;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.recently-viewed-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  color: white;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;

  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.luxury-card-media:hover .recently-viewed-overlay,
.luxury-card-media:focus-within .recently-viewed-overlay {
  opacity: 0;
  transform: translateY(-8px);
}

.luxury-slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.luxury-slide img {
  width: auto;
  height: auto;
  max-width: calc(100% - 20px);
  max-height: calc(100% - 20px);
  object-fit: contain;
  image-rendering: auto;
}

/* Navigation Buttons */
.luxury-nav-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 5;
}

.luxury-card:hover .luxury-nav-arrows {
  opacity: 1;
}

.nav-arrow {
  width: 36px;
  height: 36px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: background 0.2s;
}

.nav-arrow:hover {
  background: #ffffff;
}

.luxury-variant-info-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(35, 53, 36, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #233524;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(35, 53, 36, 0.12);
  z-index: 7;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.luxury-variant-info-btn i {
  font-size: 13px;
  line-height: 1;
}

.luxury-variant-info-btn:hover,
.luxury-variant-info-btn:focus-visible {
  transform: translateY(-1px);
  border-color: #233524;
  background: #233524;
  color: #fff;
  outline: none;
}

/* View Similar Text */

/* Product Content */
.luxury-card-info {
  padding: 15px 5px;
}

.luxury-carat-selector {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 15px;
}

.carat-options-container {
  display: flex;
  gap: 12px;
  align-items: end;
}

.carat-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.carat-icon-box {
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.carat-btn:hover .carat-icon-box {
  transform: translateY(-2px);
}

.carat-label-tag {
  font-size: 0.75rem;
  font-weight: 800;
  background: #f4f4f4;
  padding: 2px 6px;
  border-radius: 4px;
  transition: all 0.2s;
}

.carat-btn.is-selected {
  
}

.carat-label-tag.is-selected {
    background-color: #233524;
    color: #fff;
}

/* Hover effect only for non-selected icons */
.carat-btn:hover .carat-icon-box:not(.is-selected) {
    transform: translateY(-2px);
}

.add-to-cart-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  
  background: none;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: end;
  justify-content: center;
  transition: all 0.3s;
}

/* .add-to-cart-btn:hover {
  background-color: #233524;
  color: #fff;
  border-color: #233524;
} */

.luxury-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 5px;
}

.current-price {
  font-size: 18px;
  font-weight: 700;
  color: #233524;
}

.old-price {
  font-size: 14px;
  color: #aaa;
  text-decoration: line-through;
}

.delivery-link {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #233524;
  text-decoration: none;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.product-title {
  font-size: 15px;
  font-weight: 500;
  color: #666;
}

.product-title-variant {
  margin: 0;
  color: #233524;
  line-height: 1.28;
}

.product-title-variant span {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #233524;
  letter-spacing: 0;
}

.product-title-variant small {
  display: block;
  margin-top: 3px;
  color: #777b72;
  font-size: 12px;
  font-weight: 600;
}

.luxury-card-delivery {
  margin: 7px 0 0;
  color: #8b8f84;
  font-size: 11px;
  font-weight: 700;
}

.luxury-card-sku {
  margin: 3px 0 0;
  color: #233524;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Badges */
.luxury-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #233524;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 5;
  opacity: 0;
  transform: translateX(-18px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.luxury-card-media:hover .luxury-badge,
.luxury-card-media:focus-within .luxury-badge {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 1200px) {
  .luxury-main-layout.filters-collapsed .luxury-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .luxury-main-layout.filters-open .luxury-product-grid,
  .luxury-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .luxury-main-layout {
    flex-direction: column;
    gap: 18px;
  }
  .luxury-product-grid {
    width: 100%;
  }
  .luxury-sidebar {
    display: block;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-width: 0;
    width: auto;
    max-width: 680px;
    margin: 0 auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 28px));
    transition: transform .24s ease, opacity .24s ease;
    z-index: 991;
  }
  .luxury-sidebar.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .luxury-sidebar-inner {
    position: static;
    height: auto;
    max-height: min(78vh, 620px);
    overflow-y: auto;
    border: 1px solid #e2e0d8;
    border-radius: 14px;
    padding: 22px;
    background: #fff;
    box-shadow: 0 -18px 48px rgba(31, 48, 38, .18);
  }
  .luxury-mobile-filter-toggle {
    display: inline-flex;
  }
  .luxury-filter-backdrop.is-open {
    display: block;
    position: fixed;
    inset: 0;
    border: 0;
    background: rgba(31, 48, 38, .36);
    z-index: 990;
    cursor: pointer;
  }
  .luxury-filter-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: -2px 0 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e0d8;
  }
  .luxury-filter-panel-head strong {
    display: block;
    color: #203827;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 900;
  }
  .luxury-filter-close-btn {
    flex: 0 0 auto;
    border: 1px solid #233524;
    border-radius: 6px;
    background: #233524;
    color: #fff;
    font-weight: 800;
    min-height: 36px;
    padding: 0 14px;
  }
  .luxury-tag-label {
    display: none;
  }
}

@media (max-width: 600px) {
  .luxury-main-layout.filters-collapsed .luxury-product-grid,
  .luxury-main-layout.filters-open .luxury-product-grid,
  .luxury-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .luxury-container {
    padding: 36px 12px 12px;
  }
  .luxury-header-tools{
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
  }

  .custom-select-wrapper{
    min-width: auto;
  }
  .luxury-filter-tags {
    gap: 8px;
    flex: 0 0 auto;
  }
  .luxury-sort-area {
    flex: 1;
    justify-content: flex-end;
    min-width: 0;
  }
  .sort-label {
    display: none;
  }
  .custom-select-trigger {
    min-height: 42px;
    width: 100%;
    max-width: 155px;
    border: 1px solid #d8d9cd;
    border-radius: 6px;
    background: #fff;
    padding: 0 10px;
  }
  .luxury-mobile-filter-toggle {
    min-width: 104px;
    padding: 0 14px;
  }
  .luxury-sidebar {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .luxury-sidebar-inner {
    padding: 20px 18px 18px;
    max-height: min(80vh, 620px);
  }
  .filter-group {
    margin-bottom: 16px;
    padding-bottom: 18px;
  }
  .filter-title {
    margin-bottom: 0;
  }
  .filter-title-button {
    min-height: 42px;
  }
  .filter-item {
    margin-bottom: 14px;
    font-size: 15px;
  }
  .current-price {
    font-size: 14px;
  }
  .product-title {
    font-size: 12px;
    line-height: 1.35;
  }
  .product-title-variant span {
    font-size: 12px;
  }
  .product-title-variant small,
  .luxury-card-delivery {
    font-size: 10px;
  }
  .luxury-card-info {
    padding: 10px 2px;
  }
  .luxury-card-shapes {
    gap: 4px;
  }
}

.wedding_banner_container {
  width: 100%;
  background-color: #E4E6D9; /* Your specified brand color */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 8% 50px;
  min-height: 250px; /* Reduced height as requested */
  max-height: 400px;
  overflow: hidden;
}

.wedding_banner_image_box {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wedding_banner_img {
  max-width: 450px;
  height: auto;
  /* Simple shadow to make jewelry pop against the light background */
  
}

.wedding_banner_content_box {
  flex: 1;
  padding-left: 60px;
  max-width: 600px;
}

.wedding_banner_heading {
  font-size: 28px;
  color: #222;
  margin-bottom: 15px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.wedding_banner_description {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  max-width: 480px;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .wedding_banner_container {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  .wedding_banner_content_box {
    padding-left: 0;
    margin-top: 30px;
  }
  .wedding_banner_description {
    margin: 0 auto;
  }
  .wedding_banner_img {
    max-width: 300px;
  }
}

.similar_designs_modal_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.similar_designs_modal_overlay.is_open {
  opacity: 1;
  visibility: visible;
}

.similar_designs_popup_panel {
  width: 100%;
  background-color: #ffffff;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 30px 40px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 85vh;
  position: relative;
  overflow: hidden;
}

.similar_designs_modal_overlay.is_open .similar_designs_popup_panel {
  transform: translateY(0);
}

.similar_popup_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.similar_popup_title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.similar_popup_close_btn {
  background: #E4E6D9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.similar_popup_close_btn:hover {
  background: #e2e0d8;
}

/* --- SLIDER STYLES --- */
.similar_slider_container {
  width: 100%;
  position: relative;
  padding: 10px 0;
  display: flex;
  justify-content: center;
}

.similar_slider_viewport {
  width: 100%;
  max-width: 1200px; /* Added max-width to prevent clipping on large screens */
  overflow-x: auto;
  margin: 0 auto;
  scrollbar-width: thin;
}

.similar_designs_track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 20px;
}

.similar_design_card {
  flex: 0 0 calc(20% - 16px);
  min-width: 200px;
  text-align: left;
  position: relative;
  padding: 5px;
  color: inherit;
  text-decoration: none;
}

.similar_design_img_wrapper {
  border-radius: 16px;
  aspect-ratio: 1930 / 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Ensure image fits shape */
  margin-bottom: 12px;
  box-shadow: 1px 1px 5px #ccc;
  transition: transform 0.3s;
}

.similar_design_card:hover .similar_design_img_wrapper {
  /* transform: translateY(-5px); */
}

.similar_design_img_wrapper img {
  width: 100%; /* Take full width */
  height: 100%; /* Take full height */
  object-fit: contain; /* Maintain ratio while filling area */
  padding: 10px; /* Small breathing room inside container */
  box-sizing: border-box;
  border-radius: 20px;
}

.similar_design_price {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #222;
}

.similar_design_price span {
  color: #999;
  font-size: 11px;
  text-decoration: line-through;
  margin-left: 5px;
  font-weight: 400;
}

.similar_design_name {
  font-size: 11px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Navigation Arrows Adjusted to match image_d51ede.jpg */
.similar_nav_arrow {
  position: absolute;
  top: 40%;
  width: 32px;
  height: 32px;
  background-color: #233524;
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transform: translateY(-50%);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition:
    opacity 0.3s,
    transform 0.2s,
    background 0.2s;
  font-size: 18px;
}

.similar_nav_arrow:hover {
  background-color: #233524;
  transform: translateY(-50%) scale(1.1);
}

/* Adjusted positions to be inside the container bounds */
.similar_nav_left {
  left: 5px;
}
.similar_nav_right {
  right: 5px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .similar_design_card {
    flex: 0 0 calc(25% - 15px);
  }
}

@media (max-width: 992px) {
  .wedding_banner_container {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    max-height: max-content;
  }
  .wedding_banner_content_box {
    padding-left: 0;
    margin-top: 30px;
  }
  .wedding_banner_description {
    margin: 0 auto;
  }
  .wedding_banner_img {
    max-width: 300px;
  }
  .similar_design_card {
    flex: 0 0 calc(50% - 10px);
  }
  .similar_nav_left {
    left: 5px;
  }
  .similar_nav_right {
    right: 5px;
  }
}

.view-similar-container {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  align-items: center;
}

/* icon */
.view-icon {
  width: 38px;
  height: 38px;
  box-shadow: 1px 1px 5px #b7b7b7;
  border-radius: 8px;
  background: #fff;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
}

.view-icon img {
  width: 22px;
}

.view-icon i {
  color: #233524;
  font-size: 18px;
}

/* button */
.view-similar-overlay {
  cursor: pointer;
  position: absolute;
  right: 0;
  border: 0;
  background: #233524;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 8px;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.8s ease;
  white-space: nowrap;
}

/* hover reveal */
.view-similar-container:hover .view-similar-overlay {
  transform: translateX(-40px);
  opacity: 1;
}

/* text */
.view-text {
  font-size: 13px;
  white-space: nowrap;
}

.jf-variant-media-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(16, 23, 17, 0.54);
  backdrop-filter: blur(6px);
}

.jf-variant-media-panel {
  width: min(960px, 100%);
  max-height: min(82vh, 820px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(35, 53, 36, 0.14);
  box-shadow: 0 28px 70px rgba(15, 24, 17, 0.28);
}

.jf-variant-media-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid #ece9df;
}

.jf-variant-media-head h3 {
  margin: 0;
  color: #233524;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.jf-variant-media-close {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid #e1ded4;
  border-radius: 50%;
  background: #fff;
  color: #233524;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.jf-variant-media-close:hover,
.jf-variant-media-close:focus-visible {
  background: #233524;
  color: #fff;
  border-color: #233524;
  outline: none;
}

.jf-variant-media-state {
  padding: 44px 24px;
  color: #6f746b;
  text-align: center;
  font-size: 16px;
}

.jf-variant-media-error {
  color: #9b382c;
}

.jf-variant-media-grid {
  overflow: auto;
  padding: 22px 24px 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.jf-variant-media-item {
  min-height: 220px;
  aspect-ratio: 1930 / 2000;
  border: 1px solid #e5e2d8;
  border-radius: 8px;
  background: #fbfaf6;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jf-variant-media-item img,
.jf-variant-media-item video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

@media (max-width: 600px) {
  .similar_designs_popup_panel {
    padding: 22px 18px 26px;
    max-height: 78vh;
  }

  .similar_popup_header {
    margin-bottom: 18px;
  }

  .similar_designs_track {
    gap: 14px;
  }

  .similar_design_card {
    flex-basis: 58%;
    min-width: 180px;
  }

  .view-similar-container {
    bottom: 12px;
    right: 12px;
  }

  .luxury-variant-info-btn {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
  }

  .jf-variant-media-modal {
    padding: 14px;
    align-items: flex-end;
  }

  .jf-variant-media-panel {
    max-height: 86vh;
    border-radius: 8px 8px 0 0;
  }

  .jf-variant-media-head {
    padding: 18px 18px 14px;
  }

  .jf-variant-media-head h3 {
    font-size: 20px;
  }

  .jf-variant-media-grid {
    grid-template-columns: 1fr;
    padding: 16px 18px 22px;
    gap: 14px;
  }

  .jf-variant-media-item {
    min-height: 260px;
  }
}

.auer-pdp-container {
     display: flex;
    /* max-width: 1200px; */
    margin: 0 0 0;
    justify-content: center;
    padding: 20px 0px 80px 0px;
    gap: 0px;
    align-items: flex-start;
    background: #ffffff;
}

/* Left Side: Gallery */
.auer-gallery-section {
  flex: 1;
  position: sticky;
  top: 100px;
    height: 80vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.auer-main-image-wrapper {
  position: relative;
      width: 40vw;
    height: 60vh;
  /* background: #fff; */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 20px;
  /* border: 1px solid #f0f0f0; */
}

.auer-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slide Transition CSS */
.auer-main-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #233524;
  transition:
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease;
  transform-origin: center center;
}

.auer-main-image.slide-out {
  transform: translateX(-100%);
  opacity: 0;
}

.auer-main-image.slide-in {
  transform: translateX(100%);
  opacity: 0;
}

/* Zoom State */


.auer-thumb-slider-container {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 0px;
  width: 100%;
  max-width: 500px;
}

.auer-thumb-slider {
  display: flex;
  gap: 12px;
  overflow: hidden;
  scroll-behavior: smooth;
  width: 100%;
}

.auer-thumb {
  width: 70px;
  aspect-ratio: 1/1;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  overflow: hidden;
}
  
.auer-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.auer-nav-btn {
  background: #fff;
  border: 1px solid #d1cfc9;
  width: 38px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #233524;
}

/* Right Side Info */
.auer-info-section {
  flex: 0.4;
  
  background-color: #ffffff;
  padding:  0 40px 5px 40px;
  border-radius: 24px 0 0 24px;
  position: sticky;
  top: 120px;
  max-height: none;
  overflow: visible;
  align-self: flex-start;
}

.auer-product-header {
  margin-bottom: 0px;
}
.auer-brand {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #5a6b5b;
  font-weight: 700;
}
.auer-title {
  font-size: 32px;
  font-weight: 400;
  color: #233524;
  margin: 5px 0;
}

.auer-sku-line {
  margin: -2px 0 8px;
  color: #5f6f61;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.auer-price {
  font-size: 24px;
  font-weight: 600;
  color: #233524;
}

/* Trust Badges */
.auer-trust-badges {
  display: flex;
  justify-content: space-around;
  margin-top: 0px;
  padding: 10px 0;
  /* border-top: 1px solid rgba(35, 53, 36, 0.08); */
}

.auer-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.auer-badge-img {
  width: 40px;
  height: auto;
  object-fit: cover;
}
.auer-badge-text {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #5a6b5b;
}

/* Option Groups */
.auer-option-group {
  margin-bottom: 0px;
}
.auer-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #233524;
  display: block;
  margin-bottom: 12px;
}

/* Metal Selection */
.auer-metal-grid {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.auer-metal-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 60px;
}

.auer-metal-option {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  box-shadow: none;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.auer-metal-option.selected {
  box-shadow: 0 0 0 2px #233524;
}
.auer-metal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.auer-metal-text {
  font-size: 10px;
  text-align: center;
  color: #000;
  font-weight: 500;
}

.auer-more-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px dashed #d1cfc9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #233524;
  cursor: pointer;
}

/* Dropdown Size Selection Styles */
.auer-size-dropdown-container {
  position: relative;
   /* z-index: 1; */
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
}



.auer-size-input-wrapper {
  background: #fff;
  border: 1px solid #d1cfc9;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: max-content;
  cursor: pointer;
  transition: border-color 0.2s;
}

.auer-size-input-wrapper:hover {
  border-color: #233524;
}

.auer-selected-size-text {
  font-size: 14px;
  font-weight: 600;
  color: #233524;
}

.auer-dropdown-arrow {
  width: 12px;
  height: 12px;
  transition: transform 0.3s;
}

.auer-size-dropdown-container.open .auer-dropdown-arrow {
  transform: rotate(180deg);
}

.auer-size-options-popup {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 16px;
  z-index: 100;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.auer-size-dropdown-container.open .auer-size-options-popup {
  display: block;
}

.auer-size-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.auer-size-box {
  aspect-ratio: 2/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f7f4;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #233524;
  cursor: pointer;
  transition: all 0.2s;
}

.auer-size-box:hover {
  background: #fff;
  border-color: #233524;
}

.auer-size-box.selected {
  background: #233524;
  color: #fff;
  border-color: #233524;
}

/* Chips */
.auer-selection-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.auer-chip {
  padding: 8px 16px;
  border: 1px solid #d1cfc9;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  border-radius: 8px;
  color: #233524;
  font-weight: 500;
  transition: all 0.2s;
}
.auer-chip.selected {
  background: #233524;
  color: #fff;
  border-color: #233524;
}

/* Pincode */
.auer-pincode-wrapper {
  display: flex;
  gap: 8px;
  background: #fff;
  padding: 4px;
  width: 330px;
  border-radius: 12px;
  border: 1px solid #d1cfc9;
}
.auer-input-pincode {
  flex: 1;
  border: none;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
  background: transparent;
}
.auer-btn-pincode {
  padding: 0 20px;
  background: #233524;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}

/* Try at Home Feature Box */
.auer-try-home-box {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 20px;
  padding: 30px;
  margin: 20px 0 10px 0;
  position: relative;
}

.auer-try-home-content {
  position: relative;
  z-index: 2;
}
.auer-try-home-tag {
  display: inline-block;
  background: #233524;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.auer-try-home-title {
  font-size: 20px;
  font-weight: 600;
  color: #233524;
  margin-bottom: 8px;
}
.auer-try-home-desc {
  font-size: 14px;
  color: #4a5a4b;
  margin-bottom: 20px;
  line-height: 1.5;
}

.auer-btn-book {
  background: #233524;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
}
.auer-btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(35, 53, 36, 0.2);
}

/* Action Buttons */
.auer-actions-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 12px;
  margin-top: 10px;
}
.auer-btn-primary {
  background: #233524;
  color: #fff;
  border: none;
  padding: 18px;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 14px;
}
.auer-btn-secondary {
  background: #fff;
  color: #233524;
  border: 1px solid #d1cfc9;
  padding: 18px;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 14px;
}

@media (max-width: 992px) {
  .auer-pdp-container {
    flex-direction: column;
    padding: 20px;
    align-items: center;
  }
  .auer-gallery-section {
    position: relative;
    top: 0;
    width: 100%;
  }
  .auer-main-image-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .auer-info-section {
    width: 100%;
    padding: 20px 0;
    position: relative;
    top: auto;
    max-height: none;
    overflow: visible;
  }
}



.rel-prod-slider-section {
  background-color: #fff;
  padding: 80px 20px;
  overflow: hidden;
}

.rel-prod-container {
  max-width: 1200px;
  margin: 0 auto;
}

.rel-prod-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.rel-prod-section-title {
  font-size: 28px;
  color: #233524;
  font-weight: 400;
  letter-spacing: -0.5px;
  margin-bottom: 0;
}

.rel-prod-controls {
  display: flex;
  gap: 12px;
}

.rel-prod-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d1cfc9;
  background: #fff;
  color: #233524;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rel-prod-nav-btn:hover {
  background: #233524;
  color: #fff;
  border-color: #233524;
}

.rel-prod-viewport {
  overflow: hidden;
  margin: 0 -10px;
}

.rel-prod-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  gap: 20px;
  padding: 10px;
}

.rel-prod-card {
  flex: 0 0 calc(25% - 15px); /* 4 items per row */
  /* background: #f8f7f4; */
  border-radius: 16px;
  /* overflow: hidden; */
  transition: transform 0.3s ease;
  border: 1px solid transparent;
  
}

.rel-prod-img-box {
  width: 100%;
  aspect-ratio: 1930 / 2000;
  /* overflow: hidden; */
  position: relative;
  
}

.rel-prod-img-box img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  border: 1px solid #23352438;
  /* border-radius: 10px; */
  transition: transform 0.5s ease;
  transform: scale(1.03);
  box-sizing: border-box;
  
}

.rel-prod-card:hover .rel-prod-img-box img {
  transform: scale(1.06);
}

.rel-prod-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #233524;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.rel-prod-details {
  padding: 20px;
}

.rel-prod-brand {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #5a6b5b;
  font-weight: 700;
  margin-bottom: 6px;
}

.rel-prod-name {
  font-size: 16px;
  font-weight: 500;
  color: #233524;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rel-prod-price {
  font-size: 15px;
  font-weight: 700;
  color: #233524;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .rel-prod-card {
    flex: 0 0 calc(50% - 10px); /* 2 items per row */
  }
  .onload_popup_container{
    width: 95%;
    padding: 40px 15px;
  }
}

@media (min-width: 641px) and (max-width: 992px) {
  .jf-showcase-wrapper{
    padding: 30px 10px 80px;
  }
}

@media (max-width: 576px) {
  .rel-prod-card {
    flex: 0 0 calc(100% - 0px); /* 1 item per row */
  }
  .rel-prod-section-title {
    font-size: 22px;
  }
}

.desktop_menu {
  display: block;
}

@media (max-width: 1150px) {
  .jf-logo-group {
    flex: auto;
  }
}

@media (max-width: 1024px) {
  .desktop_menu {
    display: none;
  }
}

/* Visibility Control */
.jf_mobile_header,
.jf_mobile_menu {
  display: none;
}

@media (max-width: 1024px) {
  /* Header Bar */
  .jf_mobile_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .jf_main_logo {
    height: 40px;
  }
  .jf_sub_logo {
    height: 40px;
  }

  /* Hamburger Animation */
  .jf_hamburger {
    width: 25px;
    height: 18px;
    position: relative;
    cursor: pointer;
  }
  .jf_hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #233524;
    position: absolute;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .jf_hamburger span:nth-child(1) {
    top: 0;
  }
  .jf_hamburger span:nth-child(2) {
    top: 8px;
  }
  .jf_hamburger span:nth-child(3) {
    top: 16px;
  }

  .jf_hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .jf_hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .jf_hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Sliding Menu Container */
  .jf_mobile_menu {
    display: block;
    position: fixed;
    top: 55px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 55px);
    background: #233524;
    transition: 0.4s ease-in-out;
    z-index: 999;
    overflow: hidden;
  }
  .jf_mobile_menu.open {
    left: 0;
  }
  .jf-mobile-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 20px 0;
  }
  .jf-mobile-search-form input {
    flex: 1;
    min-width: 0;
    height: 44px;
    border: 1px solid rgba(229, 187, 88, .24);
    border-radius: 6px;
    background: #fff;
    color: #233524;
    padding: 0 14px;
    outline: none;
  }
  .jf-mobile-search-form button {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 6px;
    background: #e5bb58;
    color: #233524;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Main Links (Green Screen) */
  .jf_main_links {
    list-style: none;
    padding: 24px 20px 30px;
    margin: 0;
  }
  .jf_main_links li {
    color: #e5bb58;
    font-size: 18px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(229, 187, 88, 0.1);
    display: flex;
    justify-content: space-between;
    cursor: pointer;
  }

  /* Submenu (White Screen Overlay) */
  .jf_submenu_overlay {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: 0.4s ease-in-out;
    z-index: 1001;
    overflow-y: auto;
  }
  .jf_submenu_overlay.active {
    left: 0;
  }

  .jf_submenu_header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 2;
  }
  .jf_back_btn {
    color: #233524;
    font-weight: 600;
    display: flex;
    cursor: pointer;
    margin-right: 15px;
  }
  #jfSubMenuTitle {
    font-size: 18px;
    color: #233524;
    margin: 0;
    display: flex;
    margin: 20px 0;
    justify-content: center;
  }

  .jf_submenu_body {
    padding: 15px;
  }
  .jf_section_title {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    margin: 20px 0 15px 0;
    letter-spacing: 0.5px;
  }

  /* 4-Column Grid */
  .jf_icon_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 10px;
    text-align: center;
  }

  .jf_grid_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .jf_grid_item img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    background: #f9f9f9;
    padding: 8px;
    border-radius: 8px;
  }
  .jf_grid_item span {
    font-size: 11px;
    color: #000;
    line-height: 1.2;
  }
}


/* Main wrapper */
.jwl_breadcrumb_wrapper {
  padding: 100px 40px 25px;
  margin: 0;
  display: block;
  background: #ffffff;
  
}

/* Horizontal alignment */
.jwl_breadcrumb_list {
  display: flex;
  /* flex-wrap: wrap; */
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}

/* Item spacing and the '/' separator */
.jwl_breadcrumb_item {
  display: flex;
  align-items: center;
  
  font-size: 15px;
  color: #777777;
}

.jwl_breadcrumb_item + .jwl_breadcrumb_item::before {
  content: "/";
  margin: 0 12px;
  color: #bbbbbb;
  font-weight: 300;
}

/* Link styling */
.jwl_breadcrumb_link {
  color: #333333;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.jwl_breadcrumb_link:hover {
  color: #233524; /* Jewelry-inspired gold/brass tone */
  border-bottom: 1px solid #233524;
}

/* Current page text (non-link) */
.jwl_breadcrumb_active {
  color: #999999;
  font-weight: 500;
  pointer-events: none;
}

/* Overlay */
.zx-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

/* Active state */
.zx-lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Content */
.zx-lightbox-content {
  position: relative;
    max-width: 100%;
    max-height: 90%;
    background: #fff;
    width: 80%;
    border-radius: 20px;
}

/* Image */
.zx-lightbox-content img, .zx-lightbox-content video {
      width: 70%;
    height: auto;
    text-align: center;
    margin: auto;
    max-height: 85vh;
    object-fit: cover;
    border-radius: 12px;
    transform: scale(0.9);
    transition: 0.3s ease;
}

.zx-lightbox-overlay.active img {
  transform: scale(1);
}

/* Close button */
.zx-lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 600px){
.zx-lightbox-content{
  width: 90%;
}
.zx-lightbox-content img{
  width: 90%;
}
.jwl_breadcrumb_wrapper {
        margin: 10px 20px; /* Reduced margin for mobile */
        padding-top: 60px;  /* Reduced top padding for mobile */
        overflow-x: auto;   /* Enables horizontal scroll */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        display: none;
    }

    /* Hide scrollbar but keep functionality for a cleaner look */
    .jwl_breadcrumb_wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .jwl_breadcrumb_wrapper {
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }

    .jwl_breadcrumb_list {
        display: inline-flex; /* Ensures container expands to fit scrolling items */
    }

    .jwl_breadcrumb_item {
        font-size: 13px; /* Slightly smaller text on mobile */
    }
}

.jwl_selection_container {
    padding: 15px 0;
    
}

.jwl_metal_section {
    margin-bottom: 5px;
}

.jwl_metal_label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #233524;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jwl_metal_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.jwl_metal_option {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    width: 80px; /* Responsive base width */
}

/* The Selectable Circle */
.jwl_metal_circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #dddddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #555555;
    transition: all 0.3s ease;
    margin-bottom: 8px;
    background-color: #ffffff;
}

/* Text below the circle */
.jwl_metal_text {
    font-size: 11px;
    color: #000;
    text-align: center;
    white-space: nowrap;
}

/* Active/Selected State */
.jwl_metal_option.jwl_active .jwl_metal_circle {
    border-color: #233524; /* Gold accent */
    /* box-shadow: 0 0 8px rgba(197, 160, 89, 0.4); */
    transform: translateY(-2px);
}

.jwl_metal_option.jwl_active .jwl_metal_text {
    color: #233524;
    font-weight: bold;
}

/* Add this to handle the images inside the circles */
.jwl_metal_img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the circle without stretching */
    border-radius: 50%; /* Keeps the image circular */
    display: block;
}

/* Ensure the circle container hides any image overflow */
.jwl_metal_circle {
    overflow: hidden; /* Added this property to your existing .jwl_metal_circle */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #dddddd;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 8px;
    background-color: #ffffff;
}

/* Optional: Slight zoom effect on the image when selected */
.jwl_metal_option.jwl_active .jwl_metal_img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .jwl_metal_grid { gap: 15px; }
    .jwl_metal_circle { width: 45px; height: 45px; font-size: 12px; }
    .jwl_metal_option { width: 70px; }
}

/* Container styling */
.jwl_price_breakup_wrapper {
    
    border-radius: 4px;
    margin: 00px 0;
    
}

/* Header styling */
.jwl_price_header {
    padding: 15px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    user-select: none;
}

/* Icon rotation */
.jwl_price_icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

/* Expandable content area */
.jwl_price_content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 0px;
}

/* Table styling */
.jwl_price_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
    color: #000000;
    font-size: 13px;
    text-align: left;
}

.jwl_price_table th {
    /* border-bottom: 2px solid #f2f2f2; */
    padding: 0px 0;
    font-weight: 600;
}

.jwl_price_table td {
    padding: 8px 0;
    /* border-bottom: 1px solid #f9f9f9; */
}

/* Highlight the total row */
.jwl_price_total_row td {
    border-top: 2px solid #000000;
    border-bottom: none;
    padding-top: 15px;
    font-size: 15px;
}

.jwl_price_disclaimer {
    font-size: 11px;
    color: #666666;
    margin-bottom: 20px;
    font-style: italic;
}

/* Class added via JS when open */
.jwl_is_open {
    max-height: 1000px; /* Sufficient height for grouped rows */
}

.product_ins_desc{
  margin-bottom: 0px;
}

/* Background Overlay */
.jwl_pin_overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

/* Modal Box */
.jwl_pin_container {
    background-color: #ffffff;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.jwl_pin_close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.jwl_pin_title {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jwl_pin_subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/* Form Layout */
.jwl_pin_form {
    display: flex;
    gap: 10px;
}

.jwl_pin_input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
}

.jwl_pin_input:focus {
    border-color: #000;
}

.jwl_pin_submit {
  background: #233524;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.jwl_pin_submit:hover {
    opacity: 0.8;
}

.jwl_pin_message {
    margin-top: 15px;
    font-size: 13px;
    min-height: 18px;
}

/* login */

.u-login-viewport {
            margin: 0;
            padding: 20px;
            width: 100%;
            min-height: 100vh;
            background-color: #E4E6D9;
            color: #000000;
            display: flex;
            justify-content: center;
            align-items: center;
            box-sizing: border-box;
        }

        /* The central login card */
        .u-auth-card {
            background-color: #ffffff;
            width: 100%;
            max-width: 420px;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(35, 53, 36, 0.1);
            box-sizing: border-box;
        }

        /* Header styling */
        .u-auth-header {
            margin-bottom: 32px;
            text-align: center;
        }

        .u-auth-title {
            font-size: 28px;
            font-weight: 700;
            margin: 0 0 8px 0;
            color: #233524;
        }

        .u-auth-subtitle {
            font-size: 14px;
            color: #666666;
            margin: 0;
        }

        /* Form Layout */
        .u-auth-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .u-form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .u-input-label {
            font-size: 13px;
            font-weight: 600;
            color: #233524;
           
            letter-spacing: 0.5px;
        }

        .u-input-field {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid #e0ddd5;
            border-radius: 8px;
            font-size: 16px;
            color: #000000;
            background-color: #ffffff;
            box-sizing: border-box;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .u-input-field:focus {
            outline: none;
            border-color: #233524;
            box-shadow: 0 0 0 3px rgba(35, 53, 36, 0.05);
        }

        /* Helper links (Forgot password) */
        .u-form-options {
            display: flex;
            justify-content: flex-end;
            margin-top: -12px;
        }

        .u-link-text {
            font-size: 13px;
            color: #233524;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.2s;
        }

        .u-link-text:hover {
            text-decoration: underline;
            opacity: 0.8;
        }

        /* Action Button */
        .u-submit-btn {
            background-color: #233524;
            color: #ffffff;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.1s active, opacity 0.2s;
            margin-top: 10px;
        }

        .u-submit-btn:hover {
            opacity: 0.95;
        }

        .u-submit-btn:active {
            transform: scale(0.98);
        }

        /* Footer / Toggle */
        .u-auth-footer {
            margin-top: 24px;
            text-align: center;
            font-size: 14px;
            color: #666666;
        }

        .u-toggle-link {
            color: #233524;
            font-weight: 700;
            text-decoration: none;
            margin-left: 4px;
        }

        /* Responsive Adjustments */
        @media (max-width: 480px) {
            .u-login-viewport {
                background-color: #ffffff;
                align-items: flex-start;
                padding-top: 40px;
            }

            .u-auth-card {
                padding: 30px 20px;
                border-radius: 0;
                box-shadow: none;
                background-color: transparent;
            }

            .u-auth-title {
                font-size: 24px;
            }
        }

        /* order details */

         .u-page-wrapper {
            margin: 0;
            padding: 60px 20px 130px;
            width: 100%;
           
            
            display: flex;
            justify-content: center;
            align-items: flex-start;
            box-sizing: border-box;
        }

        /* --- ORDER DETAILS SECTION (WHITE BACKGROUND) --- */
        .order_details_container {
            background-color: #ffffff; /* Explicitly White */
            width: 100%;
            max-width: 960px;
            padding: 48px;
            border-radius: 16px;
            box-shadow: 0 15px 35px rgba(35, 53, 36, 0.08);
            box-sizing: border-box;
        }

        .order_details_header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #E4E6D9;
            padding-bottom: 24px;
            margin-bottom: 32px;
            gap: 24px;
        }

        .order_details_title {
            color: #233524;
            font-size: 26px;
            font-weight: 700;
            margin: 0;
            letter-spacing: -0.5px;
        }

        /* Sleek Filter Dropdown */
        .order_filter_box {
            position: relative;
            width: max-content;
        }

        .order_filter_dropdown {
            appearance: none;
            width: 100%;
            background-color: #ffffff;
            border: 1.5px solid #233524;
            padding: 12px 40px 12px 18px;
            border-radius: 30px; /* Modern rounded look */
            font-size: 14px;
            font-weight: 600;
            color: #233524;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            outline: none;
        }

        .order_filter_dropdown:hover {
            background-color: #233524;
            color: #ffffff;
        }

        .order_filter_box::after {
            content: "";
            position: absolute;
            right: 18px;
            top: 50%;
            width: 8px;
            height: 8px;
            border-right: 2px solid currentColor;
            border-bottom: 2px solid currentColor;
            transform: translateY(-70%) rotate(45deg);
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .order_filter_box:hover::after {
            color: #ffffff;
        }

        /* Order List Item */
        .order_details_item {
            display: grid;
            grid-template-columns: 140px 1fr 200px;
            gap: 32px;
            padding: 24px 0;
            border-bottom: 1px solid #f8f7f2;
            align-items: center;
            transition: transform 0.2s ease;
        }

        .order_details_item:hover {
            background-color: rgba(241, 239, 233, 0.2);
        }

        .order_details_item:last-child {
            border-bottom: none;
        }

        .order_product_image_box {
            width: 140px;
            height: 140px;
            background-color: #E4E6D9;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .order_product_svg {
            width: 60px;
            height: 60px;
            stroke: #233524;
            opacity: 0.8;
        }

        .order_product_content {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .order_meta_id {
            font-size: 11px;
            color: #233524;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            opacity: 0.6;
        }

        .order_product_name {
            font-size: 20px;
            font-weight: 600;
            color: #000000;
            margin: 0;
        }

        .order_spec_row {
            display: flex;
            gap: 12px;
            margin-top: 4px;
        }

        .order_spec_tag {
            font-size: 12px;
            padding: 6px 12px;
            background-color: #E4E6D9;
            color: #233524;
            border-radius: 6px;
            font-weight: 500;
        }

        /* Status & Actions */
        .order_status_sidebar {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 12px;
        }

        .order_status_badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 700;
            padding: 8px 16px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Delivered Status */
        .status_delivered {
            background-color: #E4E6D9;
            color: #233524;
        }

        /* Shipped/In Transit Status */
        .status_active {
            background-color: #233524;
            color: #ffffff;
        }

        .status_dot_pulse {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: currentColor;
        }

        .order_btn_track {
            font-size: 14px;
            color: #000000;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px solid #233524;
            padding-bottom: 2px;
            transition: all 0.2s ease;
        }

        .order_btn_track:hover {
            color: #233524;
            opacity: 0.7;
        }

        /* Responsive Breakpoints */
        @media (max-width: 860px) {
            .order_details_item {
                grid-template-columns: 120px 1fr;
                gap: 20px;
                place-items: center;
            }
            .order_status_sidebar {
                grid-column: 1 / span 2;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                border-top: 1px solid #f8f7f2;
                padding-top: 15px;
            }
            .u-page-wrapper{
              padding-top: 40px;
            }
        }

        @media (max-width: 600px) {
            .order_details_header {
                flex-direction: column;
                align-items: flex-start;
            }
            .order_filter_box {
                width: 100%;
            }
            .order_details_container {
                padding: 24px 16px;
                border-radius: 0;
            }
            .order_product_image_box {
                width: 100px;
                height: 100px;
            }
            .order_product_name {
                font-size: 17px;
            }
            .order_spec_row{
              flex-direction: column;
            }
            .order_spec_tag{
              width: max-content;
            }
        }

        /* wishlist */

        .wishlist_page_container {
            margin: 0;
            padding: 140px 20px;
            width: 100%;
            
            
            display: flex;
            justify-content: center;
            align-items: flex-start;
            box-sizing: border-box;
        }

        /* Wishlist Section (White Background) */
        .wishlist_main_section {
            background-color: #ffffff;
            width: 100%;
            max-width: 1100px;
            padding: 48px;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(35, 53, 36, 0.05);
            box-sizing: border-box;
        }

        .wishlist_header_group {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1.5px solid #E4E6D9;
        }

        .wishlist_title {
            color: #233524;
            font-size: 28px;
            font-weight: 700;
            margin: 0;
            letter-spacing: -0.5px;
        }

        .wishlist_count {
            font-size: 14px;
            color: #666666;
            font-weight: 500;
        }

        /* Wishlist Grid */
        .wishlist_product_grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 30px;
        }

        .wishlist_card {
            background-color: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            
            box-shadow: 0 10px 20px rgba(35, 53, 36, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid transparent;
        }

        .wishlist_card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(35, 53, 36, 0.08);
            border-color: #E4E6D9;
        }

        /* Image Container */
        .wishlist_img_container {
            width: 100%;
            aspect-ratio: 1 / 1;
            background-color: #f8f7f2;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .wishlist_product_img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .wishlist_card:hover .wishlist_product_img {
            transform: scale(1.08);
        }

        /* Remove Action */
        .wishlist_remove_btn {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 32px;
            height: 32px;
            background-color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: all 0.2s ease;
            z-index: 2;
        }

        .wishlist_remove_btn:hover {
            background-color: #233524;
        }

        .wishlist_remove_btn svg {
            width: 16px;
            height: 16px;
            stroke: #233524;
            fill: #233524;
            transition: all 0.2s ease;
        }

        .wishlist_remove_btn:hover svg {
            stroke: #ffffff;
            fill: #ffffff;
        }

        /* Product Details */
        .wishlist_details {
            padding: 20px 10px;
            text-align: center;
        }

        .wishlist_prod_category {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            color: #233524;
            opacity: 0.6;
            margin-bottom: 6px;
            display: block;
        }

        .wishlist_prod_name {
            font-size: 17px;
            font-weight: 600;
            color: #000000;
            margin: 0 0 10px 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .wishlist_prod_price {
            font-size: 18px;
            font-weight: 700;
            color: #233524;
            margin-bottom: 15px;
        }

        /* Add to Cart Button */
        .wishlist_atc_btn {
            width: 100%;
            padding: 12px;
            background-color: #233524;
            color: #ffffff;
            border: none;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.2s ease;
        }

        .wishlist_atc_btn:hover {
            opacity: 0.9;
        }

        /* Responsive Settings */
        @media (max-width: 768px) {
            .wishlist_main_section {
                padding: 30px 20px;
            }
            .wishlist_product_grid {
                grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
                gap: 20px;
            }
            .wishlist_prod_name {
                font-size: 15px;
            }
            .wishlist_title {
                font-size: 22px;
            }
        }

        @media (max-width: 480px) {
            .wishlist_product_grid {
                grid-template-columns: 1fr;
            }
            .wishlist_page_container {
                padding: 10px 10px 50px;
            }
        }

          .u_cart_viewport {
            margin: 0;
            padding: 120px 20px;
            width: 100%;
            
            display: flex;
            justify-content: center;
            align-items: flex-start;
            box-sizing: border-box;
            
        }

        /* Cart Section (White Background) */
        .u_cart_root {
            background-color: #ffffff;
            width: 100%;
            max-width: 1240px;
            padding: 0;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(35, 53, 36, 0.05);
            box-sizing: border-box;
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 24px;
            overflow: hidden;
            padding: 24px;
        }

        /* Top "See It Live" Banner */
        .u_cart_promo_banner {
            grid-column: 1 / span 1;
            background-color: #d8e6d9; /* Lighter shade of your green */
            border-radius: 12px;
            padding: 16px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .u_promo_text_box h4 {
            margin: 0;
            font-size: 15px;
            color: #233524;
            font-weight: 700;
        }

        .u_promo_text_box p {
            margin: 4px 0 0 0;
            font-size: 12px;
            color: #233524;
            opacity: 0.8;
        }

        .u_promo_btn {
            background-color: #233524;
            color: #ffffff;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            text-transform: uppercase;
        }

        /* Item Row Enhancements */
        .u_cart_item_card {
            border: 1px solid #E4E6D9;
            border-radius: 12px;
            padding: 24px;
            position: relative;
            margin-bottom: 24px;
            display: grid;
            grid-template-columns: 120px 1fr;
            gap: 20px;
        }

        .u_cart_remove_trigger {
            position: absolute;
            top: 15px;
            right: 15px;
            cursor: pointer;
            color: #666666;
            transition: color 0.2s;
        }

        .u_cart_remove_trigger:hover { color: #233524; }

        .u_cart_img_container {
            width: 120px;
            height: 120px;
            background-color: #f8f7f2;
            border-radius: 8px;
            overflow: hidden;
            display: block;
        }

        .u_cart_product_photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .u_cart_item_info {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .u_cart_prod_name {
            display: inline-block;
            font-size: 18px;
            font-weight: 700;
            color: #233524;
            margin: 0 0 8px 0;
            text-decoration: none;
        }

        .u_cart_price_row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .u_current_price { font-size: 18px; font-weight: 800; color: #233524; }
        .u_old_price { font-size: 14px; text-decoration: line-through; color: #999; }
        .u_save_tag { font-size: 14px; color: #d9534f; font-weight: 700; }

        .u_cart_sku { font-size: 11px; color: #999; letter-spacing: 1px; }

        .u_cart_specs {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
            margin-top: 12px;
        }

        .u_cart_specs span {
            border: 1px solid #E4E6D9;
            background: #fbfaf6;
            border-radius: 999px;
            color: #233524;
            font-size: 11px;
            font-weight: 600;
            padding: 5px 9px;
            line-height: 1.2;
        }

        .u_cart_controls_row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px dashed #E4E6D9;
        }

        .u_qty_stepper {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #f8f7f2;
            padding: 4px 12px;
            border-radius: 20px;
        }

        .u_qty_btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            display: flex;
            align-items: center;
            color: #233524;
        }

        .u_qty_val { font-size: 14px; font-weight: 500; min-width: 20px; text-align: center; }

        .u_cart_item_total {
            display: inline-flex;
            align-items: baseline;
            gap: 8px;
            margin-left: auto;
            color: #233524;
            white-space: nowrap;
        }

        .u_cart_item_total span {
            font-size: 12px;
            color: #767a6f;
        }

        .u_cart_item_total strong {
            font-size: 17px;
            font-weight: 800;
        }

        /* Frequently Bought Together */
      .u_fbt_section {
    margin-top: 40px;
}

.u_fbt_title {
    font-size: 16px;
    font-weight: 700;
    color: #233524;
    margin-bottom: 18px;
}

.u_fbt_grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
}

/* CARD */
.u_fbt_card {
   width: 100%;
    background: #ffffff;
    border: 1px solid #E4E6D9;
    border-radius: 14px;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.2s ease;
}

.u_fbt_card:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

/* HEADER */
.u_fbt_header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background-color: #233524;
    padding: 5px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.u_fbt_header i {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

/* IMAGE */
.u_fbt_img {
    width: 150px;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 12px;
}

/* TEXT */
.u_fbt_price {
    font-size: 15px;
    font-weight: 800;
    color: #233524;
}

.u_fbt_name {
    font-size: 11px;
    color: #666;
    margin-top: 4px;
    text-align: center;
}
        /* Right Sidebar Styles */
        .u_cart_summary_pane {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .u_pane_card {
            background-color: #ffffff;
            border: 1px solid #E4E6D9;
            border-radius: 12px;
            padding: 24px;
            text-align: center;
        }

        .u_coupon_box {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #f8f7f2;
            padding: 12px 16px;
            border-radius: 8px;
            color: #233524;
            font-size: 14px;
            font-weight: 600;
        }

        .u_pincode_row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
            border-bottom: 1px solid #E4E6D9;
            padding-bottom: 8px;
        }
        
        .u_pincode_input {
            border: none;
            font-size: 14px;
            font-weight: 700;
            outline: none;
            width: 120px;
        }

        .u_summary_list { margin-top: 20px; }
        .u_summary_row {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            margin-bottom: 12px;
            color: #666;
        }
        .u_summary_row.u_highlight { color: #d9534f; font-weight: 700; }

        .u_total_row {
            display: flex;
            justify-content: space-between;
            padding-top: 20px;
            border-top: 2px solid #E4E6D9;
            margin-top: 10px;
            font-size: 20px;
            font-weight: 800;
            color: #233524;
        }

        .u_btn_checkout {
            width: 100%;
            background-color: #233524; /* Your primary green */
            color: #ffffff;
            border: none;
            padding: 18px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            margin-top: 20px;
            transition: opacity 0.2s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        #place_order_btn{
          margin: 20px auto 10px;
        }

        /* Responsive Settings */
        @media (max-width: 1024px) {
            .u_cart_root { display: flex; flex-direction: column-reverse; padding: 10px; }
            .u_cart_summary_pane { order: -1; }
            .u_cart_viewport{
              padding: 40px 0px;
            }
        }

        @media (max-width: 600px) {
            .u_cart_item_card { grid-template-columns: 1fr; }
            .u_cart_img_container { width: 100%; height: 200px; }
            .u_cart_controls_row { align-items: flex-start; flex-direction: column; }
            .u_cart_item_total { margin-left: 0; }
            .u_fbt_card{
              min-width: 180px;
            }
        }

        .u_checkout_page {
            margin: 0;
            padding: 0;
            background: #fbfbf7;
            color: #233524;
            box-sizing: border-box;
        }

        .u_chk_container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 56px 24px 76px;
            display: grid;
            grid-template-columns: minmax(0, 1fr) 390px;
            gap: 28px;
            align-items: start;
        }

        /* Forms Section */
        .u_chk_form_card {
            background: #ffffff;
            border: 1px solid #e4e6d9;
            border-radius: 8px;
            padding: 28px;
            margin-bottom: 18px;
            box-shadow: 0 12px 34px rgba(35, 53, 36, 0.04);
        }

        .u_chk_card_header {
            font-size: 18px;
            font-weight: 700;
            margin: 0 0 22px 0;
            display: flex;
            align-items: center;
            gap: 12px;
            color: #233524;
            letter-spacing: 0;
        }

        .u_chk_grid_layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
        }

        .u_chk_input_box {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .u_chk_span_full {
            grid-column: 1 / -1;
        }

        .u_chk_field_label {
            font-size: 12px;
            font-weight: 700;
            color: #415344;
            text-transform: uppercase;
            letter-spacing: 0;
        }

        .u_chk_text_field {
            min-height: 48px;
            padding: 12px 14px;
            border: 1px solid #e0ddd5;
            border-radius: 6px;
            font-size: 15px;
            outline: none;
            transition: all 0.2s ease;
            background-color: #ffffff;
            color: #233524;
        }

        .u_chk_text_field:focus {
            border-color: #233524;
            background-color: #fcfbf8;
        }

        .u_chk_company_toggle {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 14px 16px;
            border: 1px solid #e0ddd5;
            border-radius: 8px;
            background: #fbfaf5;
            cursor: pointer;
        }

        .u_chk_company_toggle input {
            width: 18px;
            height: 18px;
            margin-top: 2px;
            accent-color: #233524;
        }

        .u_chk_company_toggle strong {
            display: block;
            color: #233524;
            font-size: 14px;
            margin-bottom: 2px;
        }

        .u_chk_company_note {
            display: block;
            color: #687465;
            font-size: 13px;
            line-height: 1.45;
        }

        /* Payment Selection */
        .u_chk_pay_grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .u_chk_pay_grid_single {
            grid-template-columns: 1fr;
        }

        .u_chk_pay_option {
            border: 1px solid #e0ddd5;
            border-radius: 8px;
            padding: 18px;
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
            background: #ffffff;
            text-align: left;
            width: 100%;
        }

        .u_chk_pay_option.u_selected {
            border-color: #233524;
            background-color: #f8f7f2;
            box-shadow: inset 0 0 0 1px #233524;
        }

        .u_chk_radio_ui {
            width: 16px;
            height: 16px;
            border: 1px solid #233524;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .u_chk_pay_option.u_selected .u_chk_radio_ui::after {
            content: '';
            width: 8px;
            height: 8px;
            background: #233524;
            border-radius: 50%;
        }

        .u_chk_pay_title {
            font-size: 15px;
            font-weight: 700;
            display: block;
        }

        .u_chk_pay_desc {
            font-size: 13px;
            color: #687465;
            margin-top: 3px;
            display: block;
        }

        .u_chk_payment_note {
            margin: 12px 0 0;
            color: #687465;
            font-size: 13px;
            line-height: 1.5;
        }

        /* Order Summary Sidebar */
        .u_chk_sidebar_inner {
            background: #ffffff;
            border: 1px solid #e4e6d9;
            border-radius: 8px;
            padding: 24px;
            box-shadow: 0 12px 34px rgba(35, 53, 36, 0.05);
            position: sticky;
            top: 104px;
        }

        .u_chk_summary_heading {
            font-size: 17px;
            font-weight: 700;
            margin: 0 0 20px 0;
            color: #233524;
        }

        .u_chk_mini_prod {
            display: flex;
            gap: 12px;
            padding-bottom: 16px;
            margin-bottom: 16px;
            border-bottom: 1px solid #E4E6D9;
        }

        .u_chk_thumb {
            width: 50px;
            height: 50px;
            border-radius: 4px;
            background-color: #f8f7f2;
            object-fit: cover;
        }

        .u_chk_mini_info {
            flex: 1;
        }

        .u_chk_mini_title {
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 2px;
        }

        .u_chk_mini_val {
            font-size: 13px;
            font-weight: 600;
        }

        .u_chk_calc_row {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            margin-bottom: 10px;
            color: #666;
        }

        .u_chk_discount_accent {
            color: #d9534f;
        }

        .u_chk_final_total {
            display: flex;
            justify-content: space-between;
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid #E4E6D9;
            font-size: 18px;
            font-weight: 800;
            color: #233524;
        }

        .u_chk_submit_btn {
            width: 100%;
            margin: 24px 0 0;
            background: #233524;
            color: #ffffff;
            border: none;
            min-height: 52px;
            padding: 16px 20px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: opacity 0.2s;
        }

        .u_chk_submit_btn:hover {
            opacity: 0.95;
        }

        .u_chk_secure_tag {
            text-align: center;
            font-size: 11px;
            color: #999;
            margin-top: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .u_chk_container { grid-template-columns: 1fr; padding: 36px 16px 56px; }
            .u_chk_sidebar_inner { position: static; }
        }

        @media (max-width: 600px) {
            .u_chk_grid_layout { grid-template-columns: 1fr; }
            .u_chk_pay_grid { grid-template-columns: 1fr; }
            .u_chk_form_card,
            .u_chk_sidebar_inner { padding: 20px; }
        }

        .jw-reg-wrapper {
            background-color: #E4E6D9;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            box-sizing: border-box;
        }

        .jw-reg-card {
            background-color: #fff;
            width: 100%;
            max-width: 500px;
            /* border: 1px solid #233524; */
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(35, 53, 36, 0.05);
        }

        .jw-reg-header {
            text-align: center;
            margin-bottom: 35px;
        }

        .jw-reg-logo {
            font-size: 28px;
            /* font-weight: 300; */
            /* letter-spacing: 4px; */
            color: #233524;
            /* text-transform: uppercase; */
            margin-bottom: 10px;
        }

        .jw-reg-subtitle {
            font-size: 16px;
            color: #233524;
            /* opacity: 0.8; */
            letter-spacing: 1px;
        }

        .jw-reg-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .jw-reg-field-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .jw-reg-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #233524;
            font-weight: 600;
        }

        .jw-reg-input {
            background-color: transparent;
            border: none;
            border-bottom: 1px solid rgba(35, 53, 36, 0.3);
            padding: 10px 0;
            color: #233524;
            font-size: 16px;
            transition: border-color 0.3s ease;
            outline: none;
            border-radius: 0;
        }

        .jw-reg-input:focus {
            border-bottom: 1px solid #233524;
        }

        .jw-reg-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .jw-reg-checkbox-container {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-top: 10px;
            cursor: pointer;
        }

        .jw-reg-checkbox {
            accent-color: #233524;
            margin-top: 3px;
        }

        .jw-reg-checkbox-text {
            font-size: 12px;
            color: #233524;
            line-height: 1.5;
        }

        .jw-reg-submit-btn {
            background-color: #233524;
            color: #E4E6D9;
            border: none;
            padding: 16px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            margin-top: 15px;
            transition: opacity 0.3s ease;
            border-radius: 2px;
        }

        .jw-reg-submit-btn:hover {
            opacity: 0.9;
        }

        .jw-reg-footer {
            margin-top: 25px;
            text-align: center;
            font-size: 13px;
            color: #233524;
        }

        .jw-reg-link {
            color: #233524;
            text-decoration: underline;
            font-weight: 600;
        }

        @media (max-width: 480px) {
            .jw-reg-card {
                padding: 30px 20px;
                border: none;
            }
            
            .jw-reg-row {
                grid-template-columns: 1fr;
            }

            .jw-reg-logo {
                font-size: 22px;
            }
        }

        /* Guide Button */
.auer-size-guide-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    border: 1px solid #ddd;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 10px;
    /* margin-top: 10px; */
    transition: all 0.2s ease;
}

.auer-size-guide-btn:hover {
    background: #f9f9f9;
    border-color: #000;
}

/* Modal Overlay */
.auer-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Modal Content */
.auer-modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    margin: 10vh auto;
    padding: 30px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.auer-modal-overlay.active {
    display: block;
    opacity: 1;
}

.auer-modal-overlay.active .auer-modal-content {
    transform: translateY(0);
}

.auer-modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #888;
}

/* Table Styles */
.auer-table-container {
    overflow-x: auto;
    margin-top: 20px;
}

.auer-size-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.auer-size-table th, .auer-size-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.auer-size-table th {
    background: #f8f8f8;
    font-weight: 600;
}

.auer-modal-footer {
    margin-top: 20px;
    font-size: 12px;
    color: #666;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

/* Full-screen Overlay */
.zx-lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.zx-lightbox-overlay.active {
    display: flex;
}

/* Content Container */


/* Media Wrapper - Ensures full use of space */


/* Navigation Arrows */
.zx-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #e4e6d9;
    color: black;
    border: none;
    padding: 5px 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10001;
    transition: 0.3s ease;
}

.zx-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.zx-prev { left: 20px; }
.zx-next { right: 20px; }

#silver_icon{
  background: none;
  border: none;
  width: 60px;
}

@media (max-width: 768px) {
    /* .zx-nav-btn {
        padding: 15px 10px;
        font-size: 24px;
        background: rgba(0, 0, 0, 0.5);
    } */
}

/* Layout Root Wrapper */
  .jwl-dashboard-container {
    background-color: #E4E6D9;
    padding: 100px 1.5rem;
    box-sizing: border-box;
    min-height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: auto;
    gap: 2rem;
  }

  .jwl-dashboard-container *,
  .jwl-dashboard-container *::before,
  .jwl-dashboard-container *::after {
    box-sizing: border-box;
  }

  /* Header Styles */
  .jwl-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(35, 53, 36, 0.15);
    padding-bottom: 1.5rem;
  }

  .jwl-badge {
    display: inline-block;
    background-color: #233524;
    color: #E4E6D9;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.3em 0.8em;
    border-radius: 20px;
    margin-bottom: 0.6rem;
  }

  .jwl-main-title {
    color: #233524;
    margin: 0 0 0.4rem 0;
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: -0.01em;
  }

  .jwl-subtitle {
    color: rgba(35, 53, 36, 0.75);
    margin: 0;
    font-size: 0.95rem;
    font-weight: 400;
  }

  /* Core Buttons */
  .jwl-btn-secondary {
    background-color: transparent;
    color: #233524;
    border: 1px solid #233524;
    padding: 0.7rem 1.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
  }

  .jwl-btn-secondary:hover {
    background-color: #233524;
    /* color: #white; */
    color: #ffffff;
  }

  .jwl-btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #233524;
    color: #E4E6D9;
    border: 1px solid #233524;
    padding: 0.9rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }

  .jwl-btn-primary:hover {
    background-color: #314a33;
    border-color: #314a33;
  }

  /* Grid System - Responsive Flexbox/Grid fallback */
  .jwl-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  /* General Card Layout */
  .jwl-card {
    background-color: #ffffff;
    border: 1px solid rgba(35, 53, 36, 0.1);
    padding: 2rem;
    display: flex;
    border-radius: 10px;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(35, 53, 36, 0.02);
  }

  .jwl-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(35, 53, 36, 0.05);
  }

  .jwl-card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.8rem;
    border-bottom: 1px solid rgba(35, 53, 36, 0.05);
    padding-bottom: 1rem;
    position: relative;
  }

  .jwl-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #233524;
    background-color: #E4E6D9;
    width: 36px;
    height: 36px;
    border-radius: 50%;
  }

  .jwl-card-title {
    font-size: 1.15rem;
    font-weight: 500;
    color: #233524;
    margin: 0;
    letter-spacing: 0.02em;
  }

  .jwl-card-badge {
    position: absolute;
    right: 0;
    top: 6px;
    background-color: #E4E6D9;
    color: #233524;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
  }

  .jwl-card-footer {
    margin-top: 1.8rem;
  }

  /* CARD 1: Profile Specific Styles */
  .jwl-profile-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .jwl-avatar-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #E4E6D9;
    padding: 1rem;
    border-radius: 4px;
  }

  .jwl-avatar-initials {
    width: 44px;
    height: 44px;
    background-color: #233524;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.05em;
  }

  .jwl-profile-name {
    margin: 0 0 0.15rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: #233524;
  }

  .jwl-profile-email {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(35, 53, 36, 0.7);
  }

  .jwl-profile-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 0.5rem 0;
  }

  .jwl-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(35, 53, 36, 0.1);
    padding-bottom: 0.5rem;
  }

  .jwl-detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .jwl-detail-label {
    font-size: 0.8rem;
    color: #233524;
  }

  .jwl-detail-val {
    font-size: 0.85rem;
    font-weight: 500;
    max-width: 200px;
    color: #233524;
    text-align: right;
  }

  /* CARD 2: Order List Specific Styles */
  .jwl-orders-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .jwl-order-item {
    border: 1px solid rgba(35, 53, 36, 0.08);
    padding: 1rem;
    border-radius: 4px;
    background-color: rgba(228, 230, 217, 0.15);
  }

  .jwl-order-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.6rem;
  }

  .jwl-order-id {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: #233524;
    margin-bottom: 0.1rem;
  }

  .jwl-order-date {
    display: block;
    font-size: 0.75rem;
    color: rgba(35, 53, 36, 0.6);
  }

  .jwl-status-tag {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    letter-spacing: 0.03em;
  }

  .jwl-status-shipping {
    background-color: #E4E6D9;
    color: #233524;
  }

  .jwl-status-delivered {
    background-color: rgba(35, 53, 36, 0.1);
    color: #233524;
  }

  .jwl-status-pending {
    background-color: #f1efeb;
    color: #233524;
    border: 1px solid rgba(35, 53, 36, 0.2);
  }

  .jwl-order-product {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.85rem;
  }

  .jwl-prod-name {
    color: rgba(35, 53, 36, 0.85);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .jwl-prod-price {
    font-weight: 500;
    color: #233524;
  }

  /* CARD 3: Returns Specific Styles */
  .jwl-returns-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .jwl-return-prompt {
    background-color: rgba(228, 230, 217, 0.3);
    padding: 1rem;
    border-left: 3px solid #233524;
    border-radius: 0 4px 4px 0;
  }

  .jwl-prompt-text {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.45;
    color: #233524;
  }

  .jwl-return-status-box {
    border: 1px solid rgba(35, 53, 36, 0.08);
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 4px;
  }

  .jwl-status-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
  }

  .jwl-status-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(35, 53, 36, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .jwl-return-product-title {
    margin: 0 0 0.8rem 0;
    font-size: 0.85rem;
    color: #233524;
    font-weight: 500;
  }

  .jwl-progress-tracker {
    height: 4px;
    width: 100%;
    background-color: #E4E6D9;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    overflow: hidden;
  }

  .jwl-progress-bar {
    height: 100%;
    background-color: #233524;
    border-radius: 10px;
  }

  .jwl-progress-text {
    margin: 0;
    font-size: 0.72rem;
    color: rgba(35, 53, 36, 0.6);
  }


  /* --- MEDIA QUERIES (RESPONSIVENESS) --- */
  
  /* Tablets and Smaller Screens */
  @media screen and (max-width: 1024px) {
    .jwl-dashboard-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.25rem;
    }
  }

  /* Mobile Devices */
  @media screen and (max-width: 768px) {
    .jwl-dashboard-container {
      padding: 1.5rem 1rem;
    }

    .jwl-dashboard-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }

    .jwl-header-actions {
      width: 100%;
    }

    .jwl-btn-secondary {
      width: 100%;
      text-align: center;
    }

    .jwl-dashboard-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .jwl-card {
      padding: 1.5rem;
    }
  }

   .jwl-forgot-container {
    background-color: #E4E6D9;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
    box-sizing: border-box;
  }

  .jwl-forgot-container *,
  .jwl-forgot-container *::before,
  .jwl-forgot-container *::after {
    box-sizing: border-box;
  }

  /* Main Card Component */
  .jwl-forgot-card {
    background-color: #ffffff;
    border: 1px solid rgba(35, 53, 36, 0.1);
    box-shadow: 0 10px 40px rgba(35, 53, 36, 0.04);
    border-radius: 8px;
    width: 100%;
    max-width: 460px;
    padding: 3rem 2.5rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  }

  /* Branding / Mark Elements */
  .jwl-forgot-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.25rem;
  }

  .jwl-forgot-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #233524;
    background-color: #E4E6D9;
    width: 44px;
    height: 44px;
    border-radius: 50%;
  }

  .jwl-forgot-brand-name {
    color: #233524;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
  }

  /* Typography Structure */
  .jwl-forgot-header {
    margin-bottom: 2rem;
  }

  .jwl-forgot-title {
    color: #233524;
    font-size: 1.85rem;
    font-weight: 500;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.01em;
    line-height: 1.25;
  }

  .jwl-forgot-subtitle {
    color: rgba(35, 53, 36, 0.7);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
  }

  /* Form Mechanics */
  .jwl-forgot-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .jwl-forgot-field-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .jwl-forgot-label {
    color: #233524;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .jwl-forgot-input-wrapper {
    position: relative;
    width: 100%;
  }

  .jwl-forgot-input {
    width: 100%;
    background-color: rgba(228, 230, 217, 0.2);
    border: 1px solid rgba(35, 53, 36, 0.15);
    border-radius: 4px;
    color: #233524;
    padding: 0.9rem 1.1rem;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.25s ease-in-out;
  }

  .jwl-forgot-input:focus {
    background-color: #ffffff;
    border-color: #233524;
    box-shadow: 0 0 0 3px rgba(35, 53, 36, 0.06);
  }

  /* Error Feedback Block */
  .jwl-forgot-error-box {
    background-color: rgba(217, 83, 79, 0.08);
    border: 1px solid rgba(217, 83, 79, 0.2);
    border-radius: 4px;
    color: #b94a48;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    line-height: 1.4;
  }

  /* Buttons & Anchors */
  .jwl-forgot-btn-primary {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #233524;
    color: #E4E6D9;
    border: 1px solid #233524;
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
  }

  .jwl-forgot-btn-primary:hover {
    background-color: #314a33;
    border-color: #314a33;
    box-shadow: 0 4px 12px rgba(35, 53, 36, 0.15);
  }

  .jwl-forgot-btn-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: transparent;
    color: #233524;
    border: 1px solid #233524;
    padding: 0.9rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: all 0.25s ease-in-out;
  }

  .jwl-forgot-btn-secondary:hover {
    background-color: #233524;
    color: #ffffff;
  }

  .jwl-forgot-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(35, 53, 36, 0.1);
    padding-top: 1.5rem;
  }

  .jwl-forgot-back-link {
    color: rgba(35, 53, 36, 0.7);
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
  }

  .jwl-forgot-back-link:hover {
    color: #233524;
  }

  /* Success State Styles */
  .jwl-forgot-success-graphic {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
  }

  .jwl-forgot-success-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E4E6D9;
    color: #233524;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    animation: jwlScaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  }

  .jwl-forgot-highlight-email {
    color: #233524;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.25rem;
  }

  .jwl-forgot-success-info {
    background-color: rgba(228, 230, 217, 0.3);
    border-left: 3px solid #233524;
    padding: 1rem;
    border-radius: 0 4px 4px 0;
    margin-top: 1.5rem;
  }

  .jwl-forgot-info-text {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #233524;
  }

  /* Button Spinner */
  .jwl-btn-loader {
    width: 18px;
    height: 18px;
    border: 2px solid #E4E6D9;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    animation: jwlRotation 1s linear infinite;
  }

  /* Simple CSS Animations */
  @keyframes jwlScaleIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }

  @keyframes jwlRotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  /* --- MEDIA QUERIES (RESPONSIVENESS) --- */
  @media screen and (max-width: 480px) {
    .jwl-forgot-container {
      padding: 1.5rem 1rem;
    }

    .jwl-forgot-card {
      padding: 2.25rem 1.5rem;
    }

    .jwl-forgot-title {
      font-size: 1.6rem;
    }
  }

  .jwl-gallery-wrapper {
    flex: 1;
    position: relative;
    top: auto;
    /* height: 80vh; */
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
  }

  .jwl-gallery-wrapper *,
  .jwl-gallery-wrapper *::before,
  .jwl-gallery-wrapper *::after {
    box-sizing: border-box;
  }

  /* 2x2 Grid with Minimal Plus (+) Center Divider */
  .jwl-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: #ffffff;
    border: 1px solid rgba(35, 53, 36, 0.15);
    border-radius: 8px;
    /* overflow: hidden; */
    height: auto;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 10px 30px rgba(35, 53, 36, 0.04);
  }

  /* Symmetrical Border Intersections creating a central '+' line */
.jwl-gallery-item {
  position: relative;
  aspect-ratio: 1930 / 2000;
  display: flex;
  align-items: center;
  justify-content: center;
    cursor: pointer;
    background-color: #ffffff;
    border: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    overflow: hidden;
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Perfect plus sign borders mimicking x and o game intersections */
  .jwl-gallery-item {
    border-right: 1px solid #2335241a;
    border-bottom: 1px solid #2335241a;
  }

  .jwl-gallery-item:nth-child(2n) {
    border-right: 0;
  }

  .jwl-gallery-item:last-child {
    border-bottom: 0;
  }

  /* Image presentation layer */
  .jwl-gallery-img-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .jwl-gallery-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    image-rendering: auto;
  }

  .jwl-gallery-video {
    width: 100%;
    height: 100%;
  }

  /* Fallback styling for images that cannot be found */
  .jwl-gallery-placeholder-svg {
    width: 100%;
    height: 100%;
    background-color: #E4E6D9;
    padding: 2rem;
  }

  /* Hover Overlay states */
  .jwl-gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e4e6d952;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 1rem;
    text-align: center;
  }

  .jwl-gallery-item:hover .jwl-gallery-hover-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .jwl-gallery-item:hover .jwl-gallery-img-container {
    transform: scale(1.03);
  }

  .jwl-gallery-expand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #233524;
    color: #E4E6D9;
    box-shadow: 0 4px 12px rgba(35, 53, 36, 0.15);
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .jwl-gallery-item:hover .jwl-gallery-expand-icon {
    transform: translateY(0);
  }

  .jwl-gallery-tag {
    color: #233524;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  /* --- LIGHTBOX MODAL PRESENTATION STYLING --- */

 .jwl-lightbox-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 90px 0 0;

  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.jwl-lightbox-backdrop.jwl-active {
  opacity: 1;
  pointer-events: auto;
}

.jwl-lightbox-bg-close {
  position: absolute;
  inset: 0;

  background: rgba(35, 53, 36, 0.88);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.jwl-lightbox-card {
  position: relative;
  z-index: 10000;

  width: min(1100px, 92vw);
  height: min(820px, 76vh);

  background: #fff;

  border-radius: 14px;
  border: 1px solid rgba(35,53,36,.08);

  box-shadow: 0 30px 80px rgba(0,0,0,.25);

  display: grid;
  grid-template-rows: 1fr auto;

  padding: 28px;

  transform: scale(.96);
  transition: transform .35s ease;
}

.jwl-lightbox-backdrop.jwl-active .jwl-lightbox-card {
  transform: scale(1);
}

.jwl-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;

  width: 40px;
  height: 40px;

  border-radius: 50%;
  border: 1px solid rgba(35,53,36,.12);

  background: #fff;
  color: #233524;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  z-index: 100;
}

.jwl-lightbox-close:hover {
  background: #233524;
  color: #fff;
}

.jwl-lightbox-viewer {
  display: grid;
  grid-template-columns: 60px 1fr 60px;

  align-items: center;

  min-height: 0;
  height: 100%;
}

.jwl-lightbox-main-content {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.jwl-lightbox-main-content img,
.jwl-lightbox-main-content svg {
  width: auto;
  height: auto;

  max-width: 100%;
  max-height: 100%;

  object-fit: contain;
  object-position: center;

  display: block;
}

.jwl-lightbox-arrow {
  width: 48px;
  height: 48px;

  border-radius: 50%;
  border: 1px solid rgba(35,53,36,.12);

  background: #fff;
  color: #233524;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  flex-shrink: 0;
}

.jwl-lightbox-arrow:hover {
  background: #233524;
  color: #fff;
}

.jwl-lightbox-footer {
  padding-top: 18px;

  border-top: 1px solid rgba(35,53,36,.08);

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 12px;
}

.jwl-lightbox-caption {
  margin: 0;

  color: #233524;

  font-size: .95rem;
  font-weight: 600;

  letter-spacing: .08em;
  text-transform: uppercase;
}

.jwl-lightbox-thumbs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 10px;
}

.jwl-thumb-item {
  width: 60px;
  height: 60px;

  border-radius: 6px;
  /* border: 1px solid rgba(35,53,36,.15); */

  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  padding: 5px;
  transition: .25s;
}

.jwl-thumb-item:hover {
  /* background: #E4E6D9; */
  border-color: #233524;
}

.jwl-thumb-item.jwl-active-thumb {
  /* background: #E4E6D9; */
  border-color: #233524;

  box-shadow: 0 0 0 1px #233524;
}

.jwl-thumb-indicator {
  color: #233524;
  font-size: .85rem;
  font-weight: 600;
}

  .jwl-thumb-item:hover {
    border-color: #233524;
    /* background-color: #E4E6D9; */
  }

  

  /* Scale and Fade animation */
  @keyframes jwlFadeScaleIn {
    0% {
      opacity: 0;
      transform: scale(0.95);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  /* --- MEDIA QUERIES & SCALING CONTROLS --- */
  
  @media screen and (max-width: 1024px) {
    /* If layout goes single-column on mobile/tablet, unstick and layout naturally */
    .jwl-gallery-wrapper {
      position: relative;
      top: 0;
      height: auto;
      max-width: 100%;
      margin-bottom: 2rem;
    }
  }

  @media screen and (max-width: 640px) {
    .jwl-lightbox-card {
      padding: 1.5rem;
    }

    .jwl-lightbox-main-content {
      height: 220px;
    }

    .jwl-lightbox-arrow {
      width: 38px;
      height: 38px;
    }
    .jwl-gallery-grid{
      max-width: 100%;
    }
  }

  /* Section Container Styling */
.calc_mf_policy_section {
  background-color: #E4E6D9;
  padding: 80px 24px;
  box-sizing: border-box;
}

/* Parent layout must allow alignment stretching for sticky to find its track */
.calc_mf_policy_container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start; 
  gap: 48px;
  /* height: 100vh; */
  box-sizing: border-box;
}

/* Left Column - Sticky Tabs (40%) */
.calc_mf_policy_tabs_column {
  width: 40%;
  display: flex;
  flex-direction: column;
  /* gap: 12px; */
  box-sizing: border-box;
  position: -webkit-sticky;
  position: sticky;
  top: 100px; /* Distance from top edge of screen when stickiness activates */
}

.calc_mf_policy_tab_btn {
  background: none;
  border: none;
  border-left: 3px solid transparent;
  color: #000000;
  text-align: left;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.calc_mf_policy_tab_btn:hover {
  /* border-left-color: #113d48; */
  /* padding-left: 32px; */
  background-color: rgba(17, 61, 72, 0.04);
}

.calc_mf_policy_tab_btn.calc_mf_active {
  border-left-color: #113d48;
  color: #113d48;
  font-weight: 600;
  background-color: rgba(17, 61, 72, 0.04);
}

/* Right Column - Content (60%) */
.calc_mf_policy_content_column {
  width: 60%;
  background-color: #ffffff;
  padding: 30px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  box-sizing: border-box;
}

.calc_mf_policy_pane {
  display: none;
  animation: calc_mf_fadeIn 0.4s ease forwards;
}

.calc_mf_policy_pane.calc_mf_pane_active {
  display: block;
}

.calc_mf_policy_heading {
  color: #000000;
  font-size: 30px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.calc_mf_sub_heading {
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.calc_mf_policy_text {
  color: #000000;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 20px;
  opacity: 0.85;
}

/* Pure Fade-In Animation */
@keyframes calc_mf_fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsiveness Architecture */
@media (max-width: 991px) {
  .calc_mf_policy_container {
    gap: 32px;
  }
  .calc_mf_policy_content_column {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .calc_mf_policy_section {
    padding: 48px 16px;
  }
  .calc_mf_policy_container {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  /* Reverts stickiness seamlessly on tiny viewports where vertical columns fold */
  .calc_mf_policy_tabs_column {
    width: 100%;
    position: static; 
    flex-direction: row;
    overflow-x: auto;
    white-space: nowrap;
    gap: 8px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .calc_mf_policy_tabs_column::-webkit-scrollbar {
    display: none;
  }
  .calc_mf_policy_tab_btn {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 12px 16px;
    font-size: 14px;
  }
  .calc_mf_policy_tab_btn:hover {
    border-bottom-color: #113d48;
    padding-left: 16px;
  }
  .calc_mf_policy_tab_btn.calc_mf_active {
    border-left: none;
    border-bottom-color: #113d48;
  }
  .calc_mf_policy_content_column {
    width: 100%;
    padding: 24px;
  }
  .calc_mf_policy_heading {
    font-size: 22px;
    margin-bottom: 16px;
  }
}

.jwl-profile-sec-container {
    background-color: #E4E6D9;
    padding: 6rem 1.5rem;
    box-sizing: border-box;
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
  }

  .jwl-profile-sec-container *,
  .jwl-profile-sec-container *::before,
  .jwl-profile-sec-container *::after {
    box-sizing: border-box;
  }

  /* Section Header styling */
  .jwl-profile-sec-header {
    border-bottom: 1px solid rgba(35, 53, 36, 0.15);
    padding-bottom: 1.5rem;
  }

  .jwl-profile-sec-badge {
    display: inline-block;
    background-color: #233524;
    color: #E4E6D9;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.3em 0.8em;
    border-radius: 20px;
    margin-bottom: 0.6rem;
  }

  .jwl-profile-sec-title {
    color: #233524;
    margin: 0 0 0.4rem 0;
    font-size: 2.2rem;
    font-weight:500;
    letter-spacing: -0.01em;
  }

  .jwl-profile-sec-subtitle {
    color: rgba(35, 53, 36, 0.75);
    margin: 0;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
  }

  /* Interactive Navigation Tabs */
  .jwl-profile-tabs {
    display: flex;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(35, 53, 36, 0.1);
    padding-bottom: 0.1rem;
  }

  .jwl-profile-tab-btn {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    color: #233524f5;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.8rem 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    transition: color 0.3s ease;
  }

  .jwl-profile-tab-btn:hover {
    color: #233524;
  }

  .jwl-profile-tab-btn.jwl-active {
    color: #233524;
    font-weight: 600;
  }

  .jwl-profile-tab-btn.jwl-active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #233524;
  }

  /* Content Panels */
  .jwl-profile-panel {
    display: none;
    animation: jwlProfileFadeIn 0.4s ease both;
  }

  .jwl-profile-panel.jwl-active {
    display: block;
  }

  /* Profile Card Details Panel */
  .jwl-profile-card {
    background-color: #ffffff;
    border: 1px solid rgba(35, 53, 36, 0.1);
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(35, 53, 36, 0.03);
    border-radius: 8px;
  }

  .jwl-card-intro {
    margin-bottom: 2rem;
  }

  .jwl-card-main-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #233524;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.02em;
  }

  .jwl-card-main-subtitle {
    font-size: 0.88rem;
    color: rgba(35, 53, 36, 0.65);
    margin: 0;
    line-height: 1.5;
  }

  /* Editable rows design */
  .jwl-detail-list {
    display: flex;
    flex-direction: column;
  }

  .jwl-editable-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(35, 53, 36, 0.08);
    padding: 1.5rem 0;
    gap: 1.5rem;
    transition: background-color 0.25s ease;
  }

  .jwl-editable-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .jwl-row-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .jwl-row-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(35, 53, 36, 0.5);
    letter-spacing: 0.08em;
  }

  .jwl-row-value {
    font-size: 0.95rem;
    color: #233524;
    font-weight: 500;
  }

  /* Inline Editing Input elements */
  .jwl-row-input-wrapper {
    width: 100%;
    max-width: 400px;
    margin-top: 0.2rem;
  }

  .jwl-row-input {
    width: 100%;
    background-color: rgba(228, 230, 217, 0.3);
    border: 1px solid rgba(35, 53, 36, 0.2);
    border-radius: 4px;
    padding: 0.6rem 0.8rem;
    color: #233524;
    font-size: 0.9rem;
    font-weight: 500;
    outline: none;
    transition: all 0.25s ease;
  }

  .jwl-row-input:focus {
    background-color: #ffffff;
    border-color: #233524;
    box-shadow: 0 0 0 3px rgba(35, 53, 36, 0.06);
  }

  /* Action Buttons inside rows */
  .jwl-edit-btn,
  .jwl-save-btn,
  .jwl-cancel-btn {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
    border-radius: 4px;
  }

  .jwl-edit-btn {
    border: 1px solid rgba(35, 53, 36, 0.2);
    color: #233524;
  }

  .jwl-edit-btn:hover {
    background-color: rgba(35, 53, 36, 0.05);
    border-color: #233524;
  }

  .jwl-edit-controls {
    display: flex;
    gap: 0.5rem;
  }

  .jwl-save-btn {
    background-color: #233524;
    color: #E4E6D9;
    border: 1px solid #233524;
  }

  .jwl-save-btn:hover {
    background-color: #314a33;
    border-color: #314a33;
  }

  .jwl-cancel-btn {
    color: rgba(35, 53, 36, 0.6);
    border: 1px solid transparent;
  }

  .jwl-cancel-btn:hover {
    color: #233524;
    background-color: rgba(35, 53, 36, 0.05);
  }


  /* --- ADDRESS BOOK DIRECTORY STYLING --- */

  .jwl-address-view-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .jwl-add-addr-btn {
    background-color: #233524;
    color: #E4E6D9;
    border: 1px solid #233524;
    padding: 0.8rem 1.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.25s ease;
    border-radius: 4px;
    flex-shrink: 0;
  }

  .jwl-add-addr-btn:hover {
    background-color: #314a33;
    border-color: #314a33;
    box-shadow: 0 4px 12px rgba(35, 53, 36, 0.12);
  }

  /* Collapsible / Slidable Form to Add New Address */
  .jwl-add-address-panel-wrapper {
    background-color: #ffffff;
    border: 1px solid rgba(35, 53, 36, 0.15);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 30px rgba(35, 53, 36, 0.04);
    animation: jwlProfileSlideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .jwl-form-inner-title {
    font-size: 1.15rem;
    color: #233524;
    font-weight: 500;
    margin: 0 0 1.5rem 0;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(35, 53, 36, 0.08);
    padding-bottom: 0.8rem;
  }

  .jwl-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .jwl-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .jwl-span-full {
    grid-column: span 2;
  }

  .jwl-form-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(35, 53, 36, 0.5);
    letter-spacing: 0.08em;
  }

  .jwl-form-input {
    width: 100%;
    background-color: rgba(228, 230, 217, 0.2);
    border: 1px solid rgba(35, 53, 36, 0.15);
    border-radius: 4px;
    color: #233524;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.25s ease;
  }

  .jwl-form-input:focus {
    background-color: #ffffff;
    border-color: #233524;
    box-shadow: 0 0 0 3px rgba(35, 53, 36, 0.05);
  }

  .jwl-form-checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }

  .jwl-form-checkbox {
    width: 16px;
    height: 16px;
    accent-color: #233524;
    cursor: pointer;
  }

  .jwl-checkbox-label {
    font-size: 0.85rem;
    color: rgba(35, 53, 36, 0.75);
    user-select: none;
    cursor: pointer;
  }

  /* Address Form action keys */
  .jwl-form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(35, 53, 36, 0.08);
    padding-top: 1.5rem;
  }

  .jwl-form-submit-btn {
    background-color: #233524;
    color: #E4E6D9;
    border: 1px solid #233524;
    padding: 0.8rem 1.6rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 4px;
  }

  .jwl-form-submit-btn:hover {
    background-color: #314a33;
    border-color: #314a33;
  }

  .jwl-form-cancel-btn {
    background-color: transparent;
    color: rgba(35, 53, 36, 0.6);
    border: 1px solid rgba(35, 53, 36, 0.15);
    padding: 0.8rem 1.6rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.25s ease;
    border-radius: 4px;
  }

  .jwl-form-cancel-btn:hover {
    color: #233524;
    border-color: #233524;
    background-color: rgba(35, 53, 36, 0.02);
  }

  /* Address Card Grid Items */
  .jwl-address-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .jwl-address-card {
    background-color: #ffffff;
    border: 1px solid rgba(35, 53, 36, 0.1);
    border-radius: 8px;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(35, 53, 36, 0.01);
  }

  .jwl-address-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(35, 53, 36, 0.04);
  }

  .jwl-address-card.jwl-default-address {
    border-color: #233524;
    box-shadow: 0 4px 18px rgba(35, 53, 36, 0.05);
  }

  .jwl-address-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
  }

  .jwl-address-name {
    font-size: 1rem;
    font-weight: 600;
    color: #233524;
    letter-spacing: 0.01em;
  }

  .jwl-address-tag {
    background-color: #233524;
    color: #E4E6D9;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
  }

  .jwl-address-details {
    margin: 0 0 1.5rem 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(35, 53, 36, 0.7);
  }

  .jwl-address-actions {
    border-top: 1px solid rgba(35, 53, 36, 0.06);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .jwl-address-meta {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(35, 53, 36, 0.5);
  }

  .jwl-set-primary-btn {
    background: none;
    border: none;
    color: rgba(35, 53, 36, 0.6);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    transition: all 0.25s ease;
  }

  .jwl-set-primary-btn:hover {
    color: #233524;
    background-color: rgba(35, 53, 36, 0.04);
  }

  .jwl-address-delete-btn {
    background: none;
    border: none;
    color: rgba(217, 83, 79, 0.7);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    transition: all 0.25s ease;
    margin-left: auto;
  }

  .jwl-address-delete-btn:hover {
    color: #d9534f;
    background-color: rgba(217, 83, 79, 0.05);
  }

  /* Custom Toast System */
  .jwl-profile-toast {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    background-color: #233524;
    color: #E4E6D9;
    padding: 1rem 1.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .jwl-profile-toast.jwl-toast-show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* Animations library */
  @keyframes jwlProfileFadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  @keyframes jwlProfileSlideDown {
    0% { opacity: 0; transform: translateY(-15px); }
    100% { opacity: 1; transform: translateY(0); }
  }


  /* --- MEDIA QUERIES (RESPONSIVENESS) --- */
  
  @media screen and (max-width: 1024px) {
    .jwl-address-grid {
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }
  }

  @media screen and (max-width: 768px) {
    .jwl-profile-sec-container {
      padding: 1.8rem 1rem;
    }

    .jwl-profile-sec-title {
      font-size: 1.8rem;
    }

    .jwl-profile-card,
    .jwl-add-address-panel-wrapper {
      padding: 1.5rem;
    }

    .jwl-editable-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }

    .jwl-row-actions {
      align-self: flex-end;
    }

    .jwl-form-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .jwl-span-full {
      grid-column: span 1;
    }

    .jwl-address-view-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }

    .jwl-add-addr-btn {
      width: 100%;
      justify-content: center;
    }
  }

  .jwl-ord-outer-wrapper {
    background-color: #E4E6D9;
    width: 100%;
    min-height: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
  }

  .jwl-ord-container {
    background-color: #E4E6D9;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 1.5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
  }

  /* Structural box resets */
  .jwl-ord-outer-wrapper *,
  .jwl-ord-outer-wrapper *::before,
  .jwl-ord-outer-wrapper *::after {
    box-sizing: border-box;
  }

  /* Atelier Header Styling */
  .jwl-ord-header {
    border-bottom: 1px solid rgba(35, 53, 36, 0.15);
    padding-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .jwl-ord-badge {
    display: inline-block;
    background-color: #233524;
    color: #E4E6D9;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.35em 0.9em;
    border-radius: 20px;
    margin-bottom: 0.75rem;
  }

  .jwl-ord-title {
    color: #233524;
    margin: 0 0 0.5rem 0;
    font-size: 2.2rem;
    font-weight: 500; /* Rigid bold elegance */
    letter-spacing: -0.01em;
  }

  .jwl-ord-subtitle {
    color: rgba(35, 53, 36, 0.75);
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  /* Inline Tab / Fast Navigation Filters */
  .jwl-ord-filters {
    display: flex;
    background-color: rgba(35, 53, 36, 0.04);
    padding: 0.25rem;
    border-radius: 6px;
    gap: 0.25rem;
  }

  .jwl-ord-filter-btn {
    background: none;
    border: none;
    color: rgba(35, 53, 36, 0.65);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .jwl-ord-filter-btn:hover {
    color: #233524;
  }

  .jwl-ord-filter-btn.jwl-ord-active {
    background-color: #ffffff;
    color: #233524;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(35, 53, 36, 0.05);
  }

  /* Jewelry Commission Card layout */
  .jwl-ord-card {
    background-color: #ffffff;
    border: 1px solid rgba(35, 53, 36, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(35, 53, 36, 0.015);
    display: flex;
    flex-direction: column;
  }

  .jwl-ord-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(35, 53, 36, 0.04);
  }

  /* Commission Card Top Section */
  .jwl-ord-card-header {
    background-color: rgba(35, 53, 36, 0.02);
    border-bottom: 1px solid rgba(35, 53, 36, 0.06);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .jwl-ord-meta-group {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
  }

  .jwl-ord-meta-block {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .jwl-ord-meta-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(35, 53, 36, 0.5);
    letter-spacing: 0.08em;
  }

  .jwl-ord-meta-val {
    font-size: 0.95rem;
    color: #233524;
    font-weight: 600;
  }

  .jwl-ord-accent-color {
    color: #233524;
  }

  /* Status Tag badging */
  .jwl-ord-status-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.4rem 1rem;
    border-radius: 4px;
  }

  .jwl-ord-badge-transit {
    background-color: #E4E6D9;
    color: #233524;
    border: 1px solid rgba(35, 53, 36, 0.2);
  }

  .jwl-ord-badge-delivered {
    background-color: rgba(35, 53, 36, 0.08);
    color: #233524;
    border: 1px solid rgba(35, 53, 36, 0.15);
  }

  /* Items List Section */
  .jwl-ord-items-list {
    display: flex;
    flex-direction: column;
    padding: 0 2rem;
  }

  .jwl-ord-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 0;
    border-bottom: 1px solid rgba(35, 53, 36, 0.06);
    gap: 2rem;
  }

  .jwl-ord-item-row:last-child {
    border-bottom: none;
  }

  .jwl-ord-item-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
    min-width: 0;
  }

  .jwl-ord-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: rgba(228, 230, 217, 0.4);
    color: #233524;
    border-radius: 6px;
    flex-shrink: 0;
  }

  .jwl-ord-item-icon svg {
    width: 24px;
    height: 24px;
  }

  .jwl-ord-item-name {
    margin: 0 0 0.35rem 0;
    font-size: 1.05rem;
    font-weight: 500; /* No 300 font weights */
    color: #233524;
  }

  .jwl-ord-item-desc {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(35, 53, 36, 0.6);
  }

  .jwl-ord-item-financials {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-shrink: 0;
  }

  .jwl-ord-item-qty {
    font-size: 0.85rem;
    color: rgba(35, 53, 36, 0.55);
    font-weight: 500;
  }

  .jwl-ord-item-price {
    font-size: 1rem;
    font-weight: 600;
    color: #233524;
  }

  /* Card Actions Row Styling */
  .jwl-ord-card-actions {
    border-top: 1px solid rgba(35, 53, 36, 0.06);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    background-color: rgba(35, 53, 36, 0.005);
  }

  .jwl-ord-shipping-tracker {
    font-size: 0.85rem;
    color: rgba(35, 53, 36, 0.65);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .jwl-ord-btn-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  /* Core Interactive Buttons */
  .jwl-ord-btn-primary {
    background-color: #233524;
    color: #E4E6D9;
    border: 1px solid #233524;
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
  }

  .jwl-ord-btn-primary:hover {
    background-color: #314a33;
    border-color: #314a33;
    box-shadow: 0 4px 12px rgba(35, 53, 36, 0.1);
  }

  .jwl-ord-btn-secondary {
    background-color: transparent;
    color: #233524;
    border: 1px solid rgba(35, 53, 36, 0.2);
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .jwl-ord-btn-secondary:hover {
    background-color: rgba(35, 53, 36, 0.04);
    border-color: #233524;
  }


  /* --- INVOICE SHEET LIGHTBOX POPUP SYSTEM --- */

  .jwl-inv-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 2.5rem 1.5rem;
  }

  .jwl-inv-modal-backdrop.jwl-ord-active {
    opacity: 1;
    pointer-events: auto;
  }

  .jwl-inv-modal-bg-close {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(35, 53, 36, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  /* Sheet Card Layout */
  .jwl-inv-card {
    position: relative;
    background-color: #ffffff;
    width: 100%;
    max-width: 820px;
    max-height: calc(100vh - 5rem);
    border: 1px solid rgba(35, 53, 36, 0.1);
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transform: scale(0.96);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 200;
    overflow: hidden;
  }

  .jwl-inv-modal-backdrop.jwl-ord-active .jwl-inv-card {
    transform: scale(1);
  }

  /* Toolbar Panel Styling */
  .jwl-inv-tools {
    background-color: rgba(35, 53, 36, 0.02);
    border-bottom: 1px solid rgba(35, 53, 36, 0.08);
    padding: 1.25rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .jwl-inv-action-btn {
    background-color: #233524;
    color: #E4E6D9;
    border: 1px solid #233524;
    padding: 0.6rem 1.2rem;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease-in-out;
  }

  .jwl-inv-action-btn:hover {
    background-color: #314a33;
    border-color: #314a33;
  }

  .jwl-inv-close-btn {
    background: none;
    border: none;
    color: rgba(35, 53, 36, 0.6);
    cursor: pointer;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    transition: background-color 0.25s, color 0.25s;
  }

  .jwl-inv-close-btn:hover {
    background-color: rgba(35, 53, 36, 0.06);
    color: #233524;
  }

  /* Scrollable Printable Document Stage */
  .jwl-inv-printable-area {
    flex: 1;
    overflow-y: auto;
    padding: 3rem 2.5rem;
  }

  /* Sheet Details */
  .jwl-sheet {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    color: #233524;
  }

  .jwl-sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .jwl-sheet-brand {
    font-size: 1.6rem;
    font-weight: 500; /* No weight 300 permitted */
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #233524;
    display: block;
    margin-bottom: 0.25rem;
  }

  .jwl-sheet-tagline {
    margin: 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(35, 53, 36, 0.6);
  }

  .jwl-sheet-doc-meta {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .jwl-sheet-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #233524;
  }

  .jwl-sheet-meta-row {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(35, 53, 36, 0.8);
  }

  .jwl-sheet-meta-row strong {
    color: #233524;
  }

  .jwl-sheet-divider {
    border: none;
    border-top: 1px solid rgba(35, 53, 36, 0.15);
    margin: 0;
    width: 100%;
  }

  /* Address Directories */
  .jwl-sheet-addresses {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .jwl-sheet-block-title {
    margin: 0 0 0.75rem 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(35, 53, 36, 0.5);
    font-weight: 600;
  }

  .jwl-sheet-address-text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(35, 53, 36, 0.85);
  }

  .jwl-sheet-address-text strong {
    color: #233524;
  }

  /* Elegant Item Table */
  .jwl-sheet-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
  }

  .jwl-sheet-table th {
    border-bottom: 1px solid #233524;
    padding: 0.85rem 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #233524;
    font-weight: 600;
  }

  .jwl-sheet-table td {
    padding: 1.5rem 0.5rem;
    border-bottom: 1px dashed rgba(35, 53, 36, 0.12);
    font-size: 0.9rem;
    color: rgba(35, 53, 36, 0.85);
  }

  .jwl-sheet-table-item-desc {
    font-weight: 500;
    color: #233524;
    margin: 0 0 0.25rem 0;
  }

  .jwl-sheet-table-item-meta {
    margin: 0;
    font-size: 0.78rem;
    color: rgba(35, 53, 36, 0.55);
  }

  /* sheet totals breakdown block */
  .jwl-sheet-totals-block {
    display: flex;
    justify-content: flex-end;
  }

  .jwl-sheet-totals-wrapper {
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .jwl-sheet-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(35, 53, 36, 0.75);
  }

  .jwl-sheet-subdivider {
    border: none;
    border-top: 1px solid rgba(35, 53, 36, 0.1);
    margin: 0.5rem 0;
  }

  .jwl-sheet-grand-row {
    font-size: 1.15rem;
    color: #233524;
  }

  /* Invoice Footer Details */
  .jwl-sheet-footer {
    border-top: 1px solid rgba(35, 53, 36, 0.08);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .jwl-sheet-footer-text {
    margin: 0;
    font-size: 0.78rem;
    color: rgba(35, 53, 36, 0.55);
    line-height: 1.4;
  }

  .jwl-sheet-footer-thankyou {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #233524;
  }

  /* SECURE NOTIFICATION BANNER FEEDBACK SYSTEM */
  .jwl-ord-toast {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    background-color: #233524;
    color: #E4E6D9;
    padding: 1.1rem 2rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.22);
    z-index: 100000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .jwl-ord-toast.jwl-ord-show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }


  /* --- RESPONSIVENESS AND DISPLAY SCALING --- */
  
  @media screen and (max-width: 1024px) {
    .jwl-ord-container {
      padding: 2.5rem 1.5rem;
    }

    .jwl-ord-meta-group {
      gap: 1.5rem;
    }
  }

  @media screen and (max-width: 768px) {
    .jwl-ord-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.25rem;
    }

    .jwl-ord-filters {
      width: 100%;
    }

    .jwl-ord-filter-btn {
      flex: 1;
      text-align: center;
      padding: 0.5rem 0.75rem;
    }

    .jwl-ord-card-header {
      padding: 1.25rem 1.5rem;
    }

    .jwl-ord-items-list {
      padding: 0 1.5rem;
    }

    .jwl-ord-item-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.5rem 0;
    }

    .jwl-ord-item-financials {
      width: 100%;
      justify-content: space-between;
      border-top: 1px dashed rgba(35, 53, 36, 0.08);
      padding-top: 0.85rem;
    }

    .jwl-ord-card-actions {
      padding: 1.25rem 1.5rem;
      flex-direction: column;
      align-items: stretch;
      gap: 1rem;
    }

    .jwl-ord-btn-group {
      width: 100%;
    }

    .jwl-ord-btn-group button {
      flex: 1;
      justify-content: center;
    }

    /* Lightbox Modal Scale adaptations */
    .jwl-inv-modal-backdrop {
      padding: 1rem;
    }

    .jwl-inv-card {
      max-height: calc(100vh - 2rem);
    }

    .jwl-inv-tools {
      padding: 1rem 1.5rem;
    }

    .jwl-inv-printable-area {
      padding: 2rem 1.5rem;
    }

    .jwl-sheet-addresses {
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }

    .jwl-sheet-totals-wrapper {
      width: 100%;
    }
  }

  /* PRINT-SPECIFIC CSS RULES OVERLAY */
  @media print {
    body * {
      visibility: hidden;
    }
    #jwlInvoicePrintArea, #jwlInvoicePrintArea * {
      visibility: visible;
    }
    #jwlInvoicePrintArea {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      padding: 0;
      margin: 0;
    }
    .jwl-inv-modal-backdrop {
      position: absolute;
      background: none;
      padding: 0;
    }
    .jwl-inv-card {
      box-shadow: none;
      border: none;
    }
    .jwl-inv-tools {
      display: none !important;
    }
  }

  .jwl-rtn-outer-wrapper {
    background-color: #E4E6D9;
    width: 100%;
    min-height: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
  }

  .jwl-rtn-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 1.5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
  }

  /* Structural box resets */
  .jwl-rtn-outer-wrapper *,
  .jwl-rtn-outer-wrapper *::before,
  .jwl-rtn-outer-wrapper *::after {
    box-sizing: border-box;
  }

  /* Atelier Header Styling */
  .jwl-rtn-header {
    border-bottom: 1px solid rgba(35, 53, 36, 0.15);
    padding-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .jwl-rtn-badge {
    display: inline-block;
    background-color: #233524;
    color: #E4E6D9;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.35em 0.9em;
    border-radius: 20px;
    margin-bottom: 0.75rem;
  }

  .jwl-rtn-title {
    color: #233524;
    margin: 0 0 0.5rem 0;
    font-size: 2.2rem;
    font-weight: 500; /* Rigid bold elegance */
    letter-spacing: -0.01em;
  }

  .jwl-rtn-subtitle {
    color: rgba(35, 53, 36, 0.75);
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  /* Grid Layout Architecture */
  .jwl-rtn-grid-layout {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 2rem;
    align-items: start;
  }

  /* Form Main Card */
  .jwl-rtn-main-card {
    background-color: #ffffff;
    border: 1px solid rgba(35, 53, 36, 0.08);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(35, 53, 36, 0.015);
  }

  /* Internal Form Sectioning */
  .jwl-rtn-form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(35, 53, 36, 0.08);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .jwl-rtn-form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .jwl-rtn-section-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #233524;
    margin: 0 0 0.4rem 0;
    letter-spacing: 0.01em;
  }

  .jwl-rtn-section-desc {
    color: rgba(35, 53, 36, 0.6);
    margin: 0 0 1.5rem 0;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  /* Form Elements */
  .jwl-rtn-field-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .jwl-rtn-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(35, 53, 36, 0.5);
    letter-spacing: 0.08em;
  }

  .jwl-rtn-select,
  .jwl-rtn-input,
  .jwl-rtn-textarea {
    width: 100%;
    background-color: rgba(228, 230, 217, 0.25);
    border: 1px solid rgba(35, 53, 36, 0.15);
    border-radius: 4px;
    color: #233524;
    padding: 0.8rem 1rem;
    font-size: 0.92rem;
    outline: none;
    transition: all 0.25s ease;
  }

  .jwl-rtn-select:focus,
  .jwl-rtn-input:focus,
  .jwl-rtn-textarea:focus {
    background-color: #ffffff;
    border-color: #233524;
    box-shadow: 0 0 0 3px rgba(35, 53, 36, 0.06);
  }

  .jwl-rtn-textarea {
    min-height: 120px;
    resize: vertical;
  }

  /* Items Checklist Card layout */
  .jwl-rtn-items-card-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  .jwl-rtn-empty-items-state {
    padding: 2rem;
    text-align: center;
    background-color: rgba(35, 53, 36, 0.02);
    border: 1px dashed rgba(35, 53, 36, 0.15);
    border-radius: 4px;
    color: rgba(35, 53, 36, 0.5);
    font-size: 0.9rem;
  }

  .jwl-rtn-item-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background-color: #ffffff;
    border: 1px solid rgba(35, 53, 36, 0.08);
    border-radius: 6px;
    transition: all 0.25s ease;
    cursor: pointer;
  }

  .jwl-rtn-item-card:hover {
    border-color: rgba(35, 53, 36, 0.2);
    background-color: rgba(35, 53, 36, 0.01);
  }

  .jwl-rtn-item-card.jwl-rtn-selected {
    border-color: #233524;
    background-color: rgba(228, 230, 217, 0.15);
  }

  .jwl-rtn-item-main {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  /* Custom checkbox mechanism inside cards */
  .jwl-rtn-checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(35, 53, 36, 0.25);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    transition: all 0.2s ease;
    flex-shrink: 0;
  }

  .jwl-rtn-item-card.jwl-rtn-selected .jwl-rtn-checkbox-custom {
    background-color: #233524;
    border-color: #233524;
  }

  .jwl-rtn-checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: all 0.2s ease;
    margin-bottom: 2px;
  }

  .jwl-rtn-item-card.jwl-rtn-selected .jwl-rtn-checkbox-custom::after {
    opacity: 1;
  }

  .jwl-rtn-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .jwl-rtn-item-name {
    font-size: 0.98rem;
    font-weight: 500;
    color: #233524;
    margin: 0;
  }

  .jwl-rtn-item-meta {
    font-size: 0.8rem;
    color: rgba(35, 53, 36, 0.6);
    margin: 0;
  }

  .jwl-rtn-item-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: #233524;
  }

  /* Radio Options cards styling */
  .jwl-rtn-radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .jwl-rtn-radio-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border: 1px solid rgba(35, 53, 36, 0.08);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .jwl-rtn-radio-card:hover {
    border-color: rgba(35, 53, 36, 0.2);
    background-color: rgba(35, 53, 36, 0.01);
  }

  /* Hide real radio input, style wrapper */
  .jwl-rtn-radio-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }

  .jwl-rtn-radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(35, 53, 36, 0.25);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    margin-top: 0.15rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
  }

  .jwl-rtn-radio-input:checked + .jwl-rtn-radio-custom {
    border-color: #233524;
  }

  .jwl-rtn-radio-input:checked + .jwl-rtn-radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #233524;
    border-radius: 50%;
  }

  .jwl-rtn-radio-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .jwl-rtn-radio-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #233524;
  }

  .jwl-rtn-radio-desc {
    font-size: 0.82rem;
    color: rgba(35, 53, 36, 0.6);
    line-height: 1.45;
  }

  /* Core Interactive Buttons */
  .jwl-rtn-btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #233524;
    color: #E4E6D9;
    border: 1px solid #233524;
    padding: 1rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.25s ease-in-out;
  }

  .jwl-rtn-btn-primary:hover {
    background-color: #314a33;
    border-color: #314a33;
    box-shadow: 0 4px 12px rgba(35, 53, 36, 0.1);
  }

  .jwl-rtn-btn-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    color: #233524;
    border: 1px solid rgba(35, 53, 36, 0.2);
    padding: 1rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .jwl-rtn-btn-secondary:hover {
    background-color: rgba(35, 53, 36, 0.04);
    border-color: #233524;
  }

  /* Error Feedback */
  .jwl-rtn-error-msg {
    color: #d9534f;
    font-size: 0.82rem;
    font-weight: 500;
    margin-top: 0.5rem;
  }

  /* Informational Sidebar Cards */
  .jwl-rtn-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .jwl-rtn-side-card {
    background-color: #ffffff;
    border: 1px solid rgba(35, 53, 36, 0.08);
    border-radius: 8px;
    padding: 1.8rem;
    box-shadow: 0 4px 12px rgba(35, 53, 36, 0.01);
  }

  .jwl-rtn-side-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #233524;
    margin: 0 0 0.75rem 0;
    letter-spacing: 0.02em;
  }

  .jwl-rtn-side-section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(35, 53, 36, 0.5);
    letter-spacing: 0.08em;
    margin: 0 0 1rem 0;
  }

  .jwl-rtn-side-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(35, 53, 36, 0.75);
    margin: 0;
  }

  .jwl-rtn-side-contact {
    margin: 1.25rem 0 0 0;
    font-size: 0.82rem;
    line-height: 1.6;
    color: #233524;
    border-top: 1px solid rgba(35, 53, 36, 0.08);
    padding-top: 1rem;
  }

  .jwl-rtn-side-contact strong {
    font-weight: 600;
  }

  .jwl-rtn-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
  }

  .jwl-rtn-checklist li {
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(35, 53, 36, 0.75);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .jwl-rtn-check-icon {
    color: #233524;
    flex-shrink: 0;
    margin-top: 0.15rem;
  }

  /* SUCCESS STATE STYLES */
  .jwl-rtn-success-card {
    background-color: #ffffff;
    border: 1px solid rgba(35, 53, 36, 0.08);
    border-radius: 8px;
    padding: 3.5rem;
    box-shadow: 0 10px 30px rgba(35, 53, 36, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: jwlRtnFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .jwl-rtn-success-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgba(228, 230, 217, 0.5);
    color: #233524;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: jwlRtnScaleIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  }

  .jwl-rtn-success-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2.5rem;
    width: 100%;
    max-width: 900px;
    margin-top: 1rem;
    border-top: 1px solid rgba(35, 53, 36, 0.08);
    padding-top: 2.5rem;
  }

  .jwl-rtn-success-block {
    display: flex;
    flex-direction: column;
  }

  .jwl-rtn-success-block-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #233524;
    margin: 0 0 1.25rem 0;
  }

  .jwl-rtn-success-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .jwl-rtn-success-steps li {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .jwl-rtn-success-steps strong {
    font-size: 0.95rem;
    font-weight: 500;
    color: #233524;
  }

  .jwl-rtn-success-steps p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(35, 53, 36, 0.65);
    margin: 0;
  }

  .jwl-rtn-success-actions {
    background-color: rgba(228, 230, 217, 0.15);
    border: 1px solid rgba(35, 53, 36, 0.08);
    border-radius: 6px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /* Secure Toast System */
  .jwl-rtn-toast {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    background-color: #233524;
    color: #E4E6D9;
    padding: 1.1rem 2rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.22);
    z-index: 100000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .jwl-rtn-toast.jwl-rtn-show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* Form Button Loader */
  .jwl-rtn-btn-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid #E4E6D9;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    animation: jwlRtnRotate 1s linear infinite;
    margin-left: 0.75rem;
  }

  /* Simple Animations */
  @keyframes jwlRtnFadeIn {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  @keyframes jwlRtnScaleIn {
    0% { opacity: 0; transform: scale(0.6); }
    100% { opacity: 1; transform: scale(1); }
  }

  @keyframes jwlRtnRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  /* --- RESPONSIVENESS AND DISPLAY SCALING --- */
  
  @media screen and (max-width: 1024px) {
    .jwl-rtn-grid-layout {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .jwl-rtn-sidebar {
      order: 2; /* Move guidelines down below main request card on smaller viewports */
    }
  }

  @media screen and (max-width: 768px) {
    .jwl-rtn-container {
      padding: 2.5rem 1rem;
    }

    .jwl-rtn-title {
      font-size: 1.8rem;
    }

    .jwl-rtn-main-card {
      padding: 1.5rem;
    }

    .jwl-rtn-success-card {
      padding: 2rem 1.5rem;
    }

    .jwl-rtn-success-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .jwl-rtn-success-actions {
      padding: 1.5rem;
    }
  }

  .calc_mf_policy_list {
    margin: 12px 0 20px 0px;
    padding-left: 20px;
    list-style: disc;
}

.calc_mf_policy_list li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.calc_mf_policy_list li strong {
    color: #222;
}

.calc_mf_table_wrapper {
    overflow-x: auto;
    margin: 16px 0;
}

.calc_mf_policy_table {
    width: 100%;
    border-collapse: collapse;
}

.calc_mf_policy_table th,
.calc_mf_policy_table td {
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    text-align: left;
    vertical-align: top;
}

.calc_mf_policy_table th {
    font-weight: 600;
}

.jf-viewer-overlay{
    position:fixed;
    inset:0;
    z-index:99999999;

    background:#fff;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    opacity:0;
    visibility:hidden;

    transition:.3s ease;
}

.jf-viewer-overlay.jf-open{
    opacity:1;
    visibility:visible;
}

.jf-image-stage{
    flex:1;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;

    position:relative;
}

.jf-main-image{
    max-width:85%;
    max-height:80vh;

    object-fit:contain;

    transition: transform 0.3s ease;
    transform-origin: center center;

    /* cursor:zoom-in; */
}

.jf-close-btn{
    position:absolute;

    top:25px;
    right:25px;

    width:48px;
    height:48px;

    border:none;
    border-radius:50%;

    background:#fff;

    font-size:22px;

    cursor:pointer;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    z-index:20;
}

.jf-nav{
    position:absolute;

    top:50%;
    transform:translateY(-50%);

    width:60px;
    height:60px;

    border:none;
    border-radius:50%;

    background:#fff;

    font-size:34px;

    cursor:pointer;

    z-index:20;

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.jf-prev{
    left:35px;
}

.jf-next{
    right:35px;
}

.jf-zoom-btn{
    position:absolute;

    right:40px;
    bottom:35px;

    width:54px;
    height:54px;

    border:none;
    border-radius:50%;

    background:#233524;
    color:#fff;

    font-size:24px;

    cursor:pointer;
}

.jf-thumb-strip{
    height:110px;

    display:flex;
    justify-content:center;
    align-items:center;

    gap:12px;

    border-top:1px solid #ececec;

    overflow-x:auto;

    padding:0 20px;
}

.jf-thumb{
    width:72px;
    height:72px;

    border:1px solid #ddd;
    border-radius:8px;

    overflow:hidden;
    position:relative;

    cursor:pointer;

    flex-shrink:0;

    transition:.25s;
}

.jf-thumb img,
.jf-thumb video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.jf-thumb.jf-active{
    border:2px solid #233524;
}

.jf-thumb-video-icon{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    text-shadow:0 2px 8px rgba(0,0,0,.45);
    background:rgba(0,0,0,.18);
    pointer-events:none;
}

@media(max-width:768px){

    .jf-main-image{
        max-width:95%;
        max-height:65vh;
    }

    .jf-nav{
        width:48px;
        height:48px;
        font-size:28px;
    }

    .jf-prev{
        left:10px;
    }

    .jf-next{
        right:10px;
    }

    .jf-thumb{
        width:60px;
        height:60px;
    }
}

.jwl-specs-accordion{
    width:100%;
}

.jwl-specs-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
    border:0;
    background:transparent;
    cursor:pointer;
    padding:16px 0px;
    font-size:14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight:600;
}

.jwl-specs-icon{
    transition:transform .3s ease;
    font-size:22px;
    line-height:1;
}

.jwl-specs-content{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.jwl-specs-content.jwl-specs-open{
    max-height:1000px;
}

.jwl-specs-description{
    margin-bottom:24px;
    line-height:1.7;
    font-size:14px;
}

.jwl-specs-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.jwl-spec-item{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.jwl-spec-label{
    font-size:13px;
    opacity:.7;
}

.jwl-spec-value{
    font-size:15px;
    font-weight:500;
}

@media(max-width:768px){

    .jwl-specs-grid{
        grid-template-columns:1fr;
    }

    .jwl-specs-header{
        font-size:16px;
    }

    .jwl-spec-value{
        font-size:14px;
    }
}

.jf-cart-trigger{
    position:relative;
    cursor:pointer;
    border:0;
    background:transparent;
    padding:0;
    color:inherit;
    font:inherit;
}

.jf-cart-trigger .jf-icon-btn{
    position:relative;
    display:inline-flex;
}

.jf-cart-trigger.is-bumping .jf-icon-btn{
    animation:jfCartJump .72s cubic-bezier(.22,1,.36,1);
}

.jf-cart-trigger.has-items:not(.is-bumping) .jf-icon-btn{
    animation:jfCartIdleJump 2.6s ease-in-out infinite;
}

.jf-cart-trigger.has-items .jf-cart-badge{
    animation:jfCartBadgePulse 1.6s ease-in-out infinite;
}

@keyframes jfCartJump{
    0%,100%{transform:translateY(0) scale(1);}
    20%{transform:translateY(-8px) scale(1.08);}
    40%{transform:translateY(3px) scale(.98);}
    62%{transform:translateY(-4px) scale(1.04);}
    82%{transform:translateY(1px) scale(1);}
}

@keyframes jfCartIdleJump{
    0%,72%,100%{transform:translateY(0);}
    78%{transform:translateY(-5px);}
    84%{transform:translateY(1px);}
    90%{transform:translateY(-2px);}
}

@keyframes jfCartBadgePulse{
    0%,100%{transform:scale(1);}
    50%{transform:scale(1.12);}
}

.jf-cart-badge{
    position:absolute;
    top:-6px;
    right:-6px;

    width:18px;
    height:18px;

    border-radius:50%;

    background:#233524;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:11px;
    font-weight:600;
}

.jf-cart-overlay{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,.35);

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:99997;
}

.jf-cart-overlay.jf-cart-active{
    opacity:1;
    visibility:visible;
}

.jf-cart-sidebar{
    position:fixed;

    top:0;
    right:0;

    width:420px;
    max-width:100%;

    height:100vh;

    background:#fff;

    transform:translateX(100%);

    transition:.4s ease;

    z-index:99998;

    display:flex;
    flex-direction:column;
}

.jf-cart-sidebar.jf-cart-active{
    transform:translateX(0);
}

.jf-cart-header{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:24px;

    border-bottom:1px solid #ececec;
}

.jf-cart-header h3{
  margin-bottom: 0;
}

.jf-cart-close{
    border:none;
    background:none;
    cursor:pointer;

    font-size:28px;
    line-height:1;
}

.jf-cart-items{
    flex:1;
    overflow-y:auto;

    padding:24px;
}

.jf-cart-product{
    display:flex;
    gap:15px;

    margin-bottom:20px;
}

.jf-cart-product-main{
    display:flex;
    gap:15px;
    min-width:0;
    flex:1;
    color:inherit;
    text-decoration:none;
}

.jf-cart-product-image{
    width:90px;
    height:90px;

    object-fit:cover;

    border-radius:8px;
}

.jf-cart-product-info{
    flex:1;
}

.jf-cart-product-info h4{
    margin:0 0 8px;
    font-size:15px;
    color:#233524;
}

.jf-cart-product-info p{
    margin:3px 0;
    font-size:13px;
}

.jf-cart-specs{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    margin:8px 0;
}

.jf-cart-specs span{
    border:1px solid #E4E6D9;
    background:#fbfaf6;
    border-radius:999px;
    color:#233524;
    font-size:10px;
    font-weight:600;
    line-height:1.2;
    padding:4px 8px;
}

.jf-cart-price{
    margin-top:8px;
    font-weight:600;
}

.jf-cart-footer{
    padding:24px;

    border-top:1px solid #ececec;
    display: flex;
    flex-direction: column;
}

.jf-cart-footer .jf-showcase-cta{
    display:block;
    text-align:center;
    width:100%;
}

.jf-cart-total-row{
    display:flex;
    justify-content:space-between;

    margin-bottom:18px;

    font-size:18px;
}

@media(max-width:768px){

    .jf-cart-sidebar{
        width:100%;
    }

    .jf-cart-header{
        padding:18px;
    }

    .jf-cart-items{
        padding:18px;
    }

    .jf-cart-footer{
        padding:18px;
    }
}

/* Live storefront polish overrides */
.auer-pdp-container,
.jwl_breadcrumb_wrapper {
  background: #fff;
}

.auer-info-section .auer-option-group {
  margin-bottom: 28px;
}

.auer-info-section .auer-product-header {
  margin-bottom: 24px;
}

.auer-info-section .auer-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.auer-info-section .auer-title {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.auer-info-section .auer-share-cluster {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  padding-top: 4px;
}

.auer-info-section .auer-share-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #d8d5ce;
  border-radius: 999px;
  background: #fff;
  color: #233524;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  padding: 0 15px;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
  box-shadow: 0 8px 20px rgba(35, 53, 36, 0.05);
}

.auer-info-section .auer-share-button i {
  font-size: 14px;
}

.auer-info-section .auer-share-button:hover {
  background: #233524;
  border-color: #233524;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(35, 53, 36, 0.16);
}

.auer-info-section .auer-share-status {
  color: #667260;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.auer-info-section .product_ins_desc {
  margin: 0 0 10px;
  color: #6f776c;
  font-size: 14px;
  line-height: 1.5;
}

.auer-info-section .auer-price {
  margin: 0 0 22px;
}

.auer-info-section .auer-label,
.auer-info-section .jwl_metal_label {
  display: block;
  color: #233524;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.25;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.auer-info-section .auer-selection-row {
  gap: 14px;
  flex-wrap: wrap;
}

.auer-info-section .jwl_selection_container {
  margin-bottom: 30px;
  padding: 0;
}

.auer-info-section .jwl_metal_section {
  margin-bottom: 28px;
}

.auer-info-section .jwl_metal_section:last-child {
  margin-bottom: 0;
}

.auer-info-section .jwl_metal_grid {
  gap: 22px;
  align-items: flex-start;
}

.auer-info-section .jwl_metal_option {
  background: transparent;
  border: 0;
  padding: 0;
}

.auer-info-section .jwl_carat_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.auer-info-section .jwl_carat_option {
  min-width: 104px;
  min-height: 52px;
  align-items: center;
  background: #fff;
  border: 1px solid #d8d5ce;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(35, 53, 36, 0.04);
  color: #233524;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  padding: 9px 16px;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.auer-info-section .jwl_carat_option:hover {
  border-color: #233524;
  box-shadow: 0 10px 24px rgba(35, 53, 36, 0.09);
  transform: translateY(-1px);
}

.auer-info-section .jwl_carat_option.jwl_active {
  background: #233524;
  border-color: #233524;
  box-shadow: 0 12px 28px rgba(35, 53, 36, 0.16);
  color: #fff;
}

.auer-info-section .jwl_carat_value {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

.auer-info-section .jwl_carat_unit {
  display: block;
  color: #6f786d;
  font-size: 10px;
  font-weight: 700;
  margin-top: 6px;
  text-transform: uppercase;
}

.auer-info-section .jwl_carat_option.jwl_active .jwl_carat_unit {
  color: rgba(255, 255, 255, 0.72);
}

.auer-info-section .auer-size-dropdown-container {
  margin-top: 6px;
  margin-bottom: 4px;
}

@media (max-width: 640px) {
  .auer-info-section .auer-title-row {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .auer-info-section .auer-share-cluster {
    padding-top: 0;
  }

  .auer-info-section .auer-share-button {
    min-height: 38px;
    padding: 0 14px;
  }

  .auer-info-section .jwl_carat_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .auer-info-section .jwl_carat_option {
    min-width: 0;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.auer-info-section .auer-trust-badges {
  margin-top: 34px;
  padding: 22px 0 32px;
}

.auer-info-section .auer-badge-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.jwl-specs-accordion,
.jwl_price_breakup_wrapper {
  margin-top: 18px;
}

.jwl-specs-header,
.jwl_price_header {
  padding: 22px 0;
}

.rel-prod-img-box img {
  object-fit: contain;
  padding: 10px;
  transform: scale(1.04);
  background: #fff;
}

.rel-prod-card:hover .rel-prod-img-box img {
  transform: scale(1.08);
}

.filter-item label {
  width: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.filter-item label > span {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.luxury-card-info {
  padding: 18px 5px 10px;
}

.luxury-card-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.luxury-card-meta {
  min-width: 0;
  flex: 1;
}

.luxury-card-shapes {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 148px;
  padding-top: 2px;
}

.luxury-shape-chip,
.luxury-shape-more {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(35, 53, 36, 0.25);
  color: #233524;
  font-size: 12px;
  font-weight: 700;
}

.luxury-shape-chip.is-selected {
  border-color: #5f8269;
  box-shadow: 0 0 0 2px rgba(95, 130, 105, 0.12);
}

.luxury-shape-chip img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  background: transparent !important;
  border-radius: 0;
}

.luxury-slide img[src$="no-image-yet.svg"],
.rel-prod-img-box img[src$="no-image-yet.svg"],
.wishlist_product_img[src$="no-image-yet.svg"],
.u_cart_product_photo[src$="no-image-yet.svg"],
.jf-cart-product-image[src$="no-image-yet.svg"] {
  object-fit: contain;
  background: #fff;
  padding: 12px;
}

.jf-cart-product {
  position: relative;
  padding-right: 38px;
}

.jf-cart-delete {
  position: absolute;
  top: 2px;
  right: 0;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: #f7f6f1;
  color: #233524;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.jf-cart-delete:hover {
  background: #233524;
  color: #fff;
}

.u_pane_card .jf-showcase-cta {
  margin-top: 28px;
}

.wishlist_main_section > .jf-empty-state {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  padding: 42px 0;
}

.wishlist_main_section > .jf-empty-state p {
  margin: 0;
}

.u-login-viewport,
.jwl-forgot-container {
  min-height: calc(100vh - 360px);
  padding-top: 110px;
  padding-bottom: 120px;
}

.jf-bottom-bar {
  background: #ffffff !important;
  margin-top: 0 !important;
  padding: 22px 5%;
  border-top: 1px solid rgba(176, 140, 73, 0.18);
  box-shadow: 0 -28px 0 #ffffff;
  position: relative;
}

.cl-popular-links-container {
  background: #ffffff !important;
  margin-bottom: 0 !important;
}

.cl-popular-links-container + .jf-bottom-bar {
  background: #ffffff !important;
  margin-top: 0 !important;
}

.cl-links-group:last-child {
  margin-bottom: 0;
}

.jf-support-button,
.jf-support-btn {
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 50%;
  background: #233524;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(35, 53, 36, 0.3);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.jf-support-button i {
  font-size: 29px;
  line-height: 1;
}

.jf-whatsapp-widget-button {
  background: #233524;
}

.jf-whatsapp-widget-button:hover,
.jf-whatsapp-widget-button:focus {
  color: #ffffff;
  text-decoration: none;
}

.jf-support-button:hover,
.jf-support-btn:hover {
  transform: scale(1.1) rotate(5deg);
}

@media (max-width: 992px) {
  .luxury-card-bottom {
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
  }

  .luxury-card-shapes {
    justify-content: flex-end;
    max-width: 42px;
    gap: 4px;
    flex: 0 0 auto;
    padding-top: 0;
  }

  .luxury-shape-chip,
  .luxury-shape-more {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }

  .luxury-shape-chip img {
    width: 21px;
    height: 21px;
  }
}

@media (hover: none), (pointer: coarse) {
  .view-similar-container,
  .luxury-nav-arrows,
  .recently-viewed-overlay {
    display: none !important;
  }

  .luxury-card,
  .luxury-card-media,
  .luxury-card-link {
    touch-action: manipulation;
  }

  .luxury-card:hover {
    transform: none !important;
  }

  .luxury-variant-info-btn {
    top: 8px;
    right: 8px;
    width: 26px;
    height: 26px;
    box-shadow: 0 6px 14px rgba(35, 53, 36, 0.12);
  }

  .luxury-variant-info-btn i {
    font-size: 10px;
  }
}

.jf-profile-page {
  background: #fbfcf8;
  padding: clamp(72px, 7vw, 112px) 5% clamp(86px, 8vw, 128px);
  min-height: 70vh;
}

.jf-profile-page-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(480px, calc(100vh - 310px), 680px);
  padding-top: clamp(72px, 9vw, 128px);
  padding-bottom: clamp(72px, 9vw, 128px);
}

.jf-profile-shell {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
}

.jf-profile-sidebar,
.jf-profile-card,
.jf-profile-empty {
  background: #fff;
  border: 1px solid #d7ddd2;
  border-radius: 0;
  box-shadow: 0 18px 40px rgba(35, 53, 36, 0.06);
}

.jf-profile-sidebar {
  padding: 32px;
  align-self: start;
  position: sticky;
  top: 150px;
}

.jf-profile-eyebrow {
  color: #61725e;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
}

.jf-profile-sidebar h1 {
  margin: 16px 0 8px;
  color: #233524;
  font-size: 30px;
  line-height: 1.15;
}

.jf-profile-sidebar p {
  color: #74766f;
  word-break: break-word;
}

.jf-profile-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.jf-profile-links a,
.jf-profile-links button {
  color: #233524;
  text-align: left;
  border: 1px solid #d7ddd2;
  background: #fff;
  padding: 12px 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.jf-profile-links a:hover,
.jf-profile-links button:hover {
  background: #233524;
  color: #fff;
}

.jf-profile-content {
  display: grid;
  gap: 22px;
}

.jf-profile-card,
.jf-profile-empty {
  padding: clamp(34px, 4vw, 56px);
}

.jf-profile-empty {
  width: min(100%, 640px);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.jf-profile-empty h1,
.jf-profile-card-head h2 {
  color: #233524;
  margin: 0;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.12;
  font-weight: 500;
}

.jf-profile-card-head p,
.jf-profile-empty p {
  color: #74766f;
  margin: 12px 0 0;
}

.jf-profile-card-head p {
  font-size: 15px;
  line-height: 1.55;
}

.jf-profile-empty p {
  max-width: 460px;
  font-size: 17px;
  line-height: 1.65;
}

.jf-profile-empty .jf-profile-eyebrow {
  margin-bottom: 18px;
}

.jf-profile-empty-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.jf-profile-empty-actions .jf-showcase-cta {
  min-width: 150px;
  min-height: 48px;
  padding: 13px 26px;
}

.jf-profile-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.jf-profile-field {
  display: grid;
  gap: 8px;
  color: #233524;
  font-weight: 700;
}

.jf-profile-field.span-2 {
  grid-column: span 2;
}

.jf-profile-field input,
.jf-profile-field select {
  width: 100%;
  border: 1px solid #d7ddd2;
  background: #fff;
  color: #233524;
  min-height: 52px;
  padding: 0 16px;
  font-size: 16px;
  outline: none;
}

.jf-profile-field input:focus,
.jf-profile-field select:focus {
  border-color: #233524;
}

.jf-profile-submit {
  width: auto;
  min-width: 190px;
  margin-top: 24px;
}

.jf-profile-alert {
  padding: 14px 18px;
  border: 1px solid #d7ddd2;
  background: #fff;
  color: #233524;
  font-weight: 700;
}

.jf-profile-alert.error {
  color: #9c1d1d;
  border-color: #edb4b4;
}

.jf-profile-alert.success {
  color: #1f5b2b;
  border-color: #b7d8bd;
}

@media (max-width: 992px) {
  .jf-profile-shell {
    grid-template-columns: 1fr;
  }

  .jf-profile-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .jf-profile-page {
    padding: 48px 18px 72px;
  }

  .jf-profile-page-empty {
    min-height: 420px;
    padding-top: 54px;
    padding-bottom: 64px;
  }

  .jf-profile-card,
  .jf-profile-empty,
  .jf-profile-sidebar {
    padding: 24px;
  }

  .jf-profile-empty h1 {
    font-size: 30px;
  }

  .jf-profile-empty p {
    font-size: 15px;
    line-height: 1.6;
  }

  .jf-profile-grid {
    grid-template-columns: 1fr;
  }

  .jf-profile-field.span-2 {
    grid-column: span 1;
  }
}

.jf-offer-popup {
  width: min(430px, calc(100vw - 28px));
  max-height: calc(100vh - 36px);
  padding: 0;
  overflow: hidden;
  background: #fffdf4;
  border: 1px solid rgba(214, 180, 91, 0.72);
  box-shadow: 0 28px 80px rgba(6, 24, 13, 0.42);
}

.jf-offer-art {
  background: #073f12;
}

.jf-offer-art img {
  display: block;
  width: 100%;
  max-height: min(72vh, 620px);
  object-fit: contain;
}

.jf-offer-body {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 16px 20px 22px;
  text-align: center;
}

.jf-offer-body p {
  margin: 0 auto 18px;
  max-width: 360px;
  color: #526050;
  font-size: 15px;
  line-height: 1.55;
}

.jf-offer-code-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid #d8ded0;
  background: #fff;
  box-shadow: 0 12px 28px rgba(35, 53, 36, 0.09);
}

.jf-offer-code-box strong {
  min-width: 0;
  color: #064615;
  font-size: clamp(26px, 5vw, 42px);
  line-height: 1;
  overflow-wrap: anywhere;
  text-align: left;
  letter-spacing: 0;
}

.jf-offer-code-box button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border: 0;
  background: #233524;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.jf-offer-code-box button i,
.jf-offer-code-box button svg {
  width: 18px;
  height: 18px;
}

.jf-offer-copy-btn {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #d8ded0;
  background: #fffdf7;
  color: #233524;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.jf-offer-copy-btn i,
.jf-offer-copy-btn svg {
  width: 17px;
  height: 17px;
}

.jf-offer-shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 44px;
  padding: 0 24px;
  background: #233524;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.jf-offer-shop-btn:hover {
  color: #fff;
  background: #102616;
}

.jf-nav-gift-card a {
  color: inherit;
}

.u_chk_gift_box {
  margin-bottom: 16px;
}

.u_chk_gift_link,
.u_chk_gift_message,
.u_chk_offer_message,
.u_chk_offer_error {
  margin: 8px 0 0;
  color: #687363;
  font-size: 13px;
  line-height: 1.45;
}

.u_chk_gift_message,
.u_chk_offer_message {
  color: #1f5b2b;
  font-weight: 700;
}

.u_chk_offer_error {
  color: #b54035;
  font-weight: 800;
}

.u_chk_sidebar .luxury-clear-btn:disabled {
  opacity: .65;
  cursor: wait;
}

.jf-gift-page {
  padding: 72px 5vw 88px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, .96), rgba(244, 246, 234, .98)),
    #f4f6ea;
  color: #233524;
}

.jf-gift-hero {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.jf-gift-kicker {
  margin: 0 0 10px;
  color: #b49145;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.jf-gift-hero h1 {
  margin: 0;
  color: #233524;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.02;
}

.jf-gift-hero p {
  margin: 16px auto 0;
  max-width: 560px;
  color: #63705f;
  font-size: 18px;
  line-height: 1.55;
}

.jf-gift-share-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.jf-gift-share-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #d8ded0;
  background: #fffdf7;
  color: #233524;
  font-size: 13px;
  font-weight: 800;
}

.jf-gift-share-strip i {
  color: #b49145;
  font-size: 16px;
}

.jf-gift-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.jf-gift-preview,
.jf-gift-form,
.jf-gift-created {
  background: #fffdf7;
  border: 1px solid #d8ded0;
  box-shadow: 0 16px 48px rgba(35, 53, 36, 0.08);
  border-radius: 8px;
}

.jf-gift-preview {
  padding: 26px;
}

.jf-gift-card-art {
  position: relative;
  display: grid;
  min-height: 360px;
  padding: 34px;
  align-content: space-between;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(255,255,255,.22), transparent 28%),
    linear-gradient(135deg, #203524 0%, #334725 48%, var(--gift-accent, #d9a935) 100%);
  color: #fff;
  border-radius: 14px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .25),
    inset 0 0 0 2px rgba(35, 53, 36, .18),
    0 24px 60px rgba(35, 53, 36, .16);
}

.jf-gift-card-art::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  pointer-events: none;
}

.jf-gift-card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.jf-gift-card-topline img {
  width: min(220px, 52%);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .96;
}

.jf-gift-card-topline span,
.jf-gift-card-art small {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jf-gift-card-topline span {
  font-size: 11px;
  text-align: right;
  color: rgba(255,255,255,.78);
}

.jf-gift-card-value {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.jf-gift-card-art strong {
  font-size: clamp(36px, 7vw, 64px);
  line-height: 1;
}

.jf-gift-card-art em {
  position: relative;
  z-index: 1;
  max-width: 280px;
  font-style: normal;
  line-height: 1.5;
}

.jf-gift-card-mark {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 700;
}

.jf-gift-card-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  padding: 4px;
}

.jf-gift-note {
  margin: 18px 0 0;
  color: #63705f;
}

.jf-gift-form {
  padding: 30px;
}

.jf-gift-form h2 {
  margin: 0 0 22px;
  color: #233524;
}

.jf-gift-amounts,
.jf-gift-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.jf-gift-pill,
.jf-gift-submit,
.jf-gift-actions a {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid #d8ded0;
  background: #eef2e7;
  color: #233524;
  font-weight: 800;
  cursor: pointer;
  border-radius: 4px;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.jf-gift-pill.active,
.jf-gift-submit,
.jf-gift-actions a {
  background: #233524;
  color: #fff;
}

.jf-gift-pill:hover,
.jf-gift-submit:hover,
.jf-gift-actions a:hover {
  transform: translateY(-1px);
  border-color: #233524;
}

.jf-gift-actions a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.jf-gift-actions i {
  font-size: 16px;
}

.jf-gift-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #233524;
  font-weight: 800;
}

.jf-gift-field input,
.jf-gift-field select,
.jf-gift-field textarea {
  width: 100%;
  border: 1px solid #d8ded0;
  background: #fff;
  min-height: 50px;
  padding: 12px 14px;
  color: #233524;
  font: inherit;
  outline: none;
}

.jf-gift-field textarea {
  min-height: 120px;
  resize: vertical;
}

.jf-gift-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.jf-gift-error {
  color: #a83232;
  font-weight: 800;
}

.jf-gift-created {
  margin: 18px 0;
  padding: 18px;
}

.jf-gift-created span {
  display: block;
  color: #63705f;
  font-weight: 800;
}

.jf-gift-created strong {
  display: block;
  margin-top: 6px;
  color: #233524;
  font-size: 28px;
  overflow-wrap: anywhere;
}

.jf-gift-created p {
  margin: 10px 0 16px;
  color: #63705f;
  line-height: 1.45;
}

.jf-sitemap-page {
  padding: 86px 5vw 96px;
  background: #fff;
  color: #233524;
}

.jf-sitemap-hero {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.jf-sitemap-hero p {
  margin: 0 0 10px;
  color: #b49145;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.jf-sitemap-hero h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05;
  color: #233524;
}

.jf-sitemap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
}

.jf-sitemap-card {
  border: 1px solid #e1ded4;
  border-radius: 8px;
  padding: 24px;
  background: #fffdf8;
  min-height: 100%;
}

.jf-sitemap-card h2 {
  margin: 0 0 18px;
  color: #233524;
  font-size: 18px;
  font-weight: 900;
}

.jf-sitemap-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.jf-sitemap-card a {
  color: #687061;
  text-decoration: none;
  font-weight: 700;
}

.jf-sitemap-card a:hover {
  color: #233524;
  text-decoration: underline;
}

@media (max-width: 760px) {
  .jf-offer-body {
    padding: 18px;
  }

  .jf-offer-code-box {
    grid-template-columns: 1fr;
  }

  .jf-offer-code-box strong {
    text-align: center;
  }

  .jf-gift-shell,
  .jf-gift-grid {
    grid-template-columns: 1fr;
  }

  .jf-sitemap-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  html,
  body,
  #root {
    overflow-x: hidden;
  }

  .luxury-container {
    --jf-mobile-content-width: calc(min(100vw, 390px) - 20px);
    --jf-mobile-card-width: calc((min(100vw, 390px) - 28px) / 2);
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
    padding: 24px 10px 14px !important;
  }

  .luxury-header-tools,
  .luxury-main-layout,
  .luxury-products-main,
  .luxury-product-grid,
  .luxury-card,
  .luxury-card-info {
    min-width: 0;
    max-width: 100%;
  }

  .luxury-header-tools {
    width: var(--jf-mobile-content-width);
    max-width: var(--jf-mobile-content-width);
  }

  .luxury-main-layout {
    width: var(--jf-mobile-content-width);
    max-width: var(--jf-mobile-content-width);
    margin-top: 16px;
    overflow: visible;
  }

  .luxury-products-main {
    width: var(--jf-mobile-content-width);
    max-width: var(--jf-mobile-content-width);
    overflow: visible;
  }

  .luxury-main-layout.filters-collapsed .luxury-product-grid,
  .luxury-main-layout.filters-open .luxury-product-grid,
  .luxury-product-grid {
    width: var(--jf-mobile-content-width) !important;
    max-width: var(--jf-mobile-content-width) !important;
    grid-template-columns: repeat(2, var(--jf-mobile-card-width)) !important;
    gap: 8px !important;
    justify-content: center;
    overflow: visible;
  }

  .luxury-card {
    width: var(--jf-mobile-card-width) !important;
    min-width: 0 !important;
    max-width: var(--jf-mobile-card-width) !important;
  }

  .luxury-card-media {
    width: var(--jf-mobile-card-width) !important;
    min-width: 0;
    max-width: var(--jf-mobile-card-width) !important;
  }

  .luxury-slide,
  .luxury-card-media > .luxury-card-link,
  .luxury-slider-wrapper {
    min-width: 0;
    max-width: 100%;
  }

  .luxury-card-info {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .luxury-sort-area {
    flex: 0 0 126px;
    max-width: 126px;
  }

  .custom-select-wrapper {
    width: 100%;
    min-width: 0;
    max-width: 126px;
  }

  .custom-select-trigger {
    justify-content: space-between;
    overflow: hidden;
  }
}
