/* ==========================================================
   KosherWine Shop – Luxury Dark Theme  v1.1.0
   ========================================================== */

/* ==========================================================
   1. DESIGN TOKENS
   ========================================================== */
:root {
  --kw-bg:          #FFFFFF;
  --kw-bg-2:        #FAF7F2;
  --kw-bg-3:        #F2EBE0;
  --kw-card-bg:     rgba(139,21,56,0.04);
  --kw-card-border: rgba(139,21,56,0.14);

  --kw-burgundy:    #8B1538;
  --kw-burgundy-dk: #5E0D25;
  --kw-burgundy-lt: #B02048;

  --kw-gold:        #C9A84C;
  --kw-gold-lt:     #E2C678;
  --kw-gold-dk:     #9A7A2E;

  --kw-cream:       #F2EAD3;
  --kw-text:        #1E0F0F;      /* dark text on white bg */
  --kw-text-light:  #3D2020;
  --kw-text-muted:  #8A7070;

  /* Typography — Heebo for everything */
  --kw-font-display: 'Heebo', 'Arial Hebrew', Arial, sans-serif;
  --kw-font-body:    'Heebo', 'Arial Hebrew', Arial, sans-serif;

  --kw-fw-light:  300;
  --kw-fw-normal: 400;
  --kw-fw-medium: 500;
  --kw-fw-semi:   600;
  --kw-fw-bold:   700;
  --kw-fw-black:  900;

  --kw-max-width:      1240px;
  --kw-header-height:  76px;
  --kw-radius:         12px;
  --kw-radius-sm:      8px;
  --kw-radius-pill:    999px;

  --kw-shadow-sm:  0 2px 8px rgba(0,0,0,0.10);
  --kw-shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --kw-shadow-lg:  0 20px 60px rgba(0,0,0,0.16);
  --kw-glow-wine:  0 0 40px rgba(139,21,56,0.10);
  --kw-glow-gold:  0 0 30px rgba(201,168,76,0.08);

  --kw-ease:      cubic-bezier(0.4,0,0.2,1);
  --kw-ease-out:  cubic-bezier(0.22,1,0.36,1);
  --kw-t:         0.26s;
  --kw-t-slow:    0.5s;
}

/* ==========================================================
   2. NUCLEAR RESET — Override cassiopeia's default styles
   ========================================================== */

/* Force white base on everything */
html,
body,
body.site,
.site,
#wrapper_r,
.wrapper-static,
.wrapper-fluid {
  background-color: var(--kw-bg) !important;
  background-image: none !important;
  color: var(--kw-text) !important;
}

/* Kill all cassiopeia structural white boxes */
.header.container-header,
.container-header,
.site-grid,
.grid-child,
[class^="container-"],
[class*=" container-"],
.container-component,
.container-sidebar-left,
.container-sidebar-right,
.container-top-a,
.container-top-b,
.container-bottom-a,
.container-bottom-b,
.container-footer.footer,
.container-banner,
.container-below-top,
.container-nav,
.container-topbar {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}

/* Hide cassiopeia's own brand/nav bar */
.navbar-brand,
.container-header > .grid-child:not(.kw-header__brand) { display: none !important; }

/* Bootstrap override */
.bg-white, .bg-light { background-color: var(--kw-bg) !important; }

/* ==========================================================
   3. BASE TYPOGRAPHY — all elements get consistent fonts
   ========================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--kw-font-body) !important;
  font-size: 1rem;
  font-weight: var(--kw-fw-normal);
  line-height: 1.7;
  color: var(--kw-text) !important;
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Grain overlay — disabled on white theme */
body::before { display: none; }

/* Display font for headings — Heebo */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--kw-font-display) !important;
  font-weight: var(--kw-fw-bold) !important;
  line-height: 1.25 !important;
  color: var(--kw-burgundy) !important;
  margin-top: 0;
}

/* Body font everywhere else */
p, li, td, th, label, input, select, textarea, button, a, span {
  font-family: var(--kw-font-body) !important;
}

/* Links */
a {
  color: var(--kw-burgundy) !important;
  text-decoration: none !important;
  transition: color var(--kw-t) var(--kw-ease);
}
a:hover { color: var(--kw-burgundy-lt) !important; }

/* Lists — clean by default */
ul, ol { padding-inline-start: 1.4em; }
.kw-component ul,
.kw-component ol {
  color: var(--kw-text-light);
  margin-bottom: 1em;
}

img { max-width: 100%; height: auto; display: block; }

/* ==========================================================
   4. LAYOUT HELPERS
   ========================================================== */
.kw-container {
  width: 100%;
  max-width: var(--kw-max-width);
  margin-inline: auto;
  padding-inline: 2rem;
}

.kw-site-content {
  flex-direction: column;
  min-height: 100vh;
}

/* ==========================================================
   5. AGE GATE
   ========================================================== */
.kw-age-gate {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.kw-age-gate__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 65%, rgba(139,21,56,0.4) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 25%, rgba(201,168,76,0.1) 0%, transparent 50%),
    #07040E;
  animation: kw-bg-in 1s ease both;
}

@keyframes kw-bg-in { from { opacity:0; } to { opacity:1; } }

.kw-age-gate__panel {
  position: relative;
  z-index: 1;
  background: linear-gradient(150deg, rgba(28,20,40,0.97), rgba(18,12,28,0.99));
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 22px;
  padding: 3rem 2.5rem;
  max-width: 450px;
  width: 100%;
  text-align: center;
  box-shadow: var(--kw-shadow-lg), var(--kw-glow-wine), inset 0 1px 0 rgba(255,255,255,0.05);
  animation: kw-panel-in 0.65s var(--kw-ease-out) 0.25s both;
}

@keyframes kw-panel-in {
  from { opacity:0; transform: translateY(28px) scale(0.96); }
  to   { opacity:1; transform: none; }
}

.kw-age-gate__glass {
  width: 88px; height: 126px;
  margin: 0 auto 1.2rem;
  animation: kw-float 4s ease-in-out infinite;
}

@keyframes kw-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }

.kw-wine-glass-svg { width:100%; height:100%; filter: drop-shadow(0 4px 18px rgba(139,21,56,0.55)); }

.kw-wine-fill { animation: kw-sway 3s ease-in-out infinite; transform-origin: 50% 75%; }
@keyframes kw-sway { 0%,100%{transform:rotate(-1.2deg)} 50%{transform:rotate(1.2deg)} }

.kw-age-gate__drops { position:absolute; inset:0; pointer-events:none; }
.kw-drop {
  position:absolute; width:5px; height:5px;
  background:rgba(139,21,56,0.75); border-radius:50% 50% 50% 0;
  transform:rotate(-45deg); opacity:0;
  animation: kw-drip 3s ease-in infinite;
}
.kw-drop--1{top:60%;left:18%;animation-delay:0.6s}
.kw-drop--2{top:56%;left:74%;animation-delay:1.4s;animation-duration:2.6s}
.kw-drop--3{top:66%;left:44%;animation-delay:2.2s}
@keyframes kw-drip {
  0%{opacity:0.85;transform:rotate(-45deg) translateY(0)}
  100%{opacity:0;transform:rotate(-45deg) translateY(32px)}
}

.kw-age-gate__logo-text {
  font-family: var(--kw-font-display) !important;
  font-size: 0.95rem;
  font-weight: var(--kw-fw-medium);
  color: var(--kw-gold) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.kw-age-gate__title {
  font-family: var(--kw-font-display) !important;
  font-size: 2.1rem;
  font-weight: var(--kw-fw-black) !important;
  color: var(--kw-cream) !important;
  margin-bottom: 0.2em;
}

.kw-age-gate__subtitle {
  font-size: 0.95rem;
  color: var(--kw-gold) !important;
  margin-bottom: 1.5rem;
  font-weight: var(--kw-fw-light);
  letter-spacing: 0.03em;
}

.kw-age-gate__question {
  font-family: var(--kw-font-display) !important;
  font-size: 1.2rem;
  font-weight: var(--kw-fw-semi) !important;
  color: var(--kw-cream) !important;
  margin-bottom: 0.5rem;
}

.kw-age-gate__notice {
  font-size: 0.8rem;
  color: var(--kw-text-muted) !important;
  margin-bottom: 1.5rem;
  line-height: 1.55;
  max-width: 310px;
  margin-inline: auto;
}

.kw-age-gate__actions { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.5rem; }

.kw-age-gate__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  padding: 0.85em 1.8em; border: none; border-radius: var(--kw-radius-pill);
  font-family: var(--kw-font-body) !important;
  font-size: 1rem; font-weight: var(--kw-fw-semi);
  cursor: pointer; width: 100%; transition: all var(--kw-t) var(--kw-ease);
}

