/** Shopify CDN: Minification failed

Line 355:56 Unexpected "drop-shadow("
Line 1570:0 All "@import" rules must come first
Line 2305:0 All "@import" rules must come first

**/
/* ══════════════════════════════════════════════════════════
   VELON — ELORA Theme
   Palette: Ocean Blue · Pure White · Warm Gold · Marble
   Brand: VELON · Product: ELORA · Eau de Parfum · 100ml
══════════════════════════════════════════════════════════ */

:root {
  /* ── Core palette ── */
  --white:      #FFFFFF;
  --bg:         #F8F9FC;          /* very light blue-white — marble feel   */
  --bg-alt:     #EEF3FA;          /* slightly deeper for alternates         */
  --bg-card:    #E8EFF8;          /* card surfaces                          */
  --surface:    #FFFFFF;

  /* Blue scale — pulled from bottle gradient */
  --blue-deep:  #1A5FA8;          /* deep ocean — darkest blue              */
  --blue-mid:   #3B82C4;          /* mid blue                               */
  --blue-sky:   #6BB3E0;          /* sky blue                               */
  --blue-lt:    #A8D4F0;          /* light blue                             */
  --blue-pale:  #D6EAF8;          /* pale blue — sections, borders          */
  --blue-ghost: rgba(59,130,196,0.06);

  /* Ink / text */
  --ink:        #1A2332;          /* deep navy-black                        */
  --ink-2:      #2C3E55;
  --ink-3:      #5A6D82;          /* body copy                              */
  --ink-4:      #8A9EAF;          /* muted                                  */
  --ink-5:      #C2D0DC;          /* borders, placeholders                  */

  /* Gold — from calligraphy accents */
  --gold:       #B8851A;
  --gold-mid:   #C9942A;
  --gold-lt:    #DBA84A;
  --gold-bg:    rgba(185,133,26,0.07);
  --gold-line:  rgba(185,133,26,0.18);

  /* ── Typography ── */
  --f-display: 'Cormorant', Georgia, serif;
  --f-body:    'Jost', system-ui, sans-serif;

  /* ── Spacing ── */
  --sp-xs:  8px;  --sp-sm: 16px;  --sp-md: 32px;
  --sp-lg: 64px;  --sp-xl: 100px; --sp-2xl: 160px;

  /* ── Motion ── */
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in:    cubic-bezier(0.76, 0, 0.24, 1);
  --t-fast: 0.2s;  --t-mid: 0.45s;  --t-slow: 0.8s;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  background:var(--bg); color:var(--ink);
  font-family:var(--f-body); font-size:15px;
  line-height:1.75; font-weight:300;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  cursor:none;
}
/* No padding-top needed — header is in normal document flow */


img,svg,video { display:block; max-width:100%; }
a { color:inherit; text-decoration:none; }
button,input,textarea,select { font:inherit; border:none; background:none; outline:none; -webkit-appearance:none; }
button { cursor:none; }
ul,ol { list-style:none; }
h1,h2,h3,h4 { font-family:var(--f-display); font-weight:300; line-height:1; color:var(--ink); }

/* ── GLOBAL ──────────────────────────────────────────── */
::selection { background:rgba(59,130,196,0.15); color:var(--ink); }
::-webkit-scrollbar { width:4px; }
::-webkit-scrollbar-track { background:var(--bg); }
::-webkit-scrollbar-thumb { background:var(--blue-pale); border-radius:2px; }
:focus-visible { outline:1.5px solid var(--blue-mid); outline-offset:3px; }
a:focus:not(:focus-visible),button:focus:not(:focus-visible) { outline:none; }

/* ── NOISE ───────────────────────────────────────────── */
#vl-noise {
  position:fixed; inset:0; z-index:1; pointer-events:none; opacity:0.018;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:160px;
}

/* ── CURSOR ──────────────────────────────────────────── */
@media (pointer:fine) {
  body, a, button, [role=button], input, select, textarea, label,
  [data-atc], [data-gthumb], .vl-qty-btn, .vl-acc-trigger,
  .vl-nav__link, .vl-nav__icon, .vl-tabbar__item,
  .vl-pc, .vl-pc__img, .vl-gallery__cell,
  .vl-wa, .vl-wa__mob-pill { cursor:none !important; }
}
#vl-cur-o {
  position:fixed; top:0; left:0; width:28px; height:28px;
  border:1px solid rgba(59,130,196,0.3); border-radius:50%;
  pointer-events:none; z-index:99999; transform:translate(-50%,-50%);
  will-change:left,top;
  mix-blend-mode:normal;
  transition:width var(--t-mid) var(--ease),height var(--t-mid) var(--ease),border-color var(--t-fast),background var(--t-fast);
}
#vl-cur-i {
  position:fixed; top:0; left:0; width:4px; height:4px;
  background:var(--blue-mid); border-radius:50%;
  pointer-events:none; z-index:99999; transform:translate(-50%,-50%);
  will-change:left,top;
}
body.vl-hov #vl-cur-o { width:44px; height:44px; background:var(--blue-ghost); border-color:rgba(59,130,196,0.15); }
body.vl-clk #vl-cur-o { width:18px; height:18px; }
@media (pointer:coarse) { #vl-cur-o,#vl-cur-i { display:none; } }

/* ── LAYOUT ──────────────────────────────────────────── */
.vl-wrap { max-width:1240px; margin:0 auto; padding:0 52px; }
@media (max-width:900px) { .vl-wrap { padding:0 28px; } }
@media (max-width:480px) { .vl-wrap { padding:0 18px; } }
.vl-sec    { padding:var(--sp-xl) 0; }
.vl-sec-sm { padding:var(--sp-lg) 0; }
.vl-sec-lg { padding:var(--sp-2xl) 0; }

/* ── TYPOGRAPHY ──────────────────────────────────────── */
.vl-kicker {
  font-family:var(--f-body); font-size:10px; font-weight:400;
  letter-spacing:0.28em; text-transform:uppercase; color:var(--blue-mid);
}
.vl-headline {
  font-family:var(--f-display); font-size:clamp(36px,5.5vw,72px);
  font-weight:300; line-height:1; color:var(--ink);
}
.vl-headline em { font-style:italic; color:var(--blue-mid); }
.vl-title { font-family:var(--f-display); font-size:clamp(26px,3.5vw,48px); font-weight:300; line-height:1.1; color:var(--ink); }
.vl-body  { font-size:15px; line-height:1.85; color:var(--ink-3); font-weight:300; }
.vl-caption { font-size:10px; font-weight:400; letter-spacing:0.22em; text-transform:uppercase; color:var(--ink-4); }
.vl-arabic { font-family:var(--f-display); font-size:1.1em; }

/* ── BUTTONS ─────────────────────────────────────────── */
.vl-btn-primary {
  display:inline-flex; align-items:center; gap:10px;
  padding:16px 40px; background:var(--blue-deep); color:var(--white);
  font-family:var(--f-body); font-size:11px; font-weight:400;
  letter-spacing:0.2em; text-transform:uppercase;
  position:relative; overflow:hidden;
  transition:letter-spacing var(--t-slow) var(--ease);
}
.vl-btn-primary::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, var(--blue-mid), var(--blue-sky));
  transform:scaleX(0); transform-origin:left;
  transition:transform var(--t-slow) var(--ease-in);
}
.vl-btn-primary > * { position:relative; z-index:1; }
.vl-btn-primary:hover::before { transform:scaleX(1); }
.vl-btn-primary:hover { letter-spacing:0.26em; }

.vl-btn-outline {
  display:inline-flex; align-items:center; gap:10px;
  padding:15px 32px; border:1px solid var(--blue-mid); color:var(--blue-deep);
  font-family:var(--f-body); font-size:11px; font-weight:400;
  letter-spacing:0.2em; text-transform:uppercase;
  transition:background var(--t-fast),color var(--t-fast),letter-spacing var(--t-slow) var(--ease);
}
.vl-btn-outline:hover { background:var(--blue-deep); color:var(--white); letter-spacing:0.26em; }

/* Add to cart */
.vl-atc {
  width:100%; padding:18px 28px;
  background:var(--blue-deep); color:var(--white);
  font-family:var(--f-body); font-size:11px; font-weight:400;
  letter-spacing:0.2em; text-transform:uppercase;
  display:flex; align-items:center; justify-content:space-between;
  position:relative; overflow:hidden;
  transition:letter-spacing var(--t-slow) var(--ease);
}
.vl-atc::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, var(--blue-mid), var(--blue-sky));
  transform:scaleX(0); transform-origin:left;
  transition:transform var(--t-slow) var(--ease-in); z-index:0;
}
.vl-atc > * { position:relative; z-index:1; }
.vl-atc:hover::before { transform:scaleX(1); }
.vl-atc:hover { letter-spacing:0.26em; }
.vl-atc:disabled { background:var(--ink-5); cursor:not-allowed; letter-spacing:0.2em; }
.vl-atc:disabled::before { display:none; }
.vl-atc.added { background:var(--blue-sky); letter-spacing:0.2em; }
.vl-atc.added::before { display:none; }
.vl-atc-icon {
  width:28px; height:28px; border:1px solid rgba(255,255,255,0.3); border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-size:17px; line-height:1;
  flex-shrink:0; transition:transform var(--t-mid) var(--ease);
}
.vl-atc:hover .vl-atc-icon { transform:rotate(45deg); }

/* Text link */
.vl-link {
  font-size:11px; font-weight:400; letter-spacing:0.2em; text-transform:uppercase;
  color:var(--blue-mid); display:inline-flex; align-items:center; gap:8px;
  position:relative;
}
.vl-link::after { content:'→'; transition:transform var(--t-fast) var(--ease); }
.vl-link:hover::after { transform:translateX(4px); }

