/* ==========================================================
   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: 54px; width: auto; }

.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 */
.kw-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
  order: 2;
}

/* 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
   ========================================================== */
.vm-product-container,
#vmMainPage,
.vm-product-list {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
  gap: 1.5rem !important;
  background: transparent !important;
}

/* Product card */
.vm-product-media-container,
.vm-product-item {
  background: var(--kw-card-bg) !important;
  border: 1px solid var(--kw-card-border) !important;
  border-radius: var(--kw-radius) !important;
  overflow: hidden;
  position: relative;
  transition: transform var(--kw-t) var(--kw-ease), box-shadow var(--kw-t), border-color var(--kw-t);
}

.vm-product-media-container:hover,
.vm-product-item:hover {
  transform: translateY(-7px);
  box-shadow: var(--kw-shadow-md), var(--kw-glow-wine) !important;
  border-color: rgba(201,168,76,0.35) !important;
}

.vm-product-media-container img,
.vm-product-item img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  transition: transform var(--kw-t-slow);
}
.vm-product-media-container:hover img,
.vm-product-item:hover img { transform: scale(1.06); }

/* Product info */
.vm-product-descr-container { padding: 1rem !important; }

.vm-product-name a,
.vm-product-name span {
  font-family: var(--kw-font-display) !important;
  font-size: 1rem !important;
  font-weight: var(--kw-fw-semi) !important;
  color: var(--kw-cream) !important;
}
.vm-product-name a:hover { color: var(--kw-gold) !important; }

.PricebasePrice .priceColor,
.vm-product-price, .priceColor, .product-price {
  font-family: var(--kw-font-display) !important;
  font-size: 1.15rem !important;
  font-weight: var(--kw-fw-bold) !important;
  color: var(--kw-gold) !important;
}

/* Add to cart */
.vm-addtocart-button,
input[type="submit"].addtocart-button,
.addtocart-button {
  background: linear-gradient(135deg, var(--kw-burgundy), var(--kw-burgundy-dk)) !important;
  color: #fff !important; border: none !important;
  border-radius: var(--kw-radius-pill) !important;
  padding: 0.6em 1.4em !important;
  font-family: var(--kw-font-body) !important;
  font-size: 0.88rem !important; font-weight: var(--kw-fw-semi) !important;
  cursor: pointer !important; width: 100% !important;
  transition: all var(--kw-t) !important;
  box-shadow: 0 3px 12px rgba(139,21,56,0.3) !important;
}
.vm-addtocart-button:hover, input[type="submit"].addtocart-button:hover {
  background: linear-gradient(135deg, var(--kw-burgundy-lt), var(--kw-burgundy)) !important;
  transform: translateY(-1px) !important;
}

/* Category images */
.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: 3rem;
}

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

  .vm-product-container,
  #vmMainPage,
  .vm-product-list { grid-template-columns: repeat(2,1fr) !important; }
}

@media (max-width: 480px) {
  .vm-product-container,
  #vmMainPage,
  .vm-product-list { grid-template-columns: 1fr !important; }

  .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.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; }
}