.kw-age-gate__btn--yes {
  background: linear-gradient(135deg, var(--kw-burgundy), var(--kw-burgundy-dk));
  color: #fff !important;
  box-shadow: 0 4px 18px rgba(139,21,56,0.42), inset 0 1px 0 rgba(255,255,255,0.1);
}
.kw-age-gate__btn--yes:hover {
  background: linear-gradient(135deg, var(--kw-burgundy-lt), var(--kw-burgundy));
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(139,21,56,0.58);
}

.kw-age-gate__btn--no {
  background: transparent;
  color: var(--kw-text-muted) !important;
  border: 1px solid rgba(138,126,110,0.28);
  font-size: 0.88rem;
}
.kw-age-gate__btn--no:hover { background: rgba(255,255,255,0.04); color: var(--kw-text) !important; }

.kw-age-gate__legal {
  font-size: 0.73rem;
  color: var(--kw-text-muted) !important;
  opacity: 0.7;
  line-height: 1.5;
}

/* ==========================================================
   6. HEADER
   ========================================================== */
.kw-header {
  position: relative;
  z-index: 1000;
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139,21,56,0.12);
  transition: box-shadow var(--kw-t) var(--kw-ease);
}

.kw-header--sticky { position: sticky; top: 0; }
.kw-header--scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 1px 0 rgba(139,21,56,0.08); }

.kw-topbar {
  background: var(--kw-burgundy-dk) !important;
  padding: 0.35rem 0;
  font-size: 0.8rem;
  color: rgba(242,234,211,0.85) !important;
  text-align: center;
}
.kw-topbar a { color: var(--kw-gold-lt) !important; }

.kw-header__main {
  display: flex !important;
  flex-direction: row !important;     /* RTL handles right→left flow */
  align-items: center !important;
  height: var(--kw-header-height);
  gap: 1.5rem;
  direction: rtl;
}

/* LOGO — first in DOM = rightmost in RTL flex */
.kw-header__brand {
  flex-shrink: 0;
  order: 1;              /* rightmost */
}

.kw-header__logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none !important;
}

.kw-logo-img { max-height: 52px; max-width: 180px; width: auto; height: auto; object-fit: contain; display: block; }

.kw-site-title {
  font-family: var(--kw-font-display) !important;
  font-size: 1.45rem;
  font-weight: var(--kw-fw-bold) !important;
  color: var(--kw-burgundy) !important;
  letter-spacing: 0.01em;
}

/* NAV — center, pushed away from logo */
.kw-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
  order: 2;
  margin-inline-start: auto; /* ensures logo stays anchored to the right */
}

/* ACTIONS — leftmost */
.kw-header__actions {
  order: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Search input */
.kw-header__search input[type="search"],
.kw-header__search input[type="text"],
.kw-header__search .mod-finder__input {
  background: rgba(139,21,56,0.05) !important;
  border: 1px solid rgba(139,21,56,0.18) !important;
  border-radius: var(--kw-radius-pill) !important;
  color: var(--kw-text) !important;
  padding: 0.45rem 1rem !important;
  font-family: var(--kw-font-body) !important;
  font-size: 0.87rem !important;
  outline: none !important;
  transition: border-color var(--kw-t) !important;
  width: 190px;
  direction: rtl;
}
.kw-header__search input:focus { border-color: var(--kw-burgundy) !important; background: rgba(139,21,56,0.08) !important; }
.kw-header__search input::placeholder { color: var(--kw-text-muted) !important; }

/* Hamburger */
.kw-hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: rgba(139,21,56,0.06) !important; border: 1px solid rgba(139,21,56,0.2) !important;
  border-radius: var(--kw-radius-sm) !important; cursor: pointer; padding: 0;
  transition: background var(--kw-t);
}
.kw-hamburger:hover { background: rgba(139,21,56,0.12) !important; }
.kw-hamburger span { display: block; width: 18px; height: 1.5px; background: var(--kw-burgundy); border-radius: 2px; transition: transform var(--kw-t), opacity var(--kw-t); }
.kw-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.kw-hamburger.is-open span:nth-child(2) { opacity: 0; }
.kw-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.kw-mobile-menu {
  background: #FFFFFF !important;
  border-top: 1px solid var(--kw-card-border);
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--kw-t-slow) var(--kw-ease);
}
.kw-mobile-menu.is-open { display: block; max-height: 520px; }
.kw-mobile-menu__inner { padding: 1rem 0; }
.kw-mobile-menu__search { padding: 0.5rem 0 0; }
.kw-mobile-menu__search input { width: 100% !important; }

.kw-mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.kw-mobile-menu ul li a {
  display: block; padding: 0.7rem 0;
  color: var(--kw-text) !important; font-size: 1rem; font-weight: var(--kw-fw-medium);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color var(--kw-t), padding var(--kw-t);
}
.kw-mobile-menu ul li a:hover { color: var(--kw-burgundy) !important; padding-right: 0.5rem; }

/* Force vertical stacking — override any cassiopeia flex/inline-flex inheritance */
.kw-mobile-menu nav,
.kw-mobile-menu .nav,
.kw-mobile-menu .navbar-nav,
.kw-mobile-menu .mod-menu > ul,
.kw-mobile-menu > div > ul,
.kw-mobile-menu ul { display: block !important; flex-direction: column !important; width: 100% !important; }
.kw-mobile-menu ul li { display: block !important; float: none !important; width: 100% !important; }

/* ==========================================================
   7. HERO
   ========================================================== */
.kw-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #FFFFFF 0%, #FAF5EF 100%) !important;
}

/* Background glow layers */
.kw-hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.kw-hero__bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: kw-glow-in 1.8s var(--kw-ease-out) forwards;
}
.kw-hero__bg-glow--1 {
  width: 600px; height: 600px; top: -10%; right: -5%;
  background: radial-gradient(circle, rgba(139,21,56,0.07) 0%, transparent 70%);
  animation-delay: 0.2s;
}
.kw-hero__bg-glow--2 {
  width: 500px; height: 500px; bottom: -10%; left: -5%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  animation-delay: 0.5s;
}
.kw-hero__bg-glow--3 {
  width: 300px; height: 300px; top: 40%; left: 40%;
  background: radial-gradient(circle, rgba(139,21,56,0.04) 0%, transparent 70%);
  animation-delay: 0.8s;
}

@keyframes kw-glow-in { to { opacity: 1; } }

/* Subtle grid lines */
.kw-hero__bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139,21,56,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,21,56,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

/* Floating particles */
.kw-hero__particles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.kw-particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--kw-burgundy);
  border-radius: 50%;
  opacity: 0;
  animation: kw-particle-float linear infinite;
}
/* Stagger 12 particles */
.kw-particle--1  { top:80%; left:8%;  animation-duration:8s;  animation-delay:0s;   width:2px;height:2px; }
.kw-particle--2  { top:60%; left:15%; animation-duration:11s; animation-delay:1s; }
.kw-particle--3  { top:90%; left:22%; animation-duration:9s;  animation-delay:2s;   width:2px;height:2px; }
.kw-particle--4  { top:70%; left:30%; animation-duration:12s; animation-delay:0.5s; }
.kw-particle--5  { top:85%; left:42%; animation-duration:7s;  animation-delay:3s;   width:2px;height:2px; }
.kw-particle--6  { top:75%; left:55%; animation-duration:10s; animation-delay:1.5s; }
.kw-particle--7  { top:65%; left:65%; animation-duration:8s;  animation-delay:4s;   width:2px;height:2px; }
.kw-particle--8  { top:88%; left:72%; animation-duration:11s; animation-delay:0.8s; }
.kw-particle--9  { top:58%; left:80%; animation-duration:9s;  animation-delay:2.5s; }
.kw-particle--10 { top:78%; left:88%; animation-duration:13s; animation-delay:1.2s; width:2px;height:2px; }
.kw-particle--11 { top:50%; left:5%;  animation-duration:10s; animation-delay:3.5s; }
.kw-particle--12 { top:95%; left:95%; animation-duration:8s;  animation-delay:0.3s; width:2px;height:2px; }