/* ── FORMS ───────────────────────────────────────────── */
.vl-inp { width:100%; padding:14px 16px; background:var(--surface); border:1px solid var(--ink-5); color:var(--ink); font-family:var(--f-body); font-size:14px; font-weight:300; transition:border-color var(--t-fast),box-shadow var(--t-fast); }
.vl-inp:focus { border-color:var(--blue-mid); box-shadow:0 0 0 3px rgba(59,130,196,0.08); }
.vl-inp::placeholder { color:var(--ink-4); }
textarea.vl-inp { resize:vertical; min-height:120px; }
.vl-inp-lbl { display:block; font-size:10px; font-weight:400; letter-spacing:0.2em; text-transform:uppercase; color:var(--ink-3); margin-bottom:8px; }
.vl-select { width:100%; padding:14px 36px 14px 16px; background:var(--surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 4.5L11 1' stroke='%235A6D82' stroke-width='1.4' fill='none'/%3E%3C/svg%3E") no-repeat right 14px center; border:1px solid var(--ink-5); color:var(--ink); font-family:var(--f-body); font-size:14px; appearance:none; transition:border-color var(--t-fast); }
.vl-select:focus { border-color:var(--blue-mid); }

/* ── IMAGE SLOTS ─────────────────────────────────────── */
.vl-img { position:relative; overflow:hidden; background:var(--bg-card); }
.vl-img img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform var(--t-slow) var(--ease); opacity:1; }
.vl-img img.loaded { opacity:1; }
.vl-img:hover img { transform:scale(1.04); }
.vl-img-ph { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; }
.vl-img-ph svg { width:28px; height:28px; stroke:var(--ink-5); fill:none; stroke-width:1.2; }
.vl-img-ph span { font-size:10px; letter-spacing:0.18em; text-transform:uppercase; color:var(--ink-5); font-weight:400; text-align:center; line-height:1.6; }
.vl-img img ~ .vl-img-ph { display:none; }

/* ── DIVIDERS ────────────────────────────────────────── */
.vl-rule      { height:1px; background:rgba(59,130,196,0.12); border:none; margin:0; }
.vl-rule-gold { background:linear-gradient(90deg,transparent,var(--gold-line),transparent); }

/* ── ACCORDION ───────────────────────────────────────── */
.vl-acc { border-top:1px solid rgba(59,130,196,0.12); }
.vl-acc-item { border-bottom:1px solid rgba(59,130,196,0.12); }
.vl-acc-trigger { width:100%; display:flex; align-items:center; justify-content:space-between; padding:18px 0; font-size:11px; font-weight:400; letter-spacing:0.18em; text-transform:uppercase; color:var(--ink-3); transition:color var(--t-fast); }
.vl-acc-trigger:hover { color:var(--blue-deep); }
.vl-acc-icon { width:16px; height:16px; position:relative; flex-shrink:0; }
.vl-acc-icon::before,.vl-acc-icon::after { content:''; position:absolute; top:50%; left:50%; background:currentColor; transition:transform var(--t-fast),opacity var(--t-fast); }
.vl-acc-icon::before { width:10px; height:1px; transform:translate(-50%,-50%); }
.vl-acc-icon::after  { width:1px; height:10px; transform:translate(-50%,-50%); }
.vl-acc-item.open .vl-acc-icon::after { opacity:0; transform:translate(-50%,-50%) rotate(90deg); }
.vl-acc-body { overflow:hidden; max-height:0; transition:max-height var(--t-slow) var(--ease),padding var(--t-slow); font-size:14px; line-height:1.85; color:var(--ink-3); font-weight:300; }
.vl-acc-item.open .vl-acc-body { max-height:600px; padding-bottom:22px; }

/* ── SCENT NOTES ─────────────────────────────────────── */
.vl-notes { display:flex; flex-direction:column; }
.vl-note { display:flex; align-items:center; gap:16px; padding:13px 0; border-bottom:1px solid rgba(59,130,196,0.1); transition:border-color var(--t-fast); }
.vl-note:hover { border-color:var(--blue-sky); }
.vl-note-lbl { font-size:10px; font-weight:400; letter-spacing:0.2em; text-transform:uppercase; color:var(--ink-4); width:48px; flex-shrink:0; }
.vl-note-val { font-size:13px; color:var(--ink-2); flex:1; font-weight:300; }
.vl-note-bar { width:14px; height:1px; background:var(--blue-pale); flex-shrink:0; transition:background var(--t-fast),width var(--t-mid) var(--ease); }
.vl-note:hover .vl-note-bar { background:var(--blue-mid); width:22px; }

/* ── QTY ─────────────────────────────────────────────── */
.vl-qty { display:inline-flex; align-items:center; border:1px solid var(--ink-5); }
.vl-qty-btn { width:40px; height:40px; display:flex; align-items:center; justify-content:center; font-size:16px; color:var(--ink-3); transition:color var(--t-fast),background var(--t-fast); }
.vl-qty-btn:hover { color:var(--blue-deep); background:var(--bg-alt); }
.vl-qty-inp { width:46px; height:40px; text-align:center; background:transparent; color:var(--ink); font-size:13px; font-weight:400; border-left:1px solid var(--ink-5); border-right:1px solid var(--ink-5); }
.vl-qty-inp::-webkit-inner-spin-button,.vl-qty-inp::-webkit-outer-spin-button { -webkit-appearance:none; }

/* ── SCROLL REVEAL ───────────────────────────────────── */
.vl-up   { opacity:0; transform:translateY(22px); transition:opacity var(--t-slow) var(--ease),transform var(--t-slow) var(--ease); }
.vl-left { opacity:0; transform:translateX(-22px); transition:opacity var(--t-slow) var(--ease),transform var(--t-slow) var(--ease); }
.vl-fade { opacity:0; transition:opacity var(--t-slow) var(--ease); }
.vl-up.in,.vl-left.in,.vl-fade.in { opacity:1; transform:none; }
.vl-d1 { transition-delay:0.08s!important; }
.vl-d2 { transition-delay:0.16s!important; }
.vl-d3 { transition-delay:0.24s!important; }
.vl-d4 { transition-delay:0.32s!important; }
.vl-d5 { transition-delay:0.40s!important; }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
/* Header wrapper — normal document flow, scrolls with page */
.vl-header-wrap {
  position: relative;
  z-index: 1;
}
.vl-nav {
  position: relative;
  height: 72px;
  background: rgba(248, 249, 252, 0.97);
  box-shadow: 0 1px 0 rgba(59,130,196,0.1), 0 2px 8px rgba(26,35,50,0.05);
  width: 100%;
}
.vl-nav__inner {
  display:grid; grid-template-columns:1fr auto 1fr;
  align-items:center; height:100%; padding:0 40px;
}
.vl-nav__wordmark {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.38em;
  padding-right: 0.38em;
  text-transform: uppercase;
  color: var(--ink);
  justify-self: center;
  white-space: nowrap;
  transition: color var(--t-fast);
}
.vl-nav__wordmark:hover { opacity:0.75; }
.vl-nav__left { display:flex; align-items:center; gap:4px; }
.vl-nav__right { display:flex; align-items:center; justify-content:flex-end; gap:2px; }
.vl-nav__link {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-4);
  padding: 10px 12px;
  position: relative;
  transition: color var(--t-fast);
}
.vl-nav__link::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 12px; right: 12px;
  height: 1px;
  background: var(--blue-mid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid) var(--ease);
}
.vl-nav__link:hover, .vl-nav__link.active { color: var(--ink); }
.vl-nav__link:hover::after, .vl-nav__link.active::after { transform: scaleX(1); }
.vl-nav__icons { display:flex; align-items:center; margin-left:6px; }
.vl-nav__icon { width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--ink-3); position:relative; transition:color var(--t-fast),background var(--t-fast); }
.vl-nav__icon:hover { color:var(--blue-mid); background:var(--blue-ghost); }
.vl-nav__icon svg { width:17px; height:17px; }
.vl-nav__badge { position:absolute; top:5px; right:4px; width:14px; height:14px; border-radius:50%; background:var(--gold-mid); color:#fff; font-size:8px; font-weight:500; font-family:var(--f-body); display:flex; align-items:center; justify-content:center; opacity:0; transform:scale(0); transition:opacity var(--t-fast),transform var(--t-fast) var(--ease-back); }
.vl-nav__badge.on { opacity:1; transform:scale(1); }

/* No scrolled state — header is not fixed */

@media (max-width:860px) { .vl-nav__left,.vl-nav__right .vl-nav__link { display:none; } }

/* ── MOBILE TABBAR ───────────────────────────────────── */
.vl-tabbar { display:none; position:fixed; bottom:0; left:0; right:0; z-index:600; background:rgba(248,249,252,0.97);  border-top:1px solid rgba(59,130,196,0.1); padding:7px 0 max(8px,env(safe-area-inset-bottom)); }
.vl-tabbar-inner { display:flex; justify-content:space-around; align-items:center; }
.vl-tabbar__item { flex:1; display:flex; flex-direction:column; align-items:center; gap:4px; padding:6px 10px; color:var(--ink-4); font-size:9px; font-weight:400; letter-spacing:0.1em; text-transform:uppercase; position:relative; transition:color var(--t-fast); -webkit-tap-highlight-color:transparent; }
.vl-tabbar__item.active { color:var(--blue-mid); }
.vl-tabbar__item svg { width:21px; height:21px; stroke:currentColor; fill:none; stroke-width:1.4; stroke-linecap:round; stroke-linejoin:round; }
.vl-tabbar__badge { position:absolute; top:3px; right:calc(50% - 16px); width:14px; height:14px; border-radius:50%; background:var(--gold-mid); color:#fff; font-size:7px; font-weight:500; display:flex; align-items:center; justify-content:center; opacity:0; transform:scale(0); transition:opacity var(--t-fast),transform var(--t-fast) var(--ease-back); }
.vl-tabbar__badge.on { opacity:1; transform:scale(1); }
@media (max-width:768px) { .vl-tabbar { display:block; } body { padding-bottom:70px; } }

/* ══════════════════════════════════════════════════════════
   HERO — Full bleed, cinematic, ELORA bottle center-stage
══════════════════════════════════════════════════════════ */
  filter:drop-shadow(0 40px 60px rgba(59,130,196,0.25)) drop-shadow(0 20px 30px rgba(26,35,50,0.15));
}
.vl-hero__bottle img {
  width:100%; height:auto;
  transition:opacity 0.6s;
}
/* Reflection */
.vl-hero__bottle-shadow {
  position:absolute; bottom:-30px; left:50%; transform:translateX(-50%);
  width:60%; height:20px;
  background:radial-gradient(ellipse, rgba(59,130,196,0.2) 0%, transparent 70%);
  filter:blur(8px);
  animation:shadowPulse 6s ease-in-out infinite;
}
@keyframes bottleFloat {
  0%,100% { transform:translateY(0) rotate(0.3deg); }
  50%      { transform:translateY(-16px) rotate(-0.3deg); }
}
@keyframes shadowPulse {
  0%,100% { transform:translateX(-50%) scaleX(1); opacity:0.8; }
  50%      { transform:translateX(-50%) scaleX(0.7); opacity:0.4; }
}
/* No image placeholder */
.vl-hero__bottle-ph {
  width:65%; max-width:320px; aspect-ratio:3/4;
  display:flex; align-items:center; justify-content:center;
  position:relative; z-index:1;
}
.vl-hero__bottle-ph svg { width:100%; height:100%; }
/* Scroll cue */
.vl-hero__scroll { position:absolute; bottom:32px; right:48px; display:flex; flex-direction:column; align-items:center; gap:9px; z-index:3; opacity:0.45; }
.vl-hero__scroll-word { writing-mode:vertical-rl; font-size:9px; font-weight:400; letter-spacing:0.22em; text-transform:uppercase; color:var(--ink-4); }
.vl-hero__scroll-track { width:1px; height:48px; background:var(--ink-5); position:relative; overflow:hidden; }
.vl-hero__scroll-fill { position:absolute; top:0; left:0; width:100%; height:30%; background:var(--blue-mid); animation:scrollDrop 2.4s ease infinite; }
@keyframes scrollDrop { 0%{top:-30%;height:30%} 50%{top:60%;height:40%} 100%{top:110%;height:30%} }

@media (max-width:1024px) {
  .vl-hero { grid-template-columns:1fr; }
  .vl-hero__right { height:60vw; min-height:280px; order:-1; }
  .vl-hero__left  { padding:48px 28px 56px; }
  .vl-hero__left::after { display:none; }
  .vl-hero__scroll { display:none; }
}
@media (max-width:640px) {
  .vl-hero__left { padding:36px 18px 44px; }
  .vl-hero__ctas { flex-direction:column; align-items:flex-start; }
  .vl-hero__ctas .vl-btn-primary, .vl-hero__ctas .vl-btn-outline { width:100%; justify-content:center; }
}

/* ══════════════════════════════════════════════════════════
   TICKER
══════════════════════════════════════════════════════════ */
.vl-ticker { overflow:hidden; white-space:nowrap; background:var(--blue-deep); padding:10px 0; position:relative; }
.vl-ticker::before,.vl-ticker::after { content:''; position:absolute; top:0; bottom:0; width:60px; z-index:2; pointer-events:none; }
.vl-ticker::before { left:0; background:linear-gradient(to right,var(--blue-deep),transparent); }
.vl-ticker::after  { right:0; background:linear-gradient(to left,var(--blue-deep),transparent); }
.vl-ticker-inner { display:inline-flex; animation:tick 30s linear infinite; }
.vl-ticker:hover .vl-ticker-inner { animation-play-state:paused; }
.vl-ticker-seg { display:inline-flex; align-items:center; gap:18px; padding:0 18px; font-size:10px; font-weight:400; letter-spacing:0.22em; text-transform:uppercase; color:rgba(255,255,255,0.45); }
.vl-ticker-dot { width:2px; height:2px; border-radius:50%; background:var(--gold-lt); flex-shrink:0; }
.vl-ticker-seg em { color:rgba(255,255,255,0.75); font-style:normal; }
@keyframes tick { to { transform:translateX(-50%); } }

/* ══════════════════════════════════════════════════════════
   PRODUCT SECTION — single product focus
══════════════════════════════════════════════════════════ */
.vl-product { background:var(--white); padding:0; }
.vl-product__inner { display:grid; grid-template-columns:52% 1fr; min-height:85vh; }

/* Images */
.vl-product__images { display:grid; grid-template-columns:1fr 1fr; grid-template-rows:1fr 1fr; gap:3px; background:rgba(59,130,196,0.06); }
.vl-product__img-main { grid-column:1; grid-row:1/3; position:relative; overflow:hidden; background:var(--bg-alt); }
.vl-product__img-a    { position:relative; overflow:hidden; background:var(--bg-alt); }
.vl-product__img-b    { position:relative; overflow:hidden; background:var(--bg-alt); }
.vl-product__img-main img,.vl-product__img-a img,.vl-product__img-b img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform var(--t-slow) var(--ease),opacity 0.5s; opacity:0; }
.vl-product__img-main img.loaded,.vl-product__img-a img.loaded,.vl-product__img-b img.loaded { opacity:1; }
.vl-product__img-main:hover img,.vl-product__img-a:hover img,.vl-product__img-b:hover img { transform:scale(1.04); }
.vl-product__img-main svg,.vl-product__img-a svg,.vl-product__img-b svg { position:absolute; inset:0; width:100%; height:100%; }

/* Info */
.vl-product__info { padding:60px 52px; display:flex; flex-direction:column; justify-content:center; background:var(--surface); }
.vl-product__kicker { margin-bottom:12px; }
.vl-product__brand { font-family:var(--f-display); font-size:13px; font-weight:300; letter-spacing:0.4em; text-transform:uppercase; color:var(--ink-4); margin-bottom:4px; }
.vl-product__name { font-family:var(--f-display); font-size:clamp(44px,5vw,72px); font-weight:300; line-height:0.92; letter-spacing:0.08em; color:var(--ink); margin-bottom:6px; }
.vl-product__name-ar { font-family:var(--f-display); font-size:clamp(22px,2.5vw,36px); font-weight:300; color:var(--blue-sky); letter-spacing:0.04em; margin-bottom:24px; direction:rtl; }
.vl-product__rule { height:1px; background:rgba(59,130,196,0.1); margin-bottom:24px; }
.vl-product__desc { font-size:14px; line-height:1.85; color:var(--ink-3); font-weight:300; max-width:380px; margin-bottom:24px; }
.vl-product__notes { margin-bottom:24px; }
.vl-product__price-row { display:flex; align-items:baseline; justify-content:space-between; margin-bottom:18px; }
.vl-product__price { font-family:var(--f-display); font-size:38px; font-weight:300; color:var(--ink); line-height:1; }
.vl-product__price-sub { font-size:10px; font-weight:400; letter-spacing:0.18em; text-transform:uppercase; color:var(--ink-4); }
.vl-product__trust { display:flex; margin-top:14px; border:1px solid rgba(59,130,196,0.12); }
.vl-product__trust-item { flex:1; padding:10px 8px; border-right:1px solid rgba(59,130,196,0.12); font-size:9px; font-weight:400; letter-spacing:0.13em; text-transform:uppercase; color:var(--ink-4); text-align:center; transition:background var(--t-fast),color var(--t-fast); }
.vl-product__trust-item:last-child { border-right:none; }
.vl-product__trust-item:hover { background:var(--bg-alt); color:var(--blue-deep); }

@media (max-width:1024px) {
  .vl-product__inner { grid-template-columns:1fr; }
  .vl-product__images { min-height:65vw; grid-template-columns:2fr 1fr; }
  .vl-product__img-main { grid-row:1/3; }
  .vl-product__info { padding:44px 28px; }
}
@media (max-width:640px) {
  .vl-product__images { grid-template-columns:1fr; grid-template-rows:60vw 30vw 30vw; }
  .vl-product__img-a,.vl-product__img-b { grid-column:1; }
  .vl-product__info { padding:36px 18px; }
  .vl-product__trust { flex-direction:column; }
  .vl-product__trust-item { border-right:none; border-bottom:1px solid rgba(59,130,196,0.12); }
  .vl-product__trust-item:last-child { border-bottom:none; }
}