@keyframes kw-particle-float {
  0%   { opacity:0; transform:translateY(0) translateX(0); }
  10%  { opacity:0.55; }
  90%  { opacity:0.3; }
  100% { opacity:0; transform:translateY(-120px) translateX(20px); }
}

/* Inner layout */
.kw-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--kw-max-width);
  margin-inline: auto;
  padding-inline: 2rem;
  padding-block: 5rem;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: center;
}

/* Content (right side in RTL) */
.kw-hero__content {
  animation: kw-hero-content-in 0.9s var(--kw-ease-out) 0.3s both;
}

@keyframes kw-hero-content-in {
  from { opacity:0; transform:translateX(30px); }
  to   { opacity:1; transform:none; }
}

.kw-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: var(--kw-fw-semi);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kw-gold-dk) !important;
  margin-bottom: 1.2rem;
}

.kw-hero__eyebrow-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to left, var(--kw-gold-dk), transparent);
  max-width: 60px;
}

.kw-hero__title {
  font-family: var(--kw-font-display) !important;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: var(--kw-fw-black) !important;
  line-height: 1.15 !important;
  color: var(--kw-burgundy) !important;
  margin-bottom: 1.2rem;
}

.kw-hero__title em {
  font-style: normal;
  color: var(--kw-gold-dk) !important;
  font-weight: var(--kw-fw-light) !important;
  display: block;
}

.kw-hero__subtitle {
  font-size: 1.05rem;
  color: var(--kw-text) !important;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: var(--kw-fw-normal);
  max-width: 440px;
}

.kw-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  margin-bottom: 2rem;
}

.kw-hero__feature {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.85rem;
  color: var(--kw-text-light) !important;
  font-weight: var(--kw-fw-medium);
}

.kw-hero__feature svg { color: var(--kw-burgundy); flex-shrink: 0; }

.kw-hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.kw-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 2em;
  border-radius: var(--kw-radius-pill);
  font-family: var(--kw-font-body) !important;
  font-size: 0.95rem;
  font-weight: var(--kw-fw-semi);
  cursor: pointer;
  transition: all var(--kw-t) var(--kw-ease);
  white-space: nowrap;
  text-decoration: none !important;
}

.kw-hero__btn--primary {
  background: linear-gradient(135deg, var(--kw-burgundy), var(--kw-burgundy-dk));
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(139,21,56,0.45), inset 0 1px 0 rgba(255,255,255,0.1);
}
.kw-hero__btn--primary:hover {
  background: linear-gradient(135deg, var(--kw-burgundy-lt), var(--kw-burgundy));
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(139,21,56,0.55);
  color: #fff !important;
}

.kw-hero__btn--secondary {
  background: transparent;
  color: var(--kw-burgundy) !important;
  border: 1.5px solid rgba(139,21,56,0.4);
}
.kw-hero__btn--secondary:hover {
  background: rgba(139,21,56,0.06);
  border-color: var(--kw-burgundy);
  transform: translateY(-3px);
  color: var(--kw-burgundy-dk) !important;
}

.kw-hero__shipping {
  font-size: 0.82rem;
  color: var(--kw-text-muted) !important;
}
.kw-hero__shipping strong { color: var(--kw-burgundy) !important; font-weight: var(--kw-fw-semi); }

/* Decorative bottle (left side in RTL) */
.kw-hero__decor {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: kw-bottle-in 1.1s var(--kw-ease-out) 0.5s both;
}

@keyframes kw-bottle-in {
  from { opacity:0; transform:translateX(-30px) translateY(20px); }
  to   { opacity:1; transform:none; }
}

.kw-hero__bottle-wrap {
  position: relative;
  animation: kw-float 5s ease-in-out infinite;
}

.kw-hero__bottle {
    width: 600px;
    max-width: fit-content;
    height: auto;
    max-height: max-content;
        clip-path: polygon(2% 2%, 25% 0%, 50% 3%, 75% 1%, 100% 4%, 98% 30%, 100% 60%, 97% 89%, 89% 99%, 50% 99%, 35% 99%, 0% 96%, 2% 70%, 1% 30%);
    filter: drop-shadow(0 12px 30px rgba(139, 21, 56, 0.25)) drop-shadow(0 0 40px rgba(201, 168, 76, 0.10));}


.kw-hero__bottle-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 28px;
  background: radial-gradient(ellipse, rgba(139,21,56,0.18), transparent 70%);
  filter: blur(10px);
}

/* Scroll indicator */
.kw-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.kw-hero__scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--kw-burgundy), transparent);
  margin: 0 auto;
  animation: kw-scroll-pulse 2s ease-in-out infinite;
}

@keyframes kw-scroll-pulse {
  0%,100% { opacity:0.3; transform:scaleY(1); }
  50%      { opacity:0.8; transform:scaleY(1.2); }
}

/* Hero module override wrapper */
.kw-hero__module {
  position: relative; z-index: 1;
  padding-block: 4rem;
}

/* ==========================================================
   8. MAIN LAYOUT
   ========================================================== */
.kw-main {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-block: 3rem;
  align-items: start;
}

.kw-main.has-sidebar-left  { grid-template-columns: 260px 1fr; }
.kw-main.has-sidebar-right { grid-template-columns: 1fr 260px; }
.kw-main.has-sidebar-left.has-sidebar-right { grid-template-columns: 260px 1fr 260px; }

.kw-component { min-width: 0; }

.kw-sidebar {
  position: sticky;
  top: calc(var(--kw-header-height) + 1rem);
}

/* ==========================================================
   9. CONTENT AREA — readable dark-theme typography
   ========================================================== */
.kw-component p,
.kw-component li,
.kw-component td,
.kw-component th {
  color: var(--kw-text) !important;
  font-family: var(--kw-font-body) !important;
  font-size: 1rem;
  line-height: 1.75;
}

.kw-component h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 0.6em; }
.kw-component h2 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); margin-bottom: 0.5em; }
.kw-component h3 { font-size: 1.35rem; margin-bottom: 0.5em; }
.kw-component h4 { font-size: 1.15rem; margin-bottom: 0.4em; }

/* ==========================================================
   10. VIRTUEMART — Product Grid
   ========================================================== */
/* ---- VirtueMart 4-column product grid ---- */

/* The .row div wraps each set of products — turn it into a CSS Grid */
.row:has(.product.vm-col) {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 2.5rem !important;
  width: 100% !important;
  float: none !important;
  margin: 0 0 2.5rem !important;
}

/* Each product cell fills its grid cell fully */
.product.vm-col {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Hide Bootstrap clear divs — not needed with grid */
.row:has(.product.vm-col) + .clear,
.horizontal-separator { display: none !important; }

/* Responsive */
@media (max-width: 1024px) {
  .row:has(.product.vm-col) { grid-template-columns: repeat(3, 1fr) !important; gap: 2rem !important; }
}
@media (max-width: 768px) {
  .row:has(.product.vm-col) { grid-template-columns: repeat(2, 1fr) !important; gap: 1.5rem !important; }
}
@media (max-width: 480px) {
  .row:has(.product.vm-col) { grid-template-columns: 1fr !important; }
}

/* ==========================================================
   VIRTUEMART — LUXURY PRODUCT CARD
   ========================================================== */

/* ── Card container ── */
.product.vm-col .spacer.product-container {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  background: #FFFFFF !important;
  border: 1px solid #EAE0D5 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 12px rgba(30,15,15,0.06) !important;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.3s ease,
              border-color 0.3s ease !important;
  position: relative !important;
}

/* Gold top-border accent on hover */
.product.vm-col .spacer.product-container::before {
  content: '' !important;
  position: absolute !important;
  inset-block-start: 0 !important;
  inset-inline: 0 !important;
  height: 3px !important;
  background: linear-gradient(90deg, var(--kw-burgundy), var(--kw-gold)) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
  z-index: 2 !important;
}

.product.vm-col .spacer.product-container:hover {
  transform: translateY(-7px) !important;
  box-shadow: 0 16px 40px rgba(30,15,15,0.12), 0 4px 16px rgba(139,21,56,0.1) !important;
  border-color: #C9A84C !important;
}

.product.vm-col .spacer.product-container:hover::before {
  opacity: 1 !important;
}

/* ── Image area ── */
.product.vm-col .vm-product-media-container {
  overflow: hidden !important;
  background: #FAF7F2 !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  flex-shrink: 0 !important;
}

.product.vm-col .vm-product-media-container a {
  display: block !important;
}

.product.vm-col .vm-product-media-container img {
  width: 100% !important;
  aspect-ratio: 4 / 5 !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  display: block !important;
  padding: 1rem 1.5rem 0 !important;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1) !important;
  background: #FAF7F2 !important;
}

.product.vm-col .spacer.product-container:hover .vm-product-media-container img {
  transform: scale(1.05) !important;
}

/* ── Rating stars ── */
.vm-product-rating-container {
  padding: 0.4rem 1rem 0 !important;
  min-height: 1.2rem !important;
}

/* ── Description container ── */
[class*="vm-product-descr-container"] {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 0.75rem 1rem 0 !important;
  gap: 0.3rem !important;
}

/* ── Product name ── */
[class*="vm-product-descr-container"] h2,
[class*="vm-product-descr-container"] h2 a {
  font-family: var(--kw-font-display) !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  color: #1E0F0F !important;
  line-height: 1.4 !important;
  text-decoration: none !important;
  margin: 0 !important;
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  transition: color 0.2s ease !important;
}

[class*="vm-product-descr-container"] h2 a:hover {
  color: var(--kw-burgundy) !important;
}

/* ── Short description ── */
.product_s_desc {
  font-size: 0.75rem !important;
  color: #7A6A5A !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  flex: 1 !important;
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
}

/* ── Price area ── */
[class*="vm3pr-"]:first-of-type {
  margin-top: auto !important;
  padding: 0.6rem 1rem 0 !important;
}

.PricebasePrice,
.PricebasePrice .priceColor,
.vm-product-price,
.priceColor,
.product-price {
  font-family: var(--kw-font-display) !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: #8B1538 !important;
  direction: ltr !important;
  unicode-bidi: embed !important;
}

/* Hide the duplicate/old price line (VM renders price twice sometimes) */
.PricebasePrice + .PricebasePrice {
  display: none !important;
}

/* ── Quantity + Add-to-cart ── */
[class*="vm3pr-"]:last-of-type {
  padding: 0.5rem 1rem 1rem !important;
}

.quantity-controls,
.vm-cart-quantity {
  display: flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  margin-bottom: 0.5rem !important;
}

.vm-addtocart-button,
input[type="submit"].addtocart-button,
.addtocart-button {
  width: 100% !important;
  padding: 0.65em 1em !important;
  background: linear-gradient(135deg, #8B1538 0%, #6B1030 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 999px !important;
  font-family: var(--kw-font-body) !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease !important;
  box-shadow: 0 3px 10px rgba(139,21,56,0.25) !important;
  letter-spacing: 0.01em !important;
}

.vm-addtocart-button:hover,
input[type="submit"].addtocart-button:hover {
  background: linear-gradient(135deg, #A01A42 0%, #8B1538 100%) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 18px rgba(139,21,56,0.35) !important;
}

/* ── Details link ── */
.vm-details-button {
  padding: 0 1rem 0.8rem !important;
  text-align: center !important;
}

.vm-details-button a.product-details {
  font-size: 0.74rem !important;
  color: #9A8A7A !important;
  text-decoration: none !important;
  border-bottom: 1px solid #E0D5C8 !important;
  padding-bottom: 1px !important;
  transition: color 0.2s, border-color 0.2s !important;
}

.vm-details-button a.product-details:hover {
  color: var(--kw-burgundy) !important;
  border-color: var(--kw-burgundy) !important;
}

/* Hide subcategory grid on manufacturer pages */
body.view-manufacturer .vm-category-subcategories { display: none !important; }

/* ── Category / Manufacturer Cards ─────────────────────── */
.vm-subcategory,
.vm-manufacturer-item { height: 100%; }   /* Bootstrap col stretches card */

.kw-cat-card {
  display: flex;
  flex-direction: column;
  height: 100%;                             /* fill col height → equal rows */
  background: #fff;
  border: 1px solid var(--kw-card-border);
  border-radius: var(--kw-radius);
  overflow: hidden;
  text-decoration: none !important;
  box-shadow: var(--kw-shadow-sm);
  transition: transform var(--kw-t-slow), box-shadow var(--kw-t-slow);
}
.kw-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--kw-shadow-md);
  text-decoration: none !important;
}

/* image area — fixed height, centred, white padding */
.kw-cat-card__img {
  overflow: hidden;
  flex: 0 0 auto;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;                            /* uniform image zone */
  padding: 1rem;
}
/* cover any img inside — VirtueMart sometimes wraps in <a> or <span> */
.kw-cat-card__img a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.kw-cat-card__img img,
.kw-cat-card__img .browseCategoryImage {
  max-width: 100%;
  max-height: 140px;                        /* leave room for padding */
  width: auto;
  height: auto;
  object-fit: contain;                      /* logos stay proportional */
  display: block;
  transition: transform var(--kw-t-slow), opacity var(--kw-t-slow);
}
.kw-cat-card:hover .kw-cat-card__img img,
.kw-cat-card:hover .kw-cat-card__img .browseCategoryImage {
  transform: scale(1.05);
  opacity: 0.9;
}

/* photo-style categories get cover + no padding */
.kw-cat-card--photo .kw-cat-card__img {
  padding: 0;
  height: 200px;
}
.kw-cat-card--photo .kw-cat-card__img .browseCategoryImage {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* title bar — pinned to bottom */
.kw-cat-card__body {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.75rem;
  border-top: 2px solid var(--kw-burgundy);
  background: #fff;
  text-align: center;
}
.kw-cat-card__title {
  font-family: var(--kw-font-display) !important;
  font-size: 1rem !important;
  font-weight: var(--kw-fw-semi) !important;
  color: var(--kw-burgundy) !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

/* legacy selectors kept for safety */
.vm-category-media-container { border-radius: var(--kw-radius) !important; overflow: hidden; }
.vm-category-media-container img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform var(--kw-t-slow), filter var(--kw-t-slow);
  filter: brightness(0.8) saturate(0.85);
}
.vm-category-media-container:hover img { transform: scale(1.07); filter: brightness(0.92) saturate(1.1); }
.vm-category-name a {
  font-family: var(--kw-font-display) !important;
  font-size: 1.05rem !important;
  font-weight: var(--kw-fw-semi) !important;
  color: var(--kw-gold) !important;
}

/* Pagination */
.pagination { display: flex; gap: 0.35rem; justify-content: center; flex-wrap: wrap; list-style: none; padding: 0; margin: 2.5rem 0 0; }
.pagination .page-link {
  background: var(--kw-card-bg) !important;
  border: 1px solid var(--kw-card-border) !important;
  color: var(--kw-text) !important;
  border-radius: var(--kw-radius-sm) !important;
  padding: 0.45rem 0.9rem !important;
  font-family: var(--kw-font-body) !important;
  transition: all var(--kw-t) !important;
}
.pagination .page-link:hover,
.pagination .active .page-link {
  background: var(--kw-burgundy) !important;
  border-color: var(--kw-burgundy) !important;
  color: #fff !important;
}

/* ==========================================================
   11. FORMS
   ========================================================== */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
textarea,
select {
  background: rgba(139,21,56,0.04) !important;
  border: 1px solid rgba(139,21,56,0.2) !important;
  border-radius: var(--kw-radius-sm) !important;
  color: var(--kw-text) !important;
  font-family: var(--kw-font-body) !important;
  font-size: 0.95rem !important;
  padding: 0.65rem 1rem !important;
  width: 100% !important;
  transition: border-color var(--kw-t), box-shadow var(--kw-t) !important;
  direction: rtl !important;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--kw-burgundy) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(139,21,56,0.1) !important;
}
label {
  color: var(--kw-text) !important;
  font-family: var(--kw-font-body) !important;
  font-weight: var(--kw-fw-medium) !important;
  font-size: 0.9rem !important;
  display: block !important;
  margin-bottom: 0.35rem !important;
}