/* ══════════════════════════════════════════════════════════
   BRAND STATEMENT
══════════════════════════════════════════════════════════ */
.vl-stmt {
  background:var(--bg-alt); padding:80px 0;
  border-top:1px solid rgba(59,130,196,0.08);
  border-bottom:1px solid rgba(59,130,196,0.08);
  position:relative; overflow:hidden;
  z-index: 0;
}
.vl-stmt::before { content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:500px; height:400px; background:radial-gradient(ellipse,rgba(59,130,196,0.05) 0%,transparent 65%); pointer-events:none; }
.vl-stmt__inner { max-width:720px; margin:0 auto; text-align:center; padding:0 48px; position:relative; z-index:1; }
.vl-stmt__label { display:flex; align-items:center; justify-content:center; gap:14px; margin-bottom:22px; }
.vl-stmt__line { width:20px; height:1px; background:var(--blue-pale); }
.vl-stmt__quote { font-family:var(--f-display); font-style:italic; font-size:clamp(21px,2.8vw,36px); font-weight:300; color:var(--ink); line-height:1.5; letter-spacing:0.02em; }
.vl-stmt__attr { display:block; margin-top:18px; font-size:10px; font-weight:400; letter-spacing:0.22em; text-transform:uppercase; color:var(--ink-4); }
@media (max-width:640px) { .vl-stmt__inner { padding:0 16px; } }

/* ══════════════════════════════════════════════════════════
   GALLERY — packaging & detail shots
══════════════════════════════════════════════════════════ */
.vl-gallery {
  background:linear-gradient(160deg, var(--blue-deep) 0%, #0D3D75 100%);
  padding:0; overflow:hidden;
}
.vl-gallery__header { display:flex; align-items:flex-end; justify-content:space-between; gap:36px; padding-top:56px; padding-bottom:40px; }
.vl-gallery__header .vl-headline { color:rgba(255,255,255,0.92); }
.vl-gallery__header .vl-headline em { color:var(--gold-lt); }
.vl-gallery__header .vl-kicker { color:var(--gold-lt); }
.vl-gallery__header .vl-body { color:rgba(255,255,255,0.4); max-width:260px; }
.vl-gallery__grid { display:grid; grid-template-columns:1.1fr 1fr 1fr; grid-template-rows:380px 380px; gap:3px; background:rgba(255,255,255,0.04); }
.vl-gallery__cell--tall { grid-row:1/3; }
.vl-gallery__cell { position:relative; overflow:hidden; background:rgba(255,255,255,0.03); cursor:none; }
.vl-gallery__cell img,
.vl-gallery__cell > svg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform var(--t-slow) var(--ease); }
.vl-gallery__cell:hover img,
.vl-gallery__cell:hover > svg { transform:scale(1.04); }
/* Corner brackets */
.vl-gallery__cell::before,.vl-gallery__cell::after { content:''; position:absolute; width:16px; height:16px; z-index:4; opacity:0; transition:opacity var(--t-mid) var(--ease); pointer-events:none; }
.vl-gallery__cell::before { top:12px; left:12px; border-top:1px solid rgba(201,148,42,0.6); border-left:1px solid rgba(201,148,42,0.6); }
.vl-gallery__cell::after  { bottom:12px; right:12px; border-bottom:1px solid rgba(201,148,42,0.6); border-right:1px solid rgba(201,148,42,0.6); }
.vl-gallery__cell:hover::before,.vl-gallery__cell:hover::after { opacity:1; }
.vl-gallery__caption { position:absolute; bottom:0; left:0; right:0; padding:40px 20px 18px; background:linear-gradient(to top,rgba(10,25,50,0.75) 0%,transparent 100%); font-size:10px; font-weight:400; letter-spacing:0.2em; text-transform:uppercase; color:rgba(255,255,255,0.55); transform:translateY(6px); opacity:0; transition:opacity var(--t-mid) var(--ease),transform var(--t-mid) var(--ease); }
.vl-gallery__cell:hover .vl-gallery__caption { opacity:1; transform:translateY(0); }
@media (max-width:1024px) { .vl-gallery__grid { grid-template-columns:1fr 1fr; grid-template-rows:300px 300px 300px; } .vl-gallery__cell--tall { grid-column:1/3; grid-row:1; } .vl-gallery__header { flex-direction:column; align-items:flex-start; gap:14px; } }
@media (max-width:640px) { .vl-gallery__grid { grid-template-columns:1fr; grid-template-rows:repeat(4,240px); } .vl-gallery__cell--tall { grid-column:1; grid-row:1; } }

/* ══════════════════════════════════════════════════════════
   BRAND STORY
══════════════════════════════════════════════════════════ */
.vl-story { background:var(--surface); }
.vl-story__inner { display:grid; grid-template-columns:1fr 1.4fr; gap:72px; align-items:center; padding:var(--sp-xl) 0; }
.vl-story__img { height:500px; position:relative; overflow:hidden; }
.vl-story__img::after { content:''; position:absolute; inset:14px; border:1px solid rgba(59,130,196,0.1); pointer-events:none; z-index:2; transition:inset var(--t-slow) var(--ease),border-color var(--t-slow); }
.vl-story__img:hover::after { inset:6px; border-color:rgba(59,130,196,0.2); }
.vl-story__kicker { margin-bottom:14px; }
.vl-story__title  { margin-bottom:20px; }
.vl-story__quote { font-family:var(--f-display); font-style:italic; font-size:clamp(17px,1.9vw,24px); font-weight:300; color:var(--ink); border-left:2px solid var(--blue-pale); padding-left:20px; margin-bottom:22px; line-height:1.5; }
.vl-story__body  { font-size:14px; line-height:1.9; color:var(--ink-3); font-weight:300; margin-bottom:26px; }
@media (max-width:1024px) { .vl-story__inner { grid-template-columns:1fr; gap:36px; } .vl-story__img { height:56vw; } }

/* ══════════════════════════════════════════════════════════
   FULL QUOTE
══════════════════════════════════════════════════════════ */
.vl-quote {
  background:linear-gradient(160deg, var(--blue-deep) 0%, #0D3D75 100%);
  padding:110px 0; text-align:center; position:relative; overflow:hidden;
}
.vl-quote::after { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 50% 50%, rgba(107,179,224,0.08) 0%, transparent 62%); pointer-events:none; }
.vl-quote__l1 { display:block; font-family:var(--f-display); font-style:italic; font-size:clamp(26px,4.5vw,58px); font-weight:300; color:rgba(255,255,255,0.9); line-height:1.35; position:relative; z-index:1; }
.vl-quote__l2 { display:block; font-family:var(--f-display); font-style:italic; font-size:clamp(26px,4.5vw,58px); font-weight:300; color:rgba(255,255,255,0.25); line-height:1.35; position:relative; z-index:1; }
.vl-quote__attr { display:block; margin-top:26px; font-size:10px; font-weight:400; letter-spacing:0.22em; text-transform:uppercase; color:rgba(255,255,255,0.2); position:relative; z-index:1; }