/* ==========================================================
   12. BUTTONS (global Bootstrap override)
   ========================================================== */
.btn,
button[type="submit"]:not(.kw-hamburger):not(.kw-age-gate__btn) {
  font-family: var(--kw-font-body) !important;
  border-radius: var(--kw-radius-pill) !important;
  font-weight: var(--kw-fw-semi) !important;
  transition: all var(--kw-t) !important;
}

.btn-primary {
  background: linear-gradient(135deg, var(--kw-burgundy), var(--kw-burgundy-dk)) !important;
  border-color: transparent !important;
  color: #fff !important;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--kw-burgundy-lt), var(--kw-burgundy)) !important;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent !important;
  border: 1.5px solid var(--kw-gold) !important;
  color: var(--kw-gold) !important;
}
.btn-secondary:hover { background: rgba(201,168,76,0.1) !important; color: var(--kw-gold-lt) !important; }

/* ==========================================================
   13. CARDS (modules)
   ========================================================== */
.card {
  background: #FFFFFF !important;
  border: 1px solid var(--kw-card-border) !important;
  border-radius: var(--kw-radius) !important;
  color: var(--kw-text) !important;
  box-shadow: var(--kw-shadow-sm);
}
.card-header {
  background: rgba(139,21,56,0.04) !important;
  border-bottom: 1px solid var(--kw-card-border) !important;
  color: var(--kw-burgundy) !important;
  font-family: var(--kw-font-display) !important;
  font-weight: var(--kw-fw-bold) !important;
}
.card-body { color: var(--kw-text) !important; }

/* ==========================================================
   14. BREADCRUMBS
   ========================================================== */
.kw-breadcrumbs { margin-bottom: 1.2rem; }
.kw-breadcrumbs .breadcrumb { background: transparent !important; padding: 0 !important; margin: 0 !important; display: flex; gap: 0; flex-wrap: wrap; }
.kw-breadcrumbs .breadcrumb-item a { color: var(--kw-text-muted) !important; font-size: 0.84rem; }
.kw-breadcrumbs .breadcrumb-item a:hover { color: var(--kw-burgundy) !important; }
.kw-breadcrumbs .breadcrumb-item.active { color: var(--kw-text) !important; font-size: 0.84rem; }
.kw-breadcrumbs .breadcrumb-item + .breadcrumb-item::before { content: '/'; color: var(--kw-text-muted); padding: 0 0.5em; }

/* ==========================================================
   15. ALERTS
   ========================================================== */
.alert { border-radius: var(--kw-radius-sm) !important; font-family: var(--kw-font-body) !important; }
.alert-success { background: rgba(16,122,82,0.12) !important; border-color: rgba(16,122,82,0.35) !important; color: #4ade80 !important; }
.alert-danger, .alert-error { background: rgba(139,21,56,0.12) !important; border-color: rgba(139,21,56,0.35) !important; color: #f87171 !important; }
.alert-info { background: rgba(59,130,246,0.1) !important; border-color: rgba(59,130,246,0.28) !important; color: #93c5fd !important; }
.alert-warning { background: rgba(201,168,76,0.1) !important; border-color: rgba(201,168,76,0.28) !important; color: var(--kw-gold-lt) !important; }

/* ==========================================================
   16. TABLES
   ========================================================== */
.table { color: var(--kw-text) !important; border-color: var(--kw-card-border) !important; font-family: var(--kw-font-body) !important; }
.table-striped > tbody > tr:nth-of-type(odd) { background: rgba(255,255,255,0.025) !important; }
.table th { color: var(--kw-gold) !important; font-family: var(--kw-font-display) !important; border-bottom: 1px solid var(--kw-card-border) !important; }

/* ==========================================================
   17. TOP / BOTTOM MODULES
   ========================================================== */
.kw-top-modules {
  padding-block: 2rem;
  background: var(--kw-bg-2) !important;
  border-top: 1px solid var(--kw-card-border);
  border-bottom: 1px solid var(--kw-card-border);
}

.kw-top-modules__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* ── BOTTOM BAND — prominent feature strip ── */
.kw-bottom-band {
  background: linear-gradient(180deg, var(--kw-bg-2) 0%, #fff 100%) !important;
  border-top: 3px solid var(--kw-burgundy);
  padding-block: 3.5rem;
  position: relative;
}

/* Decorative top accent */
.kw-bottom-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--kw-gold), transparent);
  margin-top: 3px;
}

.kw-bottom-band__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
}

/* Each column is a card */
.kw-bottom-band__col {
  background: #fff;
  border: 1px solid var(--kw-card-border);
  border-top: 3px solid var(--kw-burgundy);
  border-radius: var(--kw-radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--kw-shadow-sm);
  color: var(--kw-text) !important;
  transition: box-shadow var(--kw-t), transform var(--kw-t);
}
.kw-bottom-band__col:hover {
  box-shadow: var(--kw-shadow-md);
  transform: translateY(-2px);
}

.kw-bottom-band__col h3,
.kw-bottom-band__col h4,
.kw-bottom-band__col .moduletable > h3 {
  font-family: var(--kw-font-display) !important;
  font-size: 1.1rem !important;
  font-weight: var(--kw-fw-bold) !important;
  color: var(--kw-burgundy) !important;
  margin-bottom: 1.1rem !important;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  gap: 0.5em;
}
/* Gold dot decorator before heading */
.kw-bottom-band__col h3::before,
.kw-bottom-band__col h4::before,
.kw-bottom-band__col .moduletable > h3::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--kw-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.kw-bottom-band__col ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.kw-bottom-band__col ul li {
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(139,21,56,0.07);
  font-size: 0.9rem;
  color: var(--kw-text) !important;
  display: flex;
  align-items: center;
  gap: 0.4em;
}
/* Chevron before list items */
.kw-bottom-band__col ul li::before {
  content: '›';
  color: var(--kw-burgundy);
  font-weight: bold;
  font-size: 1rem;
  flex-shrink: 0;
}

.kw-bottom-band__col ul li a {
  color: var(--kw-text) !important;
  transition: color var(--kw-t);
}
.kw-bottom-band__col ul li a:hover { color: var(--kw-burgundy) !important; }

.kw-bottom-band__col p {
  color: var(--kw-text-light) !important;
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

/* Contact info in bottom band */
.kw-bottom-band__col a[href^="tel:"],
.kw-bottom-band__col a[href^="mailto:"] {
  color: var(--kw-burgundy) !important;
  font-weight: var(--kw-fw-semi);
  font-size: 1rem;
}

/* ==========================================================
   18. FOOTER
   ========================================================== */
.kw-footer {
  background: linear-gradient(to bottom, var(--kw-bg-2), var(--kw-bg-3)) !important;
  border-top: 1px solid rgba(139,21,56,0.1);
  padding-top: 0; /* contact strip handles top spacing now */
}

.kw-footer a { color: var(--kw-text) !important; }
.kw-footer a:hover { color: var(--kw-burgundy) !important; }

.kw-footer h3, .kw-footer h4,
.kw-footer .moduletable > h3 {
  font-family: var(--kw-font-display) !important;
  font-size: 1rem !important;
  color: var(--kw-gold) !important;
  margin-bottom: 1rem !important;
  font-weight: var(--kw-fw-bold) !important;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding-bottom: 0.5rem;
}

.kw-footer ul { list-style: none; padding: 0; margin: 0; }
.kw-footer ul li { padding: 0.35rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 0.88rem; }

.kw-footer p,
.kw-footer li { color: var(--kw-text) !important; font-family: var(--kw-font-body) !important; }

.kw-footer__inner { padding: 2.5rem 0 2rem; }

/* ── Contact info strip ── */
.kw-footer__contact {
  background: var(--kw-burgundy);
  padding-block: 2.5rem;
}

.kw-footer__contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.kw-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: rgba(255,255,255,0.92) !important;
}

/* Dividers between items (RTL: between 2nd and 3rd, 1st and 2nd) */
.kw-footer__contact-item + .kw-footer__contact-item {
  border-right: 1px solid rgba(255,255,255,0.18);
  padding-right: 1.5rem;
}

.kw-footer__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

.kw-footer__contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-family: var(--kw-font-body) !important;
}

.kw-footer__contact-text strong {
  font-size: 0.72rem;
  font-weight: var(--kw-fw-bold) !important;
  color: var(--kw-gold) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.kw-footer__contact-text span,
.kw-footer__contact-text a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9) !important;
  text-decoration: none;
  transition: color var(--kw-t);
  line-height: 1.4;
}

.kw-footer__contact-text a:hover {
  color: var(--kw-gold) !important;
}

@media (max-width: 768px) {
  .kw-footer__contact-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .kw-footer__contact-item + .kw-footer__contact-item {
    border-right: none;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-right: 0;
    padding-top: 1.2rem;
  }
}

.kw-footer__bottom {
  background: rgba(139,21,56,0.06) !important;
  border-top: 1px solid rgba(139,21,56,0.1);
  padding: 1.2rem 0;
}

.kw-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.kw-footer__warning {
  font-size: 0.8rem !important;
  color: rgba(176,32,72,0.85) !important;
  display: flex; align-items: center; gap: 0.4em;
  margin: 0;
}
.kw-footer__warning strong { color: inherit !important; }

.kw-footer__shipping {
  font-size: 0.82rem !important;
  color: var(--kw-gold) !important;
  margin: 0;
}

.kw-footer__copy {
  font-size: 0.78rem !important;
  color: var(--kw-text-muted) !important;
  margin: 0;
  width: 100%;
  text-align: center;
}

/* ── Table overrides for white bg ── */
.table { color: var(--kw-text) !important; border-color: var(--kw-card-border) !important; }
.table-striped > tbody > tr:nth-of-type(odd) { background: rgba(139,21,56,0.03) !important; }

/* ==========================================================
   19. CART BUTTON + DRAWER
   ========================================================== */

/* ── Cart icon button in header ── */
.kw-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: rgba(139,21,56,0.06) !important;
  border: 1px solid rgba(139,21,56,0.2) !important;
  border-radius: var(--kw-radius-sm) !important;
  color: var(--kw-burgundy) !important;
  cursor: pointer;
  padding: 0;
  transition: background var(--kw-t), transform var(--kw-t);
  flex-shrink: 0;
}
.kw-cart-btn:hover {
  background: rgba(139,21,56,0.12) !important;
  transform: translateY(-1px);
}

/* Badge */
.kw-cart-count {
  position: absolute;
  top: -5px; right: -5px;
  min-width: 18px; height: 18px;
  background: var(--kw-burgundy);
  color: #fff !important;
  font-family: var(--kw-font-body) !important;
  font-size: 0.68rem;
  font-weight: var(--kw-fw-bold);
  border-radius: var(--kw-radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid #fff;
  line-height: 1;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s, transform 0.2s;
}
.kw-cart-count.has-items {
  opacity: 1;
  transform: scale(1);
}

/* ── Drawer overlay wrapper ── */
.kw-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 9500;
  pointer-events: none;
  visibility: hidden;
}
.kw-cart-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

/* Backdrop */
.kw-cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30,15,15,0.4);
  opacity: 0;
  transition: opacity 0.3s var(--kw-ease);
  cursor: pointer;
}
.kw-cart-drawer.is-open .kw-cart-drawer__backdrop {
  opacity: 1;
}

/* Sliding panel — comes from left (RTL: cart icon is on left) */
.kw-cart-drawer__panel {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 380px;
  max-width: 92vw;
  background: #fff;
  box-shadow: 4px 0 40px rgba(0,0,0,0.14);
  transform: translateX(-100%);
  transition: transform 0.38s var(--kw-ease-out);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  direction: rtl;
}
.kw-cart-drawer.is-open .kw-cart-drawer__panel {
  transform: translateX(0);
}

/* Header row */
.kw-cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(139,21,56,0.1);
  background: var(--kw-bg-2);
  flex-shrink: 0;
}

.kw-cart-drawer__title {
  font-family: var(--kw-font-display) !important;
  font-size: 1.1rem !important;
  font-weight: var(--kw-fw-bold) !important;
  color: var(--kw-burgundy) !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.kw-cart-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(139,21,56,0.06) !important;
  border: 1px solid rgba(139,21,56,0.15) !important;
  border-radius: var(--kw-radius-sm) !important;
  color: var(--kw-text-muted) !important;
  cursor: pointer;
  transition: all var(--kw-t);
  padding: 0;
  flex-shrink: 0;
}
.kw-cart-drawer__close:hover {
  background: rgba(139,21,56,0.12) !important;
  color: var(--kw-burgundy) !important;
}

/* Body — scrollable */
.kw-cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  overscroll-behavior: contain;
}

/* Empty state */
.kw-cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 1rem;
  text-align: center;
  color: var(--kw-text-muted) !important;
}
.kw-cart-drawer__empty svg {
  color: rgba(139,21,56,0.2);
}
.kw-cart-drawer__empty p {
  font-size: 1rem;
  color: var(--kw-text-muted) !important;
  margin: 0;
}

/* VirtueMart cart styles inside drawer */
.kw-cart-drawer__body .vm-cart-module { padding: 0; }
.kw-cart-drawer__body table { width: 100%; font-size: 0.9rem; }
.kw-cart-drawer__body .vm-cart-module a { color: var(--kw-text) !important; }
.kw-cart-drawer__body .vm-cart-module a:hover { color: var(--kw-burgundy) !important; }

/* ==========================================================
   20. BACK TO TOP
   ========================================================== */
.kw-back-top {
  position: fixed;
  bottom: 2rem; left: 1.5rem;
  width: 44px; height: 44px;
  background: var(--kw-burgundy) !important;
  color: #fff !important;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--kw-shadow-md);
  opacity: 0; pointer-events: none;
  transform: translateY(14px);
  transition: all var(--kw-t) var(--kw-ease);
  z-index: 500;
  border: 1px solid rgba(201,168,76,0.15) !important;
}
.kw-back-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.kw-back-top:hover { background: var(--kw-burgundy-lt) !important; transform: translateY(-3px) !important; color: #fff !important; }

/* ==========================================================
   20. PAGE LOAD ANIMATIONS
   ========================================================== */
@keyframes kw-fade-up {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:none; }
}

.kw-header  { animation: kw-fade-up 0.5s var(--kw-ease-out) 0.05s both; }
.kw-main    { animation: kw-fade-up 0.6s var(--kw-ease-out) 0.1s both; }
.kw-footer  { animation: kw-fade-up 0.6s var(--kw-ease-out) 0.15s both; }