/* ══════════════════════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════════════════════ */
.vl-nl { background:var(--bg); padding:var(--sp-xl) 0; border-top:1px solid rgba(59,130,196,0.08); }
.vl-nl__inner { max-width:520px; margin:0 auto; text-align:center; padding:0 24px; }
.vl-nl__kicker { margin-bottom:14px; }
.vl-nl__title  { margin-bottom:10px; }
.vl-nl__sub    { font-size:14px; font-weight:300; color:var(--ink-3); margin-bottom:36px; line-height:1.75; }
.vl-nl__form { display:flex; border:1px solid var(--ink-5); transition:border-color var(--t-fast),box-shadow var(--t-fast); }
.vl-nl__form:focus-within { border-color:var(--blue-mid); box-shadow:0 0 0 3px rgba(59,130,196,0.08); }
.vl-nl__inp { flex:1; padding:15px 18px; background:var(--surface); color:var(--ink); font-family:var(--f-body); font-size:13px; font-weight:300; border:none; outline:none; }
.vl-nl__inp::placeholder { color:var(--ink-4); }
.vl-nl__btn { padding:15px 22px; background:var(--blue-deep); color:#fff; font-family:var(--f-body); font-size:10px; font-weight:400; letter-spacing:0.2em; text-transform:uppercase; white-space:nowrap; transition:background var(--t-fast); }
.vl-nl__btn:hover { background:var(--blue-mid); }
.vl-nl__ok { font-size:10px; font-weight:400; letter-spacing:0.2em; text-transform:uppercase; color:var(--blue-mid); margin-top:14px; min-height:16px; opacity:0; transition:opacity 0.5s; }
.vl-nl__ok.show { opacity:1; }
@media (max-width:480px) { .vl-nl__form { flex-direction:column; } .vl-nl__btn { padding:14px; text-align:center; } }

/* ══════════════════════════════════════════════════════════
   WHATSAPP
══════════════════════════════════════════════════════════ */
.vl-wa-wrap { position:fixed; bottom:26px; right:24px; z-index:5500; display:flex; flex-direction:column; align-items:flex-end; gap:8px; pointer-events:none; }
.vl-wa { position:relative; display:flex; align-items:center; pointer-events:all; text-decoration:none; }
.vl-wa__icon { width:52px; height:52px; border-radius:50%; background:#22C55E; display:flex; align-items:center; justify-content:center; flex-shrink:0; position:relative; z-index:1; transition:transform var(--t-fast) var(--ease),background var(--t-fast),box-shadow var(--t-fast); box-shadow:0 4px 14px rgba(34,197,94,0.3),0 8px 28px rgba(26,35,50,0.15); cursor:pointer; }
.vl-wa__icon svg { width:26px; height:26px; display:block; }
.vl-wa__pulse { position:absolute; inset:-7px; border-radius:50%; border:2px solid rgba(34,197,94,0.22); animation:waPulse 3s ease-out infinite; pointer-events:none; }
@keyframes waPulse { 0%{transform:scale(1);opacity:.7;} 65%{transform:scale(1.55);opacity:0;} 100%{transform:scale(1.55);opacity:0;} }
.vl-wa__dot { position:absolute; top:1px; right:1px; width:15px; height:15px; border-radius:50%; background:#fff; border:2.5px solid #22C55E; font-size:8px; font-weight:700; color:#22C55E; font-family:var(--f-body); display:flex; align-items:center; justify-content:center; opacity:0; transform:scale(0); transition:opacity .3s,transform .3s var(--ease-back); pointer-events:none; z-index:2; }
.vl-wa__dot.on { opacity:1; transform:scale(1); }
.vl-wa__lbl { position:absolute; right:52px; top:50%; transform:translateY(-50%); background:#22C55E; color:#fff; font-family:var(--f-body); font-size:12px; font-weight:400; letter-spacing:0.06em; white-space:nowrap; padding:0 20px 0 16px; height:40px; border-radius:20px 0 0 20px; display:flex; align-items:center; max-width:0; overflow:hidden; opacity:0; pointer-events:none; transition:max-width .45s var(--ease),opacity .35s; }
.vl-wa:hover .vl-wa__icon { transform:scale(1.08); background:#16A34A; box-shadow:0 0 0 6px rgba(34,197,94,0.1),0 6px 18px rgba(34,197,94,0.35); }
.vl-wa:hover .vl-wa__lbl { max-width:180px; opacity:1; pointer-events:all; }
.vl-wa__mob-pill { display:none; align-items:center; gap:8px; background:#22C55E; color:#fff; font-family:var(--f-body); font-size:11px; font-weight:500; letter-spacing:0.1em; text-transform:uppercase; padding:9px 18px; border-radius:100px; white-space:nowrap; text-decoration:none; pointer-events:all; box-shadow:0 4px 14px rgba(34,197,94,0.3); transition:background var(--t-fast),transform var(--t-fast) var(--ease); animation:pillIn .5s var(--ease-back) 3s both; }
.vl-wa__mob-pill:active { transform:scale(0.96); background:#16A34A; }
@keyframes pillIn { from{opacity:0;transform:translateY(10px) scale(0.9);} to{opacity:1;transform:none;} }
@media (max-width:768px) { .vl-wa-wrap { bottom:82px; right:14px; } .vl-wa__lbl { display:none; } .vl-wa__mob-pill { display:flex; } .vl-wa__icon { width:48px; height:48px; } .vl-wa__icon svg { width:24px; height:24px; } }

/* ══════════════════════════════════════════════════════════
   CART DRAWER
══════════════════════════════════════════════════════════ */
.vl-cart-overlay { position:fixed; inset:0; z-index:700; background:rgba(26,35,50,0.25); backdrop-filter:blur(8px); opacity:0; pointer-events:none; transition:opacity var(--t-mid); }
.vl-cart-overlay.open { opacity:1; pointer-events:all; }
.vl-cart-panel { position:fixed; top:0; right:0; bottom:0; width:420px; background:var(--surface); z-index:800; transform:translateX(100%); transition:transform .52s var(--ease-in); display:flex; flex-direction:column; box-shadow:-1px 0 0 rgba(59,130,196,0.08),-4px 0 32px rgba(26,35,50,0.08); overflow:hidden; }
.vl-cart-panel.open { transform:translateX(0); }
.vl-cart-head { padding:26px 28px; border-bottom:1px solid rgba(59,130,196,0.1); display:flex; align-items:center; justify-content:space-between; flex-shrink:0; position:relative; }
.vl-cart-head::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg,transparent,var(--blue-sky),transparent); }
.vl-cart-title { font-family:var(--f-display); font-size:21px; font-weight:300; color:var(--ink); letter-spacing:0.04em; }
.vl-cart-close { width:32px; height:32px; border:1px solid var(--ink-5); display:flex; align-items:center; justify-content:center; color:var(--ink-3); font-size:12px; transition:border-color var(--t-fast),color var(--t-fast),background var(--t-fast); }
.vl-cart-close:hover { border-color:var(--blue-mid); color:var(--blue-mid); background:var(--blue-ghost); }
.vl-cart-body {
  flex: 1;
  padding: 20px 28px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* iOS Safari momentum scrolling */
  scrollbar-width: thin;
  scrollbar-color: var(--bg-card) transparent;
  /* Prevent content from going under checkout button */
  padding-bottom: 28px;
}
.vl-cart-empty { font-family:var(--f-display); font-style:italic; font-size:20px; color:var(--ink-4); text-align:center; padding:60px 0; }
.vl-cart-item { display:flex; gap:16px; padding:18px 0; border-bottom:1px solid rgba(59,130,196,0.08); }
.vl-cart-thumb { width:66px; height:82px; background:var(--bg-alt); flex-shrink:0; overflow:hidden; }
.vl-cart-thumb img { width:100%; height:100%; object-fit:cover; }
.vl-cart-item-name { font-family:var(--f-display); font-size:17px; font-weight:300; color:var(--ink); margin-bottom:3px; }
.vl-cart-item-var  { font-size:10px; font-weight:400; letter-spacing:0.16em; text-transform:uppercase; color:var(--ink-4); margin-bottom:11px; }
.vl-cart-item-price { font-size:14px; color:var(--ink-2); font-weight:300; }
.vl-cart-item-rm   { font-size:10px; font-weight:400; letter-spacing:0.14em; text-transform:uppercase; color:var(--ink-4); transition:color var(--t-fast); }
.vl-cart-item-rm:hover { color:var(--blue-mid); }
.vl-cart-foot {
  padding: 18px 28px;
  border-top: 1px solid rgba(59,130,196,0.1);
  flex-shrink: 0; /* NEVER shrink — always visible */
  background: var(--surface); /* solid bg so nothing shows through */
}
.vl-cart-total { display:flex; justify-content:space-between; align-items:center; margin-bottom:6px; }
.vl-cart-total-lbl { font-size:10px; font-weight:400; letter-spacing:0.18em; text-transform:uppercase; color:var(--ink-4); }
.vl-cart-total-val { font-family:var(--f-display); font-size:25px; font-weight:300; color:var(--ink); }
.vl-cart-note { font-size:11px; color:var(--ink-4); margin-bottom:14px; line-height:1.5; font-weight:300; }
.vl-cart-ck {
  width: 100%;
  padding: 18px 24px;
  min-height: 52px; /* large enough tap target on mobile */
  background: var(--blue-deep);
  color: #fff;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--t-fast), letter-spacing var(--t-slow) var(--ease);
  -webkit-tap-highlight-color: transparent; /* remove iOS tap flash */
  cursor: pointer;
}
.vl-cart-ck:hover { background:var(--blue-mid); letter-spacing:0.24em; }
@media (max-width:640px) { .vl-cart-panel { width:100%; } }

/* ══════════════════════════════════════════════════════════
   SHOP / COLLECTION
══════════════════════════════════════════════════════════ */
.vl-coll { background:var(--bg); min-height:80vh; }
.vl-coll__hd { padding:36px 0 28px; border-bottom:1px solid rgba(59,130,196,0.1); margin-bottom:28px; }
.vl-coll__hd-inner { display:flex; align-items:flex-end; justify-content:space-between; gap:20px; }
.vl-coll__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:3px; padding-bottom:var(--sp-xl); }
.vl-pc { background:var(--surface); position:relative; overflow:hidden; transition:background var(--t-mid); display:flex; flex-direction:column; }
.vl-pc:hover { background:var(--bg-alt); }
.vl-pc__img {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 133%; /* 3:4 ratio = 133% */
  overflow: hidden;
  background: var(--bg-card);
}
.vl-pc__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
  opacity: 1;
  display: block;
}
.vl-pc__img img.loaded { opacity:1; }
.vl-pc:hover .vl-pc__img img { transform:scale(1.05); }
.vl-pc__quick { position:absolute; bottom:0; left:0; right:0; padding:12px 14px; background:linear-gradient(to top,rgba(26,35,50,0.55) 0%,transparent 100%); transform:translateY(100%); transition:transform var(--t-mid) var(--ease); }
.vl-pc__img:hover .vl-pc__quick { transform:translateY(0); }
.vl-pc__quick-btn { width:100%; padding:10px; background:rgba(248,249,252,0.95); color:var(--ink); font-family:var(--f-body); font-size:10px; font-weight:400; letter-spacing:0.18em; text-transform:uppercase; transition:background var(--t-fast),color var(--t-fast); }
.vl-pc__quick-btn:hover { background:var(--blue-deep); color:#fff; }
.vl-pc__info { padding:17px 18px 22px; }
.vl-pc__tag { font-size:9px; font-weight:400; letter-spacing:0.2em; text-transform:uppercase; color:var(--blue-mid); display:block; margin-bottom:5px; }
.vl-pc__name { font-family:var(--f-display); font-size:21px; font-weight:300; color:var(--ink); margin-bottom:3px; }
.vl-pc__accord { font-family:var(--f-display); font-style:italic; font-size:13px; color:var(--ink-4); margin-bottom:12px; }
.vl-pc__price-row { display:flex; align-items:center; justify-content:space-between; }
.vl-pc__price { font-family:var(--f-display); font-size:21px; font-weight:300; color:var(--ink); }
.vl-pc__mini { width:34px; height:34px; border:1px solid var(--blue-mid); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:18px; color:var(--blue-deep); transition:border-color var(--t-fast),color var(--t-fast),transform var(--t-fast) var(--ease),background var(--t-fast); flex-shrink:0; }
.vl-pc__mini:hover { border-color:var(--blue-mid); color:var(--blue-deep); transform:rotate(90deg); background:var(--blue-ghost); }
@media (max-width:1024px) { .vl-coll__grid { grid-template-columns:1fr 1fr; } }
@media (max-width:480px)  { .vl-coll__grid { grid-template-columns:1fr; } }

/* ══════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
══════════════════════════════════════════════════════════ */
.vl-pdp { background:var(--bg); min-height:90vh; }
.vl-pdp__layout { display:grid; grid-template-columns:1fr 1fr; min-height:90vh; }
.vl-pdp__gal { position:relative; top:0; height:70vh; min-height:320px; background:var(--bg-card); overflow:hidden; }
.vl-pdp__gal-main { height:100%; position:relative; overflow:hidden; }
.vl-pdp__gal-main img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform var(--t-slow) var(--ease); opacity:1; }
.vl-pdp__gal-main img.loaded { opacity:1; }
.vl-pdp__gal-main:hover img { transform:scale(1.03); }
.vl-pdp__thumbs { position:absolute; bottom:20px; left:50%; transform:translateX(-50%); display:flex; gap:7px; z-index:2; }
.vl-pdp__thumb { width:7px; height:7px; border-radius:50%; border:none; background:rgba(255,255,255,0.3); transition:background var(--t-fast),transform var(--t-fast); }
.vl-pdp__thumb.active { background:rgba(255,255,255,0.85); transform:scale(1.3); }
.vl-pdp__info { padding:48px 52px 64px; display:flex; flex-direction:column; justify-content:flex-start; background:var(--surface); }
.vl-pdp__badge { margin-bottom:22px; }
.vl-pdp__brand { font-family:var(--f-display); font-size:12px; font-weight:300; letter-spacing:0.4em; text-transform:uppercase; color:var(--ink-4); margin-bottom:4px; }
.vl-pdp__name { font-family:var(--f-display); font-size:clamp(42px,5vw,70px); font-weight:300; line-height:0.92; letter-spacing:0.08em; color:var(--ink); margin-bottom:6px; }
.vl-pdp__name-ar { font-family:var(--f-display); font-size:clamp(20px,2.5vw,32px); font-weight:300; color:var(--blue-sky); letter-spacing:0.04em; margin-bottom:24px; direction:rtl; }
.vl-pdp__desc { font-size:14px; line-height:1.85; color:var(--ink-3); font-weight:300; max-width:400px; margin-bottom:26px; }
.vl-pdp__notes { margin-bottom:26px; }
.vl-pdp__price-row { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:14px; }
.vl-pdp__price { font-family:var(--f-display); font-size:42px; font-weight:300; color:var(--ink); line-height:1; }
.vl-pdp__price-sub { font-size:11px; font-weight:400; letter-spacing:0.14em; text-transform:uppercase; color:var(--ink-4); padding-bottom:5px; }
.vl-pdp__qty-row { display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; }
.vl-pdp__stock { font-size:10px; font-weight:400; letter-spacing:0.18em; text-transform:uppercase; color:var(--blue-mid); }
.vl-pdp__stock.out { color:var(--ink-4); }
.vl-pdp__trust { display:flex; margin-top:12px; border:1px solid rgba(59,130,196,0.12); }
.vl-pdp__trust-i { flex:1; padding:9px 7px; border-right:1px solid rgba(59,130,196,0.12); font-size:9px; font-weight:400; letter-spacing:0.12em; text-transform:uppercase; color:var(--ink-4); text-align:center; transition:background var(--t-fast),color var(--t-fast); }
.vl-pdp__trust-i:last-child { border-right:none; }
.vl-pdp__trust-i:hover { background:var(--bg-alt); color:var(--blue-deep); }
.vl-pdp__acc { margin-top:22px; }
@media (max-width:1024px) { .vl-pdp__layout { grid-template-columns:1fr; } .vl-pdp__gal { position:relative; height:68vw; min-height:280px; } .vl-pdp__info { padding:38px 26px; } }
@media (max-width:640px)  { .vl-pdp__info { padding:28px 18px; } .vl-pdp__trust { flex-direction:column; } .vl-pdp__trust-i { border-right:none!important; border-bottom:1px solid rgba(59,130,196,0.12); } .vl-pdp__trust-i:last-child { border-bottom:none; } }

/* ══════════════════════════════════════════════════════════
   CART PAGE
══════════════════════════════════════════════════════════ */
.vl-cart-pg { background:var(--bg); min-height:70vh; padding:var(--sp-lg) 0; }
.vl-cart-pg__form { display:grid; grid-template-columns:1fr 330px; gap:52px; align-items:start; margin-top:42px; }
.vl-cart-pg__item { display:flex; gap:20px; padding:24px 0; border-bottom:1px solid rgba(59,130,196,0.08); }
.vl-cart-pg__thumb { width:84px; height:104px; background:var(--bg-card); flex-shrink:0; overflow:hidden; }
.vl-cart-pg__thumb img { width:100%; height:100%; object-fit:cover; }
.vl-cart-pg__name  { font-family:var(--f-display); font-size:21px; font-weight:300; color:var(--ink); margin-bottom:4px; }
.vl-cart-pg__var   { font-size:10px; font-weight:400; letter-spacing:0.16em; text-transform:uppercase; color:var(--ink-4); margin-bottom:12px; }
.vl-cart-pg__price { font-size:15px; color:var(--ink-2); font-weight:300; }
.vl-cart-pg__rm    { font-size:10px; font-weight:400; letter-spacing:0.14em; text-transform:uppercase; color:var(--ink-4); transition:color var(--t-fast); }
.vl-cart-pg__rm:hover { color:var(--blue-mid); }
.vl-cart-pg__summary { background:var(--surface); padding:28px 24px; border:1px solid rgba(59,130,196,0.1); position:sticky; top:88px; }
.vl-cart-pg__sum-row { display:flex; justify-content:space-between; margin-bottom:12px; }
.vl-cart-pg__total { font-family:var(--f-display); font-size:28px; font-weight:300; color:var(--ink); }
.vl-cart-pg__empty { padding:80px 0; text-align:center; }
@media (max-width:1024px) { .vl-cart-pg__form { grid-template-columns:1fr; } .vl-cart-pg__summary { position:static; } }

/* ══════════════════════════════════════════════════════════
   ABOUT / CONTACT / PAGE
══════════════════════════════════════════════════════════ */
.vl-about,.vl-contact,.vl-page { background:var(--bg); min-height:70vh; padding:var(--sp-xl) 0; }
.vl-about__hero { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; margin-bottom:var(--sp-xl); }
.vl-about__hero-img { height:500px; }
.vl-contact__inner { display:grid; grid-template-columns:1fr 1.4fr; gap:76px; align-items:start; }
.vl-contact__detail { margin-bottom:26px; }
.vl-contact__detail-lbl { margin-bottom:7px; }
.vl-contact__detail-val { font-size:15px; color:var(--blue-mid); font-weight:300; transition:color var(--t-fast); }
.vl-contact__form { display:flex; flex-direction:column; gap:15px; }
.vl-contact__row  { display:grid; grid-template-columns:1fr 1fr; gap:13px; }
.vl-page__content { max-width:700px; margin:0 auto; }
.vl-page__content p  { margin-bottom:16px; font-size:14px; line-height:1.85; color:var(--ink-3); font-weight:300; }
.vl-page__content h2 { font-family:var(--f-display); font-size:clamp(22px,3vw,36px); font-weight:300; color:var(--ink); margin:30px 0 13px; }
.vl-page__content a  { color:var(--blue-mid); border-bottom:1px solid var(--blue-pale); padding-bottom:1px; transition:color var(--t-fast); }
@media (max-width:1024px) { .vl-about__hero { grid-template-columns:1fr; gap:36px; } .vl-contact__inner { grid-template-columns:1fr; gap:44px; } }
@media (max-width:640px)  { .vl-contact__row { grid-template-columns:1fr; } }

/* ══════════════════════════════════════════════════════════
   AUTH & ACCOUNT
══════════════════════════════════════════════════════════ */
.vl-auth { background:var(--bg); min-height:70vh; padding:var(--sp-lg) 0; }
.vl-auth__inner { max-width:400px; margin:0 auto; padding:0 24px; }
.vl-auth__tabs { display:flex; border-bottom:1px solid rgba(59,130,196,0.1); margin-bottom:28px; }
.vl-auth__tab { padding:11px 18px; background:none; font-size:10px; font-weight:400; letter-spacing:0.18em; text-transform:uppercase; color:var(--ink-4); border-bottom:2px solid transparent; transition:color var(--t-fast),border-color var(--t-fast); }
.vl-auth__tab.active { color:var(--blue-mid); border-bottom-color:var(--blue-mid); }
.vl-acct { background:var(--bg); min-height:70vh; padding:var(--sp-lg) 0; }
.vl-acct__sec-title { font-size:10px; font-weight:400; letter-spacing:0.22em; text-transform:uppercase; color:var(--blue-mid); margin-bottom:14px; display:flex; align-items:center; gap:12px; }
.vl-acct__sec-title::after { content:''; flex:1; height:1px; background:rgba(59,130,196,0.1); }
.vl-acct__orders { display:flex; flex-direction:column; gap:2px; margin-bottom:40px; }
.vl-acct__order { display:flex; align-items:center; justify-content:space-between; gap:18px; background:var(--surface); padding:18px 20px; transition:background var(--t-fast); }
.vl-acct__order:hover { background:var(--bg-alt); }
.vl-acct__order-num   { font-family:var(--f-display); font-size:17px; font-weight:300; color:var(--ink); }
.vl-acct__order-date  { font-size:10px; font-weight:400; letter-spacing:0.12em; color:var(--ink-4); }
.vl-acct__order-status.paid { background:rgba(59,130,196,0.1); color:var(--blue-mid); padding:4px 10px; font-size:9px; font-weight:400; letter-spacing:0.16em; text-transform:uppercase; }
.vl-acct__order-total { font-family:var(--f-display); font-size:17px; font-weight:300; color:var(--ink); }
.vl-acct__empty { font-family:var(--f-display); font-style:italic; font-size:18px; color:var(--ink-4); padding:32px 0; }
.vl-acct__details { display:grid; grid-template-columns:1fr 1fr; gap:2px; margin-bottom:32px; background:rgba(59,130,196,0.06); }
.vl-acct__detail { background:var(--surface); padding:18px 20px; }
.vl-acct__detail-lbl { font-size:9px; font-weight:400; letter-spacing:0.2em; text-transform:uppercase; color:var(--blue-mid); margin-bottom:6px; }
.vl-acct__detail-val { font-size:14px; color:var(--ink-2); font-weight:300; }

/* ══════════════════════════════════════════════════════════
   404 · FOOTER · PASSWORD
══════════════════════════════════════════════════════════ */
.vl-404 { min-height:60vh; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:60px 24px; background:var(--bg); }
.vl-footer { background:var(--ink); }
.vl-footer::before { content:''; display:block; height:2px; background:linear-gradient(90deg,transparent,var(--blue-sky),transparent); }
.vl-footer__top { padding:64px 0 48px; }
.vl-footer__grid { display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:44px; }
.vl-footer__logo { font-family:var(--f-display); font-size:18px; font-weight:300; letter-spacing:0.38em; padding-right:.38em; text-transform:uppercase; color:rgba(255,255,255,0.85); display:inline-block; margin-bottom:4px; transition:color var(--t-fast); }
.vl-footer__logo:hover { color:var(--blue-sky); }
.vl-footer__logo-sub { font-family:var(--f-display); font-style:italic; font-size:13px; font-weight:300; color:rgba(255,255,255,0.4); letter-spacing:0.06em; margin-bottom:12px; display:block; }
.vl-footer__tagline { font-size:12px; font-weight:300; color:rgba(255,255,255,0.28); line-height:1.72; max-width:190px; margin-bottom:22px; }
.vl-footer__social { display:flex; gap:7px; }
.vl-footer__soc-link { width:32px; height:32px; border:1px solid rgba(255,255,255,0.1); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.28); transition:border-color var(--t-fast),color var(--t-fast),background var(--t-fast); }
.vl-footer__soc-link:hover { border-color:var(--blue-sky); color:var(--blue-sky); background:rgba(107,179,224,0.08); }
.vl-footer__soc-link svg { width:14px; height:14px; }
.vl-footer__col-title { font-size:9px; font-weight:400; letter-spacing:0.24em; text-transform:uppercase; color:rgba(255,255,255,0.36); margin-bottom:15px; }
.vl-footer__col-link { font-size:13px; font-weight:300; color:rgba(255,255,255,0.3); display:block; margin-bottom:9px; position:relative; transition:color var(--t-fast); }
.vl-footer__col-link:hover { color:rgba(255,255,255,0.78); }
.vl-footer__btm { border-top:1px solid rgba(255,255,255,0.06); padding:18px 0; }
.vl-footer__btm-inner { display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap; }
.vl-footer__legal { display:flex; gap:16px; }
.vl-footer__legal a { font-size:10px; font-weight:400; letter-spacing:0.14em; text-transform:uppercase; color:rgba(255,255,255,0.2); transition:color var(--t-fast); }
.vl-footer__legal a:hover { color:rgba(255,255,255,0.5); }
@media (max-width:1024px) { .vl-footer__grid { grid-template-columns:1fr 1fr; gap:30px; } }
@media (max-width:640px)  { .vl-footer__grid { grid-template-columns:1fr; } .vl-footer__btm-inner { flex-direction:column; align-items:flex-start; } }

/* ── PASSWORD PAGE ─── */
.vl-pw { min-height:100vh; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:48px 24px; background:linear-gradient(160deg,var(--bg) 0%,var(--bg-alt) 100%); }
.vl-pw__logo { font-family:var(--f-display); font-size:clamp(32px,6vw,64px); font-weight:300; letter-spacing:0.38em; padding-right:.38em; text-transform:uppercase; color:var(--ink); margin-bottom:6px; }
.vl-pw__sub  { font-family:var(--f-display); font-style:italic; font-size:20px; font-weight:300; color:var(--blue-mid); margin-bottom:24px; }
.vl-pw__tag  { font-family:var(--f-display); font-style:italic; font-size:clamp(14px,1.8vw,20px); font-weight:300; color:var(--ink-3); margin-bottom:36px; }
.vl-pw__form { display:flex; max-width:340px; width:100%; border:1px solid var(--ink-5); overflow:hidden; transition:border-color var(--t-fast),box-shadow var(--t-fast); }
.vl-pw__form:focus-within { border-color:var(--blue-mid); box-shadow:0 0 0 3px rgba(59,130,196,0.08); }
.vl-pw__inp { flex:1; padding:13px 15px; background:var(--surface); border:none; outline:none; color:var(--ink); font-family:var(--f-body); font-size:13px; font-weight:300; }
.vl-pw__inp::placeholder { color:var(--ink-4); }
.vl-pw__btn { padding:13px 20px; background:var(--blue-deep); color:#fff; font-family:var(--f-body); font-size:10px; font-weight:400; letter-spacing:0.18em; text-transform:uppercase; transition:background var(--t-fast); }
.vl-pw__btn:hover { background:var(--blue-mid); }

/* ── PRINT ── */
@media print { #vl-noise,#vl-cur-o,#vl-cur-i,.vl-nav,.vl-tabbar,.vl-wa-wrap,.vl-cart-overlay,.vl-cart-panel { display:none!important; } body { padding-bottom:0!important; } }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE OVERHAUL — Laptop · iPad · iPhone
   Breakpoints: 1280 / 1024 / 768 / 480 / 375
══════════════════════════════════════════════════════════ */

/* ── GLOBAL TOUCH IMPROVEMENTS ────────────────────────── */
@media (max-width:768px) {
  /* Larger tap targets — no min-height which causes stacking */
  .vl-btn-primary, .vl-btn-outline {
    min-height: 48px;
  }
  .vl-atc {
    min-height: 48px;
    font-size: 11px;
    padding: 14px 20px;
    letter-spacing: 0.12em; /* tighter tracking so text fits on small screens */
  }
  /* Better body text on mobile */
  body { font-size: 16px; line-height: 1.72; }
  /* Remove hover animations on touch */
  .vl-product__img-main:hover img,
  .vl-product__img-a:hover img,
  .vl-product__img-b:hover img { transform: none; }
}

/* ── NAV — LAPTOP (1024–1280px) ────────────────────────── */
@media (max-width:1280px) {
  .vl-nav__inner { padding: 0 28px; }
  .vl-nav__wordmark { font-size: 19px; letter-spacing: 0.32em; }
  .vl-nav__link { padding: 10px 10px; font-size: 10px; }
}

/* ── NAV — iPAD (768–1024px) ───────────────────────────── */
@media (max-width:1024px) {
  .vl-nav__inner { padding: 0 24px; }
  .vl-nav__left { display: none; }
  .vl-nav__right .vl-nav__link { display: none; }
  .vl-nav__inner { grid-template-columns: auto 1fr auto; }
  .vl-nav__wordmark { justify-self: center; font-size: 18px; }
  /* Hamburger hint on iPad - show icons only */
  .vl-nav__icons { margin-left: 0; }
}

/* ── HERO — LAPTOP ──────────────────────────────────────── */
@media (min-width:1025px) {
  .vl-hero { min-height: 100vh; }
  .vl-hero__brand { font-size: clamp(56px, 8vw, 112px); }
  .vl-hero__product-name { font-size: clamp(28px, 3.2vw, 48px); }
  .vl-hero__left { padding: 100px 52px 80px 52px; }
}

/* ── HERO — iPAD (768–1024px) ──────────────────────────── */
@media (max-width:1024px) {
  .vl-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .vl-hero__right {
    height: 55vw;
    min-height: 300px;
    max-height: 480px;
    order: -1;
  }
  .vl-hero__left {
    padding: 44px 36px 52px;
  }
  .vl-hero__brand {
    font-size: clamp(52px, 9vw, 88px);
  }
  .vl-hero__product-name {
    font-size: clamp(24px, 4vw, 40px);
  }
  .vl-hero__arabic {
    font-size: clamp(16px, 2.5vw, 22px);
    margin-bottom: 22px;
  }
  .vl-hero__tagline {
    font-size: clamp(15px, 2vw, 18px);
    margin-bottom: 28px;
  }
  .vl-hero__ctas {
    flex-direction: row;
    gap: 12px;
  }
  .vl-hero__price { font-size: 26px; }
  .vl-hero__scroll { display: none; }
  .vl-hero__left::after { display: none; }
  /* Bottle fits on iPad */
  .vl-hero__bottle { width: 55%; max-width: 260px; }
  .vl-hero__bottle-svg { width: 55%; max-width: 200px; }
}

/* ── HERO — iPHONE (≤480px) ────────────────────────────── */
@media (max-width:480px) {
  .vl-hero__right {
    height: 72vw;
    min-height: 260px;
  }
  .vl-hero__left { padding: 32px 20px 44px; }
  .vl-hero__brand { font-size: clamp(48px, 13vw, 72px); letter-spacing: 0.08em; }
  .vl-hero__product-name { font-size: clamp(22px, 6vw, 32px); }
  .vl-hero__arabic { font-size: 17px; margin-bottom: 18px; }
  .vl-hero__tagline { font-size: 15px; margin-bottom: 22px; max-width: 100%; }
  .vl-hero__divider { margin-bottom: 20px; }
  .vl-hero__price-row { margin-bottom: 24px; }
  .vl-hero__price { font-size: 24px; }
  .vl-hero__price-sub { font-size: 10px; }
  .vl-hero__ctas {
    flex-direction: column;
    gap: 10px;
  }
  .vl-hero__ctas .vl-btn-primary,
  .vl-hero__ctas .vl-btn-outline {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }
  .vl-hero__bottle { width: 52%; max-width: 180px; }
  .vl-hero__bottle-svg { width: 52%; max-width: 170px; }
}

/* ── PRODUCT SECTION — iPAD ─────────────────────────────── */
@media (max-width:1024px) {
  .vl-product__inner { grid-template-columns: 1fr; }
  .vl-product__images {
    min-height: 60vw;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .vl-product__img-main { grid-row: 1 / 3; }
  .vl-product__info { padding: 40px 36px; }
  .vl-product__name { font-size: clamp(40px, 6vw, 60px); }
  .vl-product__desc { max-width: 100%; }
}

/* ── PRODUCT SECTION — iPHONE ───────────────────────────── */
@media (max-width:640px) {
  .vl-product__images {
    grid-template-columns: 1fr;
    grid-template-rows: 75vw 40vw;
    min-height: auto;
  }
  .vl-product__img-main { grid-row: 1; grid-column: 1; }
  .vl-product__img-a { display: none; } /* clean single image on phone */
  .vl-product__img-b { display: none; }
  .vl-product__info { padding: 32px 20px 44px; }
  .vl-product__name { font-size: clamp(38px, 10vw, 52px); }
  .vl-product__name-ar { font-size: clamp(18px, 5vw, 26px); }
  .vl-product__price { font-size: 32px; }
  .vl-product__trust {
    flex-direction: column;
  }
  .vl-product__trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(59,130,196,0.12);
    padding: 12px 16px;
    text-align: left;
  }
  .vl-product__trust-item:last-child { border-bottom: none; }
  /* Full width ATC on mobile */
  .vl-atc { font-size: 11px; padding: 14px 18px; letter-spacing: 0.1em; }
  .vl-atc-icon { display: none; } /* hide + icon on mobile — text needs full width */
  .vl-atc { justify-content: center; } /* centre text when icon hidden */
}

/* ── BRAND STATEMENT — ALL DEVICES ─────────────────────── */
@media (max-width:768px) {
  .vl-stmt__inner { padding: 0 24px; }
  .vl-stmt__quote { font-size: clamp(18px, 4.5vw, 26px); }
}
@media (max-width:480px) {
  .vl-stmt__inner { padding: 0 20px; }
}

/* ── GALLERY — iPAD ─────────────────────────────────────── */
@media (max-width:1024px) {
  .vl-gallery__header { padding-top: 48px; padding-bottom: 32px; }
  .vl-gallery__grid {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 280px 280px 280px !important;
  }
  .vl-gallery__cell--tall {
    grid-column: 1 / 3 !important;
    grid-row: 1 !important;
    height: 320px;
  }
}

/* ── GALLERY — iPHONE ───────────────────────────────────── */
@media (max-width:640px) {
  .vl-gallery__header { padding: 44px 0 28px; flex-direction: column; gap: 12px; }
  .vl-gallery__header .vl-body { max-width: 100%; }
  .vl-gallery__grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: 72vw 72vw 72vw 72vw 72vw !important;
  }
  .vl-gallery__cell--tall {
    grid-column: 1 !important;
    grid-row: 1 !important;
    height: auto;
  }
}

/* ── BRAND STORY — iPAD ─────────────────────────────────── */
@media (max-width:1024px) {
  .vl-story__inner { grid-template-columns: 1fr; gap: 32px; padding: 60px 0; }
  .vl-story__img { height: 60vw; max-height: 420px; }
}
@media (max-width:480px) {
  .vl-story__inner { padding: 48px 0; gap: 28px; }
  .vl-story__img { height: 72vw; }
  .vl-story__quote { font-size: 16px; padding-left: 16px; }
  .vl-story__body { font-size: 15px; }
}

/* ── FULL QUOTE — ALL DEVICES ───────────────────────────── */
@media (max-width:768px) {
  .vl-quote { padding: 80px 0; }
  .vl-quote__l1,.vl-quote__l2 { font-size: clamp(20px, 5.5vw, 36px); }
}
@media (max-width:480px) {
  .vl-quote { padding: 60px 0; }
}

/* ── NEWSLETTER ──────────────────────────────────────────── */
@media (max-width:768px) {
  .vl-nl { padding: 60px 0; }
  .vl-nl__inner { padding: 0 20px; }
}
@media (max-width:480px) {
  .vl-nl__form { flex-direction: column; }
  .vl-nl__inp { padding: 16px 18px; font-size: 16px; /* prevents iOS zoom */ }
  .vl-nl__btn { padding: 16px; text-align: center; min-height: 52px; }
}

/* ── CART DRAWER — iPHONE ───────────────────────────────── */
@media (max-width:640px) {
  .vl-cart-panel {
    width: 100%;
    border-radius: 20px 20px 0 0;
    /* Slide up from bottom — anchor to bottom of screen */
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    /* Height = screen - tabbar - safe area */
    height: 85vh;
    max-height: 85vh;
  }
  .vl-cart-panel.open { transform: translateY(0); }
  .vl-cart-panel { transform: translateY(110%); }
  .vl-cart-foot {
    padding-bottom: max(20px, env(safe-area-inset-bottom));
  }
}

/* ── FOOTER — iPAD ──────────────────────────────────────── */
@media (max-width:1024px) {
  .vl-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .vl-footer__top { padding: 52px 0 40px; }
}
@media (max-width:640px) {
  .vl-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .vl-footer__logo { font-size: 22px; }
  .vl-footer__btm-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .vl-footer__legal { flex-wrap: wrap; gap: 12px; }
}

/* ── SECTIONS SPACING — iPHONE ──────────────────────────── */
@media (max-width:480px) {
  .vl-sec    { padding: 56px 0; }
  .vl-sec-sm { padding: 40px 0; }
  .vl-sec-lg { padding: 80px 0; }
  .vl-wrap   { padding: 0 20px; }
}

/* ── TYPOGRAPHY SCALE — iPHONE ──────────────────────────── */
@media (max-width:480px) {
  .vl-headline { font-size: clamp(32px, 9vw, 48px); }
  .vl-title    { font-size: clamp(24px, 7vw, 36px); }
  .vl-body     { font-size: 15px; }
  .vl-kicker   { font-size: 9px; letter-spacing: 0.22em; }
}

/* ── INPUTS — PREVENT iOS ZOOM ──────────────────────────── */
@media (max-width:768px) {
  .vl-inp,
  .vl-select,
  .vl-qty-inp {
    font-size: 16px; /* 16px prevents iOS from zooming in on focus */
  }
}

/* ── TABBAR — SAFE AREA (iPhone X+) ────────────────────── */
@media (max-width:768px) {
  .vl-tabbar {
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }
  /* WhatsApp above tabbar with safe area */
  .vl-wa-wrap {
    bottom: calc(82px + env(safe-area-inset-bottom));
  }
}

/* ── PRODUCT DETAIL PAGE — iPAD/iPHONE ─────────────────── */
@media (max-width:1024px) {
  .vl-pdp__layout { grid-template-columns: 1fr; }
  .vl-pdp__gal {
    position: relative;
    height: 75vw;
    min-height: 320px;
    max-height: 520px;
  }
  .vl-pdp__info { padding: 40px 36px; }
}
@media (max-width:640px) {
  .vl-pdp__gal { height: 85vw; min-height: 280px; }
  .vl-pdp__info { padding: 32px 20px 48px; }
  .vl-pdp__name { font-size: clamp(38px, 10vw, 52px); }
  .vl-pdp__price { font-size: 36px; }
  .vl-pdp__trust { flex-direction: column; }
  .vl-pdp__trust-i {
    border-right: none !important;
    border-bottom: 1px solid rgba(59,130,196,0.1);
    padding: 12px 16px;
    text-align: left;
  }
  .vl-pdp__trust-i:last-child { border-bottom: none; }
}

/* ── COLLECTION PAGE — iPHONE ───────────────────────────── */
@media (max-width:640px) {
  .vl-coll__grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .vl-coll__hd { padding: 64px 0 28px; }
}
@media (max-width:400px) {
  .vl-coll__grid { grid-template-columns: 1fr; }
}

/* ── CONTACT PAGE — iPHONE ──────────────────────────────── */
@media (max-width:640px) {
  .vl-contact__inner { grid-template-columns: 1fr; gap: 36px; }
  .vl-contact__row   { grid-template-columns: 1fr; gap: 12px; }
}

/* ── CART PAGE — iPHONE ─────────────────────────────────── */
@media (max-width:768px) {
  .vl-cart-pg__form { grid-template-columns: 1fr; gap: 28px; }
  .vl-cart-pg__summary { position: static; }
  .vl-cart-pg__item { gap: 16px; }
  .vl-cart-pg__thumb { width: 72px; height: 88px; }
}

/* ── TICKER — MOBILE ─────────────────────────────────────── */
@media (max-width:480px) {
  .vl-ticker { padding: 9px 0; }
  .vl-ticker-seg { font-size: 9px; gap: 14px; padding: 0 14px; letter-spacing: 0.18em; }
}

/* ── ANNOUNCEMENT BAR — MOBILE ──────────────────────────── */
@media (max-width:480px) {
  .vl-ann__inner {
    padding: 10px 40px 10px 20px;
    font-size: 9px;
    letter-spacing: 0.18em;
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* ── SMOOTH SCROLLING ONLY ON DESKTOP ──────────────────── */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── ANNOUNCEMENT BAR ───────────────────────────────────── */
.vl-ann {
  background: var(--blue-deep);
  overflow: hidden;
  transition: max-height 0.4s, opacity 0.4s, padding 0.4s;
}
.vl-ann__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 11px 52px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  position: relative;
}
.vl-ann__dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold-lt);
  flex-shrink: 0;
}
.vl-ann__link {
  color: var(--gold-lt);
  border-bottom: 1px solid rgba(212,168,74,0.4);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.vl-ann__link:hover { color: var(--gold-vlt); border-color: var(--gold-vlt); }
.vl-ann__close {
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 16px; line-height: 1;
  transition: color 0.2s;
}
.vl-ann__close:hover { color: rgba(255,255,255,0.8); }
@media (max-width: 480px) {
  .vl-ann__inner {
    padding: 10px 40px 10px 16px;
    font-size: 9px; letter-spacing: 0.18em;
    flex-wrap: wrap; gap: 8px;
  }
}

/* ── SCENT STORY SECTION ────────────────────────────────── */
.vl-scent {
  background: var(--blue-deep);
  position: relative;
  overflow: hidden;
  padding: 0;
}
/* Subtle watercolour texture */
.vl-scent::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(107,179,224,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(168,212,240,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.vl-scent__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
  position: relative;
  z-index: 1;
}
.vl-scent__content {
  padding: 80px 64px 80px 52px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vl-scent__kicker {
  color: var(--gold-lt) !important;
  display: block;
  margin-bottom: 20px;
}
.vl-scent__headline {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 300;
  color: rgba(255,255,255,0.95);
  line-height: 1.1;
  margin-bottom: 8px;
}
.vl-scent__line2 {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 30px);
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
  line-height: 1.3;
}
.vl-scent__line3 {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  margin-bottom: 28px;
  line-height: 1.3;
}
.vl-scent__divider {
  width: 36px; height: 1px;
  background: rgba(107,179,224,0.35);
  margin-bottom: 22px;
}
.vl-scent__desc {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  max-width: 380px;
  margin-bottom: 28px;
}
.vl-scent__cta {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s, color 0.2s;
}
.vl-scent__cta:hover { gap: 14px; color: var(--gold-vlt); }

/* Notes side */
.vl-scent__notes {
  padding: 80px 52px 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.vl-scent__note {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.vl-scent__note:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.vl-scent__note-tier {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  width: 44px;
  flex-shrink: 0;
}
.vl-scent__note-name {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  flex: 1;
  letter-spacing: 0.02em;
}
.vl-scent__note-bar {
  width: 16px; height: 1px;
  background: rgba(107,179,224,0.4);
  flex-shrink: 0;
  transition: width 0.4s, background 0.3s;
}
.vl-scent__note:hover .vl-scent__note-bar {
  width: 26px;
  background: var(--gold-lt);
}

/* Longevity stats */
.vl-scent__longevity {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.vl-scent__lon-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
}
.vl-scent__lon-val {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em;
}
.vl-scent__lon-lbl {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.vl-scent__lon-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .vl-scent__inner  { grid-template-columns: 1fr; }
  .vl-scent__content{ padding: 60px 36px 40px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .vl-scent__notes  { padding: 40px 36px 60px; }
}
@media (max-width: 640px) {
  .vl-scent__content{ padding: 48px 20px 36px; }
  .vl-scent__notes  { padding: 32px 20px 48px; }
  .vl-scent__longevity { gap: 0; }
  .vl-scent__lon-val { font-size: 17px; }
}

/* ── BRAND STATEMENT — polish ───────────────────────────── */
.vl-stmt__quote {
  font-size: clamp(20px, 2.8vw, 36px);
}

/* ── GALLERY — header alignment fix ────────────────────── */
.vl-gallery__header {
  align-items: center;
}
.vl-gallery__header .vl-body {
  text-align: right;
  max-width: 240px;
}
@media (max-width: 768px) {
  .vl-gallery__header { flex-direction: column; align-items: flex-start; }
  .vl-gallery__header .vl-body { text-align: left; }
}

/* ── PRODUCT SECTION — spacing improvements ─────────────── */
.vl-product__info {
  padding: 68px 56px;
}
.vl-product__name {
  font-size: clamp(44px, 5vw, 68px);
  letter-spacing: 0.06em;
}
.vl-product__name-ar {
  unicode-bidi: plaintext;
  text-align: left;
  margin-bottom: 26px;
}
/* Accordion on product */
.vl-product__accordion {
  margin-top: 20px;
  border-top: 1px solid rgba(59,130,196,0.1);
}
.vl-product__acc-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
  border-bottom: 1px solid rgba(59,130,196,0.1);
  cursor: none;
  transition: color 0.2s;
  background: none;
}
.vl-product__acc-trigger:hover { color: var(--blue-deep); }
.vl-product__acc-trigger .icon {
  font-size: 18px; line-height: 1;
  transition: transform 0.3s;
}
.vl-product__acc-trigger.open .icon { transform: rotate(45deg); }
.vl-product__acc-body {
  overflow: hidden; max-height: 0;
  transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1), padding 0.4s;
  font-size: 13px; line-height: 1.85; color: var(--ink-3); font-weight: 300;
  border-bottom: 1px solid rgba(59,130,196,0.1);
}
.vl-product__acc-body.open { max-height: 300px; padding-bottom: 16px; padding-top: 12px; }

/* ── NEWSLETTER — visual upgrade ───────────────────────── */
.vl-nl {
  background: linear-gradient(160deg, #F8F9FC 0%, #EEF4FB 100%);
}

/* ── FOOTER — refinements ───────────────────────────────── */
.vl-footer__logo {
  letter-spacing: 0.42em;
  font-size: 20px;
}
.vl-footer__logo-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 10px;
}

/* ── NAV — announcement bar spacing ────────────────────── */
/* Announcement bar is inside the fixed wrapper — no top adjustments needed */

/* ── BRAND STORY — image frame ──────────────────────────── */
.vl-story__img {
  position: relative;
  overflow: hidden;
}
.vl-story__img::after {
  content: '';
  position: absolute; inset: 14px;
  border: 1px solid rgba(59,130,196,0.12);
  pointer-events: none; z-index: 2;
  transition: inset 0.7s cubic-bezier(0.16,1,0.3,1), border-color 0.5s;
}
.vl-story__img:hover::after {
  inset: 6px;
  border-color: rgba(59,130,196,0.22);
}

/* ── WHATSAPP — refined ─────────────────────────────────── */
.vl-wa__icon {
  box-shadow: 0 4px 16px rgba(34,197,94,0.32), 0 8px 32px rgba(26,35,50,0.12);
}

/* ══════════════════════════════════════════════════════════
   NAV OVERLAP + GAP FIXES — v2
══════════════════════════════════════════════════════════ */

/* Scroll offset for anchor navigation */
html { scroll-padding-top: 80px; }

/* Every section with an ID gets margin so nav doesn't cover it */
section[id], .vl-stmt { scroll-margin-top: 72px; }

/* Gallery header — REMOVE extra padding that caused huge gap */
/* gallery header padding set above */

/* Remove all margins between sections */
.vl-ticker, .vl-stmt, .vl-product,
.vl-scent, .vl-gallery, .vl-story,
.vl-quote, .vl-nl {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Brand statement — tighter padding */


/* ══════════════════════════════════════════════════════════
   ARABIC / RTL SUPPORT
   When lang="ar" is set, everything mirrors correctly.
   Arabic fonts load from Google Fonts via theme.liquid.
══════════════════════════════════════════════════════════ */

/* Arabic font — Noto Naskh Arabic is elegant and pairs well */
@import url('https://fonts.googleapis.com/css2?family=Noto+Naskh+Arabic:wght@400;500;600&display=swap');

/* RTL direction when Arabic is active */
[lang="ar"],
.vl-ar {
  direction: rtl;
  text-align: right;
  font-family: 'Noto Naskh Arabic', 'Cormorant', Georgia, serif;
}

/* Arabic nav wordmark */
[lang="ar"] .vl-nav__wordmark { letter-spacing: 0.05em; }
[lang="ar"] .vl-nav__left     { order: 3; }
[lang="ar"] .vl-nav__right    { order: 1; }

/* Arabic hero */
[lang="ar"] .vl-hero__left    { padding: 110px 52px 80px 56px; }
[lang="ar"] .vl-hero__eyebrow { flex-direction: row-reverse; }
[lang="ar"] .vl-hero__brand,
[lang="ar"] .vl-hero__product-name { letter-spacing: 0.03em; }
[lang="ar"] .vl-hero__arabic  {
  font-size: clamp(22px, 2.8vw, 32px);
  color: var(--blue-mid);
  font-weight: 500;
}
[lang="ar"] .vl-hero__tagline { text-align: right; max-width: 100%; }
[lang="ar"] .vl-hero__ctas   { flex-direction: row-reverse; }
[lang="ar"] .vl-hero__trust  { flex-direction: row-reverse; }
[lang="ar"] .vl-hero__price-row { flex-direction: row-reverse; }

/* Arabic product section */
[lang="ar"] .vl-product__info { direction: rtl; text-align: right; }
[lang="ar"] .vl-product__name,
[lang="ar"] .vl-product__brand { letter-spacing: 0.02em; }
[lang="ar"] .vl-note { flex-direction: row-reverse; }
[lang="ar"] .vl-note-lbl { text-align: right; }
[lang="ar"] .vl-product__price-row { flex-direction: row-reverse; }

/* Arabic scent section */
[lang="ar"] .vl-scent__content { direction: rtl; text-align: right; border-right: none; border-left: 1px solid rgba(255,255,255,0.08); }
[lang="ar"] .vl-scent__notes   { direction: rtl; }
[lang="ar"] .vl-scent__note    { flex-direction: row-reverse; }

/* Arabic footer */
[lang="ar"] .vl-footer__grid   { direction: rtl; }
[lang="ar"] .vl-footer__btm-inner { flex-direction: row-reverse; }

/* Arabic cart */
[lang="ar"] .vl-cart-panel     { right: auto; left: 0; transform: translateX(-100%); }
[lang="ar"] .vl-cart-panel.open{ transform: translateX(0); }

/* Language toggle button */
.vl-lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: none;
  border: none;
  cursor: none;
  padding: 10px 12px;
  transition: color 0.2s;
}
.vl-lang-toggle:hover { color: rgba(255,255,255,0.9); }
.vl-nav.scrolled .vl-lang-toggle { color: var(--ink-4); }
.vl-nav.scrolled .vl-lang-toggle:hover { color: var(--blue-deep); }
.vl-lang-toggle__active {
  color: var(--gold-lt) !important;
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   HERO — Single authoritative block (overwrites all above)
   Nav is always 72px tall and white. Hero accounts for it.
══════════════════════════════════════════════════════════ */

.vl-hero {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 100svh; /* svh = small viewport height - more reliable on mobile */
  height: 100vh;
  overflow: hidden;
  position: relative;
  width: 100%;
  align-items: stretch;
}

/* LEFT PANEL */
.vl-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 56px 80px 52px;
  background: linear-gradient(145deg, #F8F9FC 0%, #EEF4FB 55%, #E4EFF8 100%);
  position: relative;
  z-index: 2;
}
/* Vertical divider line between panels */
.vl-hero__left::after {
  content: '';
  position: absolute;
  top: 12%; right: 0; bottom: 12%;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent,
    rgba(59,130,196,0.16) 30%,
    rgba(59,130,196,0.16) 70%,
    transparent);
}
.vl-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.vl-hero__eyebrow-bar {
  width: 24px; height: 1px;
  background: var(--blue-mid);
  flex-shrink: 0;
}
/* Name block — VELON / ELORA / Arabic all together */
.vl-hero__name-block { margin-bottom: 24px; }
.vl-hero__brand {
  font-family: var(--f-display);
  font-size: clamp(60px, 9vw, 120px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}
.vl-hero__product-name {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(26px, 3.5vw, 50px);
  font-weight: 300;
  color: var(--blue-mid);
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-bottom: 4px;
}
.vl-hero__arabic {
  font-family: var(--f-display);
  font-size: clamp(16px, 1.9vw, 24px);
  font-weight: 300;
  color: var(--ink-4);
  unicode-bidi: plaintext;
  text-align: left;
  line-height: 1.4;
}
.vl-hero__divider {
  width: 32px; height: 1px;
  background: rgba(59,130,196,0.22);
  margin: 22px 0;
}
.vl-hero__tagline {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 300;
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 300px;
  margin-bottom: 26px;
}
.vl-hero__price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}
.vl-hero__price {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 300;
  color: var(--ink);
}
.vl-hero__price-sub {
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-4);
}
.vl-hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
/* Hero primary button */
.vl-hero__btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 34px;
  background: var(--blue-deep); color: #fff;
  font-family: var(--f-body); font-size: 11px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  border: none; text-decoration: none; cursor: none;
  position: relative; overflow: hidden;
  transition: letter-spacing 0.5s var(--ease);
}
.vl-hero__btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-sky));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-in);
}
.vl-hero__btn-primary > * { position: relative; z-index: 1; }
.vl-hero__btn-primary span { position: relative; z-index: 1; }
.vl-hero__btn-primary:hover::before { transform: scaleX(1); }
.vl-hero__btn-primary:hover { letter-spacing: 0.26em; }
.vl-hero__btn-primary:disabled { background: var(--ink-5); cursor: not-allowed; }
.vl-hero__btn-primary:disabled::before { display: none; }
/* Hero secondary button */
.vl-hero__btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 26px;
  border: 1px solid rgba(59,130,196,0.3); color: var(--blue-deep);
  font-family: var(--f-body); font-size: 11px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, letter-spacing 0.5s var(--ease);
}
.vl-hero__btn-secondary:hover {
  border-color: var(--blue-deep);
  background: rgba(59,130,196,0.05);
  letter-spacing: 0.24em;
}
/* Trust row */
.vl-hero__trust {
  display: flex; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
.vl-hero__trust-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-4);
}
.vl-hero__trust-item svg { color: var(--blue-mid); flex-shrink: 0; }
.vl-hero__trust-sep { color: var(--ink-5); font-size: 10px; }

/* RIGHT PANEL */
.vl-hero__right {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #EEF4FB 0%, #D6E8F5 50%, #C5DCF0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh; /* never collapse even without image */
}
/* Soft radial glow */
.vl-hero__right::before {
  content: '';
  position: absolute;
  top: 15%; left: 10%; right: 10%; bottom: 5%;
  background: radial-gradient(ellipse,
    rgba(107,179,224,0.18) 0%,
    rgba(59,130,196,0.06) 55%,
    transparent 80%);
  pointer-events: none; z-index: 0;
}
/* Arabic watermark */
.vl-hero__right::after {
  content: 'إيلورا';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-size: clamp(110px, 20vw, 240px);
  color: rgba(59,130,196,0.045);
  white-space: nowrap;
  pointer-events: none; z-index: 0;
  line-height: 1;
}
/* Bottle image */
.vl-hero__bottle-img {
  position: relative; z-index: 1;
  width: auto;
  height: 80vh;
  max-height: 660px;
  max-width: 88%;
  object-fit: contain;
  filter: drop-shadow(0 28px 50px rgba(26,95,168,0.18)) drop-shadow(0 10px 22px rgba(26,35,50,0.1));
  animation: bottleFloat 7s ease-in-out infinite;
}
/* SVG bottle fallback */
.vl-hero__bottle-wrap {
  position: relative; z-index: 1;
  width: 56%; max-width: 280px;
  filter: drop-shadow(0 28px 50px rgba(26,95,168,0.18));
  animation: bottleFloat 7s ease-in-out infinite;
}
.vl-hero__bottle-svg { width: 100%; height: auto; display: block; }