/* ==========================================================
   21. RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  :root { --kw-header-height: 68px; }

  .kw-header__nav { display: none !important; }
  .kw-hamburger   { display: flex !important; }
  .kw-header__search { display: none; }

  .kw-hero__inner { grid-template-columns: 1fr; padding-block: 4rem; }
  .kw-hero__decor { display: none; }
  .kw-hero { min-height: auto; }
  .kw-hero__title { font-size: clamp(2.2rem, 8vw, 3.2rem); }

  .kw-main.has-sidebar-left,
  .kw-main.has-sidebar-right,
  .kw-main.has-sidebar-left.has-sidebar-right { grid-template-columns: 1fr; }
  .kw-sidebar { position: static; }
}

@media (max-width: 768px) {
  .kw-container { padding-inline: 1.25rem; }
  .kw-hero__cta { flex-direction: column; }
  .kw-hero__btn { justify-content: center; }
  .kw-footer__bottom-inner { justify-content: center; text-align: center; }

}

@media (max-width: 480px) {

  .kw-hero { min-height: 70vh; }
  .kw-age-gate__panel { padding: 2rem 1.5rem; border-radius: 16px; }
  .kw-age-gate__title { font-size: 1.7rem; }
}

/* ==========================================================
   21.4 INNER PAGE TITLE BAR (replaces hero on non-homepage)
   ========================================================== */
.kw-page-title {
  background: linear-gradient(135deg, var(--kw-bg-2) 0%, #fff 100%);
  border-bottom: 1px solid var(--kw-card-border);
  padding-block: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}
/* Subtle decorative stripe */
.kw-page-title::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--kw-burgundy) 40%, var(--kw-gold) 60%, transparent);
}
.kw-page-title__inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.kw-page-title__crumbs {
  font-size: 0.8rem;
  color: var(--kw-text-muted) !important;
}
.kw-page-title__crumbs a {
  color: var(--kw-text-muted) !important;
  text-decoration: none;
  transition: color var(--kw-t);
}
.kw-page-title__crumbs a:hover { color: var(--kw-burgundy) !important; }
.kw-page-title__crumbs .breadcrumb-item + .breadcrumb-item::before { content: '‹'; margin-inline: 0.3em; }
.kw-page-title__h1 {
  font-family: var(--kw-font-display) !important;
  font-size: 1.6rem !important;
  font-weight: var(--kw-fw-bold) !important;
  color: var(--kw-burgundy) !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

/* Hide VirtueMart's own heading when we show our custom title */
body.view-manufacturer .manufacturerHead,
body.view-manufacturer .manufacturerHead h1,
body.view-manufacturer h1.page-header,
body.view-manufacturer .vm-manufacturer-header,
body.view-manufacturer #component h1,
body.view-manufacturer .com-virtuemart-manufacturers h1,
body.view-manufacturer .kw-main-content h1:first-child { display: none !important; }

/* ==========================================================
   21.5 LOGO MARK (text fallback when no image is configured)
   ========================================================== */
.kw-logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none !important;
  line-height: 1;
}
.kw-logo-mark svg { color: var(--kw-burgundy); flex-shrink: 0; }
.kw-logo-mark__text { display: flex; flex-direction: column; gap: 1px; }
.kw-logo-mark__name {
  font-family: var(--kw-font-display) !important;
  font-size: 1.2rem;
  font-weight: var(--kw-fw-bold) !important;
  color: var(--kw-burgundy) !important;
  line-height: 1;
  letter-spacing: -0.01em;
}
.kw-logo-mark__sub {
  font-size: 0.65rem;
  color: var(--kw-gold-dk) !important;
  font-weight: var(--kw-fw-semi) !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ==========================================================
   21.6 FLOATING CONTACT WIDGET
   ========================================================== */
.kw-float-contact {
  position: fixed;
  bottom: 5.5rem;          /* sits above the back-to-top btn */
  left: 1.5rem;            /* left side in RTL layout */
  z-index: 8000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.kw-float-contact__btn {
  position: relative;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.22s var(--kw-ease), box-shadow 0.22s var(--kw-ease);
  border: 2px solid #fff !important;
  color: #fff !important;
  flex-shrink: 0;
}
.kw-float-contact__btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.26);
}

/* WhatsApp green */
.kw-float-contact__whatsapp { background: #25D366; }
.kw-float-contact__whatsapp:hover { background: #1ebe5d; color: #fff !important; }

/* Phone — burgundy */
.kw-float-contact__phone { background: var(--kw-burgundy); }
.kw-float-contact__phone:hover { background: var(--kw-burgundy-lt); color: #fff !important; }

/* Tooltip label */
.kw-float-contact__tip {
  position: absolute;
  left: 54px;
  white-space: nowrap;
  background: rgba(20,10,10,0.88);
  color: #fff !important;
  font-family: var(--kw-font-body) !important;
  font-size: 0.72rem;
  font-weight: var(--kw-fw-medium);
  padding: 0.3rem 0.65rem;
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
  backdrop-filter: blur(4px);
}
.kw-float-contact__tip::before {
  content: '';
  position: absolute;
  right: 100%; top: 50%;
  margin-top: -4px;
  border: 4px solid transparent;
  border-right-color: rgba(20,10,10,0.88);
}
.kw-float-contact__btn:hover .kw-float-contact__tip { opacity: 1; }

/* Hide tooltips on touch devices */
@media (hover: none) { .kw-float-contact__tip { display: none; } }

/* ==========================================================
   22. PRINT
   ========================================================== */
@media print {
  .kw-age-gate, .kw-header, .kw-back-top, .kw-hero, .kw-float-contact { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
}

.vm-search-custom-search-input .btn {
    left: 0;
    right: inherit !important;
}

/* ==========================================================
   23. MOBILE – inner pages: reduce top bar, go straight to content
   ========================================================== */
@media (max-width: 768px) {
  .kw-page-title { padding-block: 0.6rem 0.4rem; }
}

/* ==========================================================
   24. ACCESSIBILITY BUTTON (nagishli.js) – icon only, hide text
   ========================================================== */
/* Hide the text label inside the nagishli button */
#INDmenu-btn span,
#INDmenu-btn .INDtext,
[id*="nagish"] .INDtext,
[id*="nagish"] span:not(.INDicon),
[class*="nagish"] span,
#nagishli-btn > span,
.nagishli-btn > span { display: none !important; }

/* Ensure the button stays a reasonable icon size */
#INDmenu-btn,
#nagishli-btn,
[id*="nagish"],
[class*="nagishli-btn"] {
  font-size: 0 !important;
  line-height: 1 !important;
  width: auto !important;
  min-width: 0 !important;
  padding: 8px !important;
}

/* If there's no icon element inside, add a wheelchair SVG via pseudo-element */
#INDmenu-btn::before,
#nagishli-btn::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Ccircle cx='12' cy='4' r='2'/%3E%3Cpath d='M19 13v-2h-6l-2-5H8v2h2l1.5 3.5-1.9 4.5H7v2h3l1.8-4.2 1.2 2.2V20h2v-5.5l-1.5-2.5H19z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
}

/* ==========================================================
   25. CATEGORY PAGES – hide product-listing sections everywhere
   ========================================================== */
/* Sidebars are suppressed via PHP on VM category pages.
   CSS below catches any product-listing containers rendered
   by the VirtueMart component itself. */
body.com_virtuemart.view-category .vm-featured-products,
body.com_virtuemart.view-category .vm-latest-products,
body.com_virtuemart.view-category .vm-topten-products,
body.com_virtuemart.view-category [class*="vmFeatured"],
body.com_virtuemart.view-category [class*="vmLatest"],
body.com_virtuemart.view-category [class*="vmTopten"],
body.com_virtuemart.view-category [class*="vmNewest"],
body.com_virtuemart.view-category [class*="vm-featured"],
body.com_virtuemart.view-category [class*="vm-latest"],
body.com_virtuemart.view-category [class*="vm-topten"],
body.com_virtuemart.view-category [class*="featuredProducts"],
body.com_virtuemart.view-category [class*="latestProducts"],
body.com_virtuemart.view-category [id*="vmFeatured"],
body.com_virtuemart.view-category [id*="vmLatest"],
body.com_virtuemart.view-category [id*="vmTopten"],
body.com_virtuemart.view-virtuemart .vm-featured-products,
body.com_virtuemart.view-virtuemart .vm-latest-products,
body.com_virtuemart.view-virtuemart .vm-topten-products,
body.com_virtuemart.view-virtuemart [class*="vmFeatured"],
body.com_virtuemart.view-virtuemart [class*="vmLatest"],
body.com_virtuemart.view-virtuemart [class*="vmTopten"] { display: none !important; }
body:not(.kw-homepage):not(.view-category) .vm-category-subcategories {
    display: none;
}

/* ==========================================================
   KWC – Product Cards  v1.5.4
   ========================================================== */

/* ── Grid ── */
.kwc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding-block: 0.5rem;
}
@media (max-width: 1100px) { .kwc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .kwc-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (max-width: 480px)  { .kwc-grid { grid-template-columns: 1fr; } }

/* ── Card Shell ── */
.kwc-card {
    position: relative;
    background: #FAF7F2;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(139,21,56,0.09);
    box-shadow: 0 2px 10px rgba(30,15,15,0.06);
    transition:
        transform 0.34s cubic-bezier(0.22,1,0.36,1),
        box-shadow 0.34s cubic-bezier(0.22,1,0.36,1),
        border-color 0.34s ease;
    will-change: transform;
}
.kwc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 44px rgba(30,15,15,0.13), 0 0 0 1px rgba(139,21,56,0.11);
    border-color: rgba(139,21,56,0.15);
}

/* ── Badge – base ── */
.kwc-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    font-family: 'Heebo', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: 999px;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
}

/* ── Badge – sale (burgundy) ── */
.kwc-badge--sale {
    background: #8B1538;
    color: #fff;
    box-shadow: 0 3px 10px rgba(139,21,56,0.45);
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

/* ── Badge – out of stock ── */
.kwc-badge--oos {
    background: rgba(60,40,40,0.75);
    color: #F5EDED;
    border: 1px solid rgba(60,40,40,0.2);
    backdrop-filter: blur(4px);
}

/* ── Badge – custom label (gold) ── */
.kwc-badge--label {
    left: 12px;
    right: auto;
    background: #C9A84C;
    color: #1E0F0F;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow:
        0 3px 12px rgba(201,168,76,0.55),
        0 1px 0 rgba(255,255,255,0.35) inset;
}

/* ── Image ── */
.kwc-img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #FAF7F2;
    flex-shrink: 0;
}
.kwc-img-wrap img,
.kwc-img-wrap .kwc-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.1rem 0.9rem 0.6rem;
    display: block;
    transition: transform 0.48s cubic-bezier(0.22,1,0.36,1);
}
.kwc-card:hover .kwc-img-wrap img,
.kwc-card:hover .kwc-img-wrap .kwc-img {
    transform: scale(1.05) translateY(-4px);
}
.kwc-img-veil {
    position: absolute;
    inset: 0;
    background: rgba(30,15,15,0.26);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.1rem;
    opacity: 0;
    transition: opacity 0.28s ease;
}
.kwc-card:hover .kwc-img-veil { opacity: 1; }
.kwc-img-veil__label {
    font-family: 'Heebo', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 999px;
    padding: 0.32em 1.1em;
    backdrop-filter: blur(6px);
    background: rgba(139,21,56,0.52);
}