@keyframes bottleFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* Scroll indicator */
.vl-hero__scroll {
  position: absolute; bottom: 28px; right: 40px;
  z-index: 3; display: flex; flex-direction: column;
  align-items: center; gap: 8px; opacity: 0.38;
}
.vl-hero__scroll-word {
  writing-mode: vertical-rl; font-size: 9px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-4);
}
.vl-hero__scroll-track {
  width: 1px; height: 42px;
  background: rgba(59,130,196,0.22);
  position: relative; overflow: hidden;
}
.vl-hero__scroll-fill {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 30%;
  background: var(--blue-mid);
  animation: scrollDrop 2.4s ease infinite;
}
@keyframes scrollDrop {
  0%   { top: -30%; height: 30%; }
  50%  { top: 60%;  height: 40%; }
  100% { top: 110%; height: 30%; }
}

/* ── HERO RESPONSIVE ── */
@media (max-width: 1024px) {
  .vl-hero { grid-template-columns: 1fr; min-height: auto; height: auto; }
  .vl-hero__right { height: 56vw; min-height: 300px; max-height: 480px; order: -1; }
  .vl-hero__left  { padding: 44px 36px 64px; } /* extra bottom padding so buttons clear */
  .vl-hero__left::after { display: none; }
  .vl-hero__scroll { display: none; }
  .vl-hero__bottle-img { height: 50vw; max-height: 420px; }
  .vl-hero__brand { font-size: clamp(50px, 9vw, 88px); }
  .vl-hero__product-name { font-size: clamp(24px, 4vw, 42px); }
  .vl-hero__bottle-wrap { width: 52%; max-width: 220px; }
}
@media (max-width: 640px) {
  .vl-hero__right { height: 70vw; min-height: 250px; }
  .vl-hero__left  { padding: 32px 20px 56px; }
  .vl-hero__brand { font-size: clamp(48px, 13vw, 70px); letter-spacing: 0.07em; }
  .vl-hero__product-name { font-size: clamp(22px, 6vw, 34px); }
  .vl-hero__ctas  { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 20px; }
  .vl-hero__btn-primary,
  .vl-hero__btn-secondary { text-align: center; width: 100%; padding: 16px 24px; min-height: 52px; }
  .vl-hero__trust-sep { display: none; }
  .vl-hero__bottle-img { height: 64vw; }
  .vl-hero__bottle-wrap { width: 50%; max-width: 170px; }
}
@media (max-width: 380px) {
  .vl-hero__left { padding: 28px 16px 38px; }
  .vl-hero__brand { font-size: clamp(42px, 12vw, 58px); }
}


/* ══════════════════════════════════════════════════════════
   Z-INDEX MASTER — Nav is always on top
══════════════════════════════════════════════════════════ */
.vl-hero,
.vl-ticker,
.vl-stmt,
.vl-product,
.vl-scent,
.vl-gallery,
.vl-story,
.vl-quote,
.vl-nl,
.vl-footer {
  position: relative;
  z-index: 0;
}
/* Cart and WA stay above content but below nav */
.vl-cart-overlay  { z-index: 800; }
.vl-cart-panel    { z-index: 900; }
.vl-wa-wrap       { z-index: 950; }
/* Nav is king */
.vl-nav           { z-index: 1000 !important; }
.vl-tabbar        { z-index: 1000 !important; }

/* ── ABOUT PAGE ── */
.vl-about { background:var(--bg); min-height:70vh; padding:0 0 var(--sp-xl); }
.vl-about__hero {
  display:grid; grid-template-columns:1fr 1.3fr;
  gap:64px; align-items:center; margin-bottom:var(--sp-xl);
}
.vl-about__pillars {
  display:grid; grid-template-columns:1fr 1fr;
  gap:2px; background:rgba(59,130,196,0.06);
}
.vl-about__pillar {
  background:var(--surface); padding:28px 24px;
  border-bottom:2px solid transparent;
  transition:border-color var(--t-fast), background var(--t-fast);
}
.vl-about__pillar:hover { border-bottom-color:var(--blue-mid); background:var(--bg-alt); }
.vl-about__pillar-t { font-family:var(--f-display); font-size:22px; font-weight:300; color:var(--ink); margin-bottom:8px; }
.vl-about__pillar-b { font-size:13px; color:var(--ink-3); line-height:1.75; font-weight:300; }
@media (max-width:1024px) { .vl-about__hero { grid-template-columns:1fr; gap:36px; } }
@media (max-width:640px)  { .vl-about__pillars { grid-template-columns:1fr; } .vl-about__hero-img { height:60vw !important; } }

/* ── SEARCH PAGE ── */
.vl-search { background:var(--bg); min-height:70vh; }

/* ── MOBILE SPACING FIX — all inner pages ── */
@media (max-width:768px) {
  .vl-pdp__info { padding:32px 18px 48px !important; }
  .vl-coll__hd  { padding:32px 0 24px; }
  .vl-cart-pg   { padding:32px 0 calc(80px + env(safe-area-inset-bottom)); }
  .vl-auth      { padding:32px 0 48px; }
  .vl-acct      { padding:32px 0 48px; }
  .vl-about     { padding:0 0 48px; }
  .vl-contact   { padding:32px 0 48px !important; }
  .vl-page      { padding:32px 0 48px !important; }
}
@media (max-width:640px) {
  .vl-about__pillars { grid-template-columns:1fr; }
  .vl-contact__inner { grid-template-columns:1fr; gap:32px; }
  .vl-contact__row   { grid-template-columns:1fr; gap:12px; }
  .vl-cart-pg__form  { grid-template-columns:1fr; gap:24px; }
  .vl-cart-pg__summary { position:static; }
  /* Ensure cart checkout button is full width on mobile */
  .vl-cart-pg .vl-btn-primary {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    font-size: 12px;
  }
}

/* ══════════════════════════════════════════════════════════
   PRODUCT CARD — Mobile fixes
══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Card sizing */
  .vl-pc__name  { font-size: 17px; }
  .vl-pc__price { font-size: 17px; }
  .vl-pc__info  { padding: 13px 14px 18px; }
  .vl-pc__tag   { font-size: 8px; }
  .vl-pc__accord { font-size: 12px; margin-bottom: 10px; }

  /* ATC on collection quick-add */
  .vl-pc__quick-btn {
    font-size: 9px;
    letter-spacing: 0.12em;
    padding: 8px;
  }

  /* Price row alignment */
  .vl-pc__price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 8px;
  }

  /* Hide quick-add overlay on mobile — use the + button in card info instead */
  .vl-pc__quick {
    display: none;
  }
}