/* ── Body ── */
.kwc-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem 1.15rem 1.15rem;
    gap: 0.8rem;
}
.kwc-body__top { display: flex; flex-direction: column; gap: 0.3rem; }

/* ── Name ── */
.kwc-name {
    margin: 0;
    font-family: 'Heebo', sans-serif;
    font-size: 0.97rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1E0F0F;
}
.kwc-name a {
    color: inherit;
    text-decoration: none;
    background-image: linear-gradient(#8B1538, #8B1538);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 0% 1.5px;
    transition: background-size 0.28s ease, color 0.2s;
    padding-bottom: 1px;
}
.kwc-name a:hover { color: #8B1538; background-position: bottom left; background-size: 100% 1.5px; }

/* ── Desc ── */
.kwc-desc {
    margin: 0;
    font-family: 'Heebo', sans-serif;
    font-size: 0.77rem;
    color: #8A7070;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Divider ── */
.kwc-divider { display: flex; align-items: center; }
.kwc-divider::before, .kwc-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to left, transparent, rgba(201,168,76,0.28), transparent);
}
.kwc-divider__dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(201,168,76,0.6);
    flex-shrink: 0;
    margin: 0 0.55rem;
}

/* ── Pricing ── */
.kwc-pricing { margin-top: auto; }
.kwc-pricing .PricebasePrise,
.kwc-pricing .vm-price-value,
.kwc-pricing span[class*="Price"] {
    font-family: 'Heebo', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #8B1538;
    letter-spacing: -0.02em;
    line-height: 1;
}
.kwc-pricing .PriceoldPrise,
.kwc-pricing .vm-price-strike,
.kwc-pricing del {
    font-family: 'Heebo', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    color: #B09090;
    text-decoration: line-through;
    text-decoration-color: rgba(139,21,56,0.35);
    margin-right: 0.4rem;
}
.kwc-pricing .vm-price-desc,
.kwc-pricing .pricetext { display: none; }
.kwc-pricing .PricebasePrise { display: none !important; }

/* ── Actions ── */
.kwc-actions { display: flex; flex-direction: column; gap: 0.55rem; }
.kwc-actions .addtocart-bar { display: flex; flex-direction: row; align-items: center; gap: 0.4rem; }
.kwc-actions .addtocart-bar > span.addtocart-button { flex: 1; min-width: 0; display: flex; }
.kwc-actions input.addtocart-button {
    flex: 1;
    width: 100%;
    display: block;
    padding: 0.68em 1.2em;
    background: #8B1538;
    color: #fff !important;
    border: 1.5px solid #8B1538;
    border-radius: 10px;
    font-family: 'Heebo', sans-serif !important;
    font-size: 0.87rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.16s ease;
    white-space: nowrap;
    text-align: center;
}
.kwc-actions input.addtocart-button:hover {
    background: #A01940;
    border-color: #A01940;
    box-shadow: 0 4px 18px rgba(139,21,56,0.30);
    transform: translateY(-1px);
}
.kwc-actions .quantity-input,
.kwc-actions input[name="quantity[]"] {
    width: 4rem;
    text-align: center;
    font-family: 'Heebo', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1E0F0F;
    background: #FFFFFF;
    border: 1px solid rgba(139,21,56,0.18);
    border-radius: 8px;
    padding: 0.4em 0.5em;
    appearance: textfield;
    -moz-appearance: textfield;
}
.kwc-actions .quantity-input::-webkit-inner-spin-button,
.kwc-actions input[name="quantity[]"]::-webkit-inner-spin-button { -webkit-appearance: none; }
.kwc-actions .quantity-plus,
.kwc-actions .quantity-minus {
    background: #FFFFFF;
    border: 1px solid rgba(139,21,56,0.18);
    border-radius: 8px;
    width: 2rem; height: 2rem;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: 'Heebo', sans-serif;
    font-size: 1rem;
    color: #8B1538;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s;
}
.kwc-actions .quantity-plus:hover,
.kwc-actions .quantity-minus:hover {
    background: rgba(139,21,56,0.06);
    border-color: rgba(139,21,56,0.35);
}

/* ── Details link ── */
.kwc-link-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3em;
    font-family: 'Heebo', sans-serif;
    font-size: 0.77rem;
    font-weight: 500;
    color: #8A7070;
    text-decoration: none;
    padding: 0.25em 0;
    transition: color 0.2s;
}
.kwc-link-details svg { width: 13px; height: 13px; opacity: 0.65; transition: transform 0.2s, opacity 0.2s; }
.kwc-link-details:hover { color: #8B1538; }
.kwc-link-details:hover svg { transform: translateX(-3px); opacity: 1; }

/* ── VM rating stars – hide ── */
.kwc-card .vm-rating-bar,
.kwc-card .vm-stars,
.kwc-card [class*="rating"] { display: none; }

/* ── Out of stock card ── */
.kwc-card--oos .kwc-img-wrap img { opacity: 0.55; filter: grayscale(0.25); }

/* ── VM cart quantity input fix ── */
.vm-cart-item-quantity .input-group > input {
    padding: 0 !important;
}