/* ── Collection grid — single col on very small phones ── */
@media (max-width: 380px) {
  .vl-coll__grid { grid-template-columns: 1fr; }
  .vl-pc__name   { font-size: 18px; }
}

/* ── Featured product ATC on mobile ── */
@media (max-width: 640px) {
  .vl-product__trust {
    flex-direction: column;
  }
  .vl-product__trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(59,130,196,0.12);
    padding: 10px 16px;
    text-align: left;
  }
  .vl-product__trust-item:last-child { border-bottom: none; }
}


/* ══════════════════════════════════════════════════════════
   FINAL PRODUCTION OVERRIDES — These win over everything above
   Added in final QA pass — do not add rules above this block
══════════════════════════════════════════════════════════ */

/* ── Z-INDEX MASTER (final authority) ── */
.vl-nav           { z-index: 1000 !important; }
.vl-tabbar        { z-index: 1000 !important; }
.vl-cart-panel    { z-index: 900  !important; }
.vl-cart-overlay  { z-index: 800  !important; }
.vl-wa-wrap       { z-index: 950  !important; }

/* ── CART CHECKOUT BUTTON — always full width, always visible ── */
.vl-cart-ck {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 18px 24px !important;
  min-height: 52px !important;
  background: var(--blue-deep) !important;
  color: #fff !important;
  font-family: var(--f-body) !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  border: none !important;
  cursor: pointer !important;
  -webkit-tap-highlight-color: transparent !important;
}
.vl-cart-ck:hover { background: var(--blue-mid) !important; }

/* ── CART FOOT — never hidden ── */
.vl-cart-foot {
  padding: 18px 28px !important;
  border-top: 1px solid rgba(59,130,196,0.1) !important;
  flex-shrink: 0 !important;
  background: var(--surface) !important;
  padding-bottom: max(18px, env(safe-area-inset-bottom)) !important;
}

/* ── PRODUCT CARD IMAGE — always fills container ── */
.vl-pc__img {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  padding-bottom: 133% !important;
  overflow: hidden !important;
  background: var(--bg-card) !important;
}
.vl-pc__img img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 1 !important;
}

/* ── HERO — final mobile authority ── */
@media (max-width: 1024px) {
  .vl-hero { height: auto !important; min-height: auto !important; }
  .vl-hero__left { padding: 44px 32px 56px !important; }
  .vl-hero__right { order: -1 !important; height: 56vw !important; min-height: 280px !important; max-height: 480px !important; }
}
@media (max-width: 640px) {
  .vl-hero__left { padding: 32px 20px 56px !important; }
  .vl-hero__right { height: 70vw !important; min-height: 240px !important; }
  .vl-hero__ctas { flex-direction: column !important; align-items: stretch !important; gap: 10px !important; }
  .vl-hero__btn-primary,
  .vl-hero__btn-secondary { width: 100% !important; justify-content: center !important; text-align: center !important; min-height: 50px !important; }
}

/* ── MOBILE TABBAR — always on top of everything except nav ── */
@media (max-width: 768px) {
  .vl-tabbar { display: block !important; }
  /* Add bottom padding to all pages so content clears the tabbar */
  .vl-main { padding-bottom: calc(68px + env(safe-area-inset-bottom)) !important; }
  /* Homepage hero doesn't need padding — it's fullscreen */
  .t-index .vl-main { padding-bottom: 0 !important; }
}

/* cart mobile — see final block below */

/* ── ATC BUTTON — no text wrapping ever ── */
.vl-atc {
  white-space: nowrap !important;
  overflow: hidden !important;
}
@media (max-width: 480px) {
  .vl-atc { letter-spacing: 0.1em !important; font-size: 11px !important; }
  .vl-atc-icon { display: none !important; }
}

/* ── COLLECTION GRID — correct on all sizes ── */
.vl-coll__grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2px !important;
}
@media (max-width: 900px) { .vl-coll__grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 480px) { .vl-coll__grid { grid-template-columns: 1fr !important; } }

/* ── PREVENT HOMEPAGE BOTTOM PADDING SINCE HERO IS FULLSCREEN ── */
.t-index .vl-main { padding-top: 0 !important; }

/* ══════════════════════════════════════════════════════════
   FINAL MOBILE CART FIX — One authoritative block
   Overrides everything above. Do not add more cart rules.
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Cart panel slides up from bottom, sits above tabbar */
  .vl-cart-panel {
    position: fixed !important;
    top: auto !important;
    bottom: 68px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 75vh !important;
    max-height: 75vh !important;
    transform: translateY(110%) !important;
    border-radius: 20px 20px 0 0 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    z-index: 900 !important;
  }
  .vl-cart-panel.open {
    transform: translateY(0) !important;
  }
  /* Head — fixed height, never shrinks */
  .vl-cart-head {
    flex: 0 0 auto !important;
    min-height: 60px !important;
  }
  /* Body — scrollable, takes remaining space */
  .vl-cart-body {
    flex: 1 1 0% !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
  /* Footer — fixed height, NEVER shrinks, always visible */
  .vl-cart-foot {
    flex: 0 0 auto !important;
    min-height: 88px !important;
    padding: 14px 20px 16px !important;
    border-top: 1px solid rgba(59,130,196,0.1) !important;
    background: #fff !important;
  }
  /* Checkout button — full width, always visible */
  .vl-cart-ck {
    display: flex !important;
    width: 100% !important;
    height: 52px !important;
    min-height: 52px !important;
    background: #1A5FA8 !important;
    color: #fff !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 24px !important;
    font-size: 11px !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    border: none !important;
    font-family: inherit !important;
    cursor: pointer !important;
  }
}

/* ── PRODUCT IMAGE SLIDER ── */
.vl-pdp__slider {
  display: flex !important;
  width: 100% !important;
  height: 100% !important;
  overflow-x: scroll !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  position: relative !important;
}
.vl-pdp__slider::-webkit-scrollbar { display: none !important; }
.vl-pdp__slide {
  min-width: 100% !important;
  height: 100% !important;
  position: relative !important;
  flex-shrink: 0 !important;
  scroll-snap-align: start !important;
}
.vl-pdp__slide img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* ══════════════════════════════════════════════════════════
   LANGUAGE SWITCHER STYLES
══════════════════════════════════════════════════════════ */
.vl-lang-wrap {
  display: flex;
  align-items: center;
  margin-left: 4px;
}
.vl-lang-form { margin: 0; }
.vl-lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 8px;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  transition: color 0.2s;
}
.vl-lang-btn:hover { color: var(--blue-deep); }
.vl-lang-active {
  color: var(--blue-deep);
  font-weight: 500;
}
.vl-lang-sep {
  color: var(--ink-5);
  font-size: 9px;
}
.vl-lang-other {
  color: var(--ink-4);
}

/* ══════════════════════════════════════════════════════════
   FULL RTL / ARABIC SUPPORT
   Applied when html[lang="ar"] is set by Shopify
══════════════════════════════════════════════════════════ */

/* Load Arabic font */
@import url('https://fonts.googleapis.com/css2?family=Noto+Naskh+Arabic:wght@400;500;600&display=swap');

/* Base RTL */
[lang="ar"] body {
  font-family: 'Noto Naskh Arabic', 'Cormorant', Georgia, serif;
}
[lang="ar"] * {
  letter-spacing: 0 !important;
}

/* Nav RTL */
[lang="ar"] .vl-nav__left { order: 3; }
[lang="ar"] .vl-nav__right { order: 1; flex-direction: row-reverse; }
[lang="ar"] .vl-nav__icons { flex-direction: row-reverse; }
[lang="ar"] .vl-lang-wrap { margin-left: 0; margin-right: 4px; }

/* Hero RTL */
[lang="ar"] .vl-hero {
  grid-template-columns: 54% 46%;
}
[lang="ar"] .vl-hero__left {
  order: 2;
  text-align: right;
  padding: 100px 52px 80px 56px;
}
[lang="ar"] .vl-hero__right { order: 1; }
[lang="ar"] .vl-hero__eyebrow { flex-direction: row-reverse; }
[lang="ar"] .vl-hero__brand,
[lang="ar"] .vl-hero__product-name { text-align: right; }
[lang="ar"] .vl-hero__arabic {
  font-size: clamp(22px, 2.8vw, 32px);
  color: var(--blue-mid);
  font-weight: 500;
  unicode-bidi: plaintext;
  text-align: right;
}
[lang="ar"] .vl-hero__tagline { text-align: right; max-width: 100%; }
[lang="ar"] .vl-hero__price-row { flex-direction: row-reverse; }
[lang="ar"] .vl-hero__ctas { flex-direction: row-reverse; }
[lang="ar"] .vl-hero__trust { flex-direction: row-reverse; }
[lang="ar"] .vl-hero__divider { margin-right: 0; margin-left: auto; }

/* Product section RTL */
[lang="ar"] .vl-product__info {
  text-align: right;
  direction: rtl;
}
[lang="ar"] .vl-product__name,
[lang="ar"] .vl-product__brand { text-align: right; }
[lang="ar"] .vl-product__price-row { flex-direction: row-reverse; }
[lang="ar"] .vl-product__trust { flex-direction: row-reverse; }
[lang="ar"] .vl-product__trust-item { text-align: right; }
[lang="ar"] .vl-note { flex-direction: row-reverse; }
[lang="ar"] .vl-product__acc-trigger { flex-direction: row-reverse; text-align: right; }

/* Scent section RTL */
[lang="ar"] .vl-scent__content {
  direction: rtl;
  text-align: right;
  border-right: none;
  border-left: 1px solid rgba(255,255,255,0.08);
  padding: 80px 52px 80px 64px;
}
[lang="ar"] .vl-scent__notes { direction: rtl; text-align: right; }
[lang="ar"] .vl-scent__note { flex-direction: row-reverse; }
[lang="ar"] .vl-scent__longevity { flex-direction: row-reverse; }

/* Brand story RTL */
[lang="ar"] .vl-story__inner { direction: rtl; }
[lang="ar"] .vl-story__content { text-align: right; }

/* Newsletter RTL */
[lang="ar"] .vl-nl { direction: rtl; }
[lang="ar"] .vl-nl__form { flex-direction: row-reverse; }

/* Footer RTL */
[lang="ar"] .vl-footer__grid { direction: rtl; }
[lang="ar"] .vl-footer__col { text-align: right; }
[lang="ar"] .vl-footer__btm-inner { flex-direction: row-reverse; }
[lang="ar"] .vl-footer__social { flex-direction: row-reverse; }

/* Cart RTL */
[lang="ar"] .vl-cart-panel {
  right: auto !important;
  left: 0 !important;
}
[lang="ar"] .vl-cart-panel.open {
  transform: translateX(0) !important;
}
[lang="ar"] .vl-cart-panel:not(.open) {
  transform: translateX(-100%) !important;
}
[lang="ar"] .vl-cart-head,
[lang="ar"] .vl-cart-item { direction: rtl; text-align: right; }
[lang="ar"] .vl-cart-item-info { text-align: right; }
[lang="ar"] .vl-cart-ck { flex-direction: row-reverse; }

/* Cart mobile RTL */
@media (max-width: 768px) {
  [lang="ar"] .vl-cart-panel {
    right: 0 !important;
    left: 0 !important;
    transform: translateY(110%) !important;
  }
  [lang="ar"] .vl-cart-panel.open {
    transform: translateY(0) !important;
  }
}

/* Tabbar RTL */
[lang="ar"] .vl-tabbar-inner { flex-direction: row-reverse; }

/* Collection page RTL */
[lang="ar"] .vl-coll__hd { direction: rtl; text-align: right; }
[lang="ar"] .vl-pc__info { text-align: right; direction: rtl; }
[lang="ar"] .vl-pc__price-row { flex-direction: row-reverse; }

/* PDP RTL */
[lang="ar"] .vl-pdp__info { direction: rtl; text-align: right; }
[lang="ar"] .vl-pdp__layout { direction: rtl; }

/* Pages RTL */
[lang="ar"] .vl-about,
[lang="ar"] .vl-contact,
[lang="ar"] .vl-page,
[lang="ar"] .vl-auth,
[lang="ar"] .vl-acct { direction: rtl; text-align: right; }

/* Brand statement RTL */
[lang="ar"] .vl-stmt { direction: rtl; }
[lang="ar"] .vl-stmt__label { flex-direction: row-reverse; }

/* Full quote RTL */
[lang="ar"] .vl-quote { direction: rtl; text-align: right; }

/* 404 RTL */
[lang="ar"] .vl-404 { direction: rtl; }

/* Mobile hero RTL */
@media (max-width: 1024px) {
  [lang="ar"] .vl-hero__left { padding: 44px 32px 56px; text-align: right; }
  [lang="ar"] .vl-hero__right { order: -1; }
}
@media (max-width: 640px) {
  [lang="ar"] .vl-hero__ctas { flex-direction: column; align-items: stretch; }
  [lang="ar"] .vl-hero__trust { flex-direction: row-reverse; flex-wrap: wrap; }
}

/* ── GALLERY ARROWS ── */
.vl-pdp__gal {
  position: relative;
}
.vl-gal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(59,130,196,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, opacity 0.2s;
  box-shadow: 0 2px 12px rgba(26,35,50,0.1);
  opacity: 0.85;
}
.vl-gal-arrow:hover {
  background: rgba(255,255,255,1);
  border-color: var(--blue-mid);
  color: var(--blue-deep);
  opacity: 1;
  transform: translateY(-50%) scale(1.08);
}
.vl-gal-arrow--prev {
  left: 12px;
}
.vl-gal-arrow--next {
  right: 12px;
}
.vl-gal-arrow:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}
@media (max-width: 640px) {
  .vl-gal-arrow {
    width: 36px;
    height: 36px;
  }
  .vl-gal-arrow--prev { left: 8px; }
  .vl-gal-arrow--next { right: 8px; }
}
