/* ═══════════════════════════════════════════════════
   VELORE — CSS Design System
   Customize variables below for easy theming
═══════════════════════════════════════════════════ */

/* ── VARIABLES ─────────────────────────────────── */
:root {
  /* Colors — edit these to retheme the whole site */
  --dark:       #F7F3EE;
  --dark-mid:   #cdb89a;
  --dark-card:  #E0D0C1;
  --dark-border:#413C36;
  --cream:      #38483A;
  --cream-light:#faf7f2;
  --gold:       #a88923;
  --gold-light: #d5af3d;
  --gold-pale:  #f5e9c8;
  --text-muted: #1E2A24;
  --white:      #ffffff;

  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;

  /* Spacing / Radius */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-pill: 100px;

  /* Transition */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET / BASE ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--cream);
  font-weight: 300;
  overflow-x: hidden;
}

body.inner-page { padding-top: 90px; }

/* ── NAVBAR ────────────────────────────────────── */
.velore-nav {
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
  padding: 1.2rem 0;
}
.velore-nav.scrolled,
.velore-nav.inner-nav {
  background: rgba(200,197,181);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--dark-border);
  padding: 0.8rem 0;
}
.velore-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--cream) !important;
  text-decoration: none;
}
.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #127161 !important;
  transition: color 0.25s;
  padding: 0.5rem 0 !important;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--cream) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 100%; }

.cart-btn {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  color: var(--cream);
  text-decoration: none;
  font-size: 1.1rem;
  transition: border-color 0.25s, background 0.25s;
}
.cart-btn:hover { border-color: var(--gold); color: var(--gold); }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem; font-weight: 500;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ── HERO ──────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg-layer {
  position: absolute; inset: 0;
  background:#f5e9c8;
  z-index: 0;
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-section .container { position: relative; z-index: 2; padding-top: 80px; }

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

.hero-image-col { position: relative; }
.hero-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(500px, 90vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.hero-product-img {
  position: relative; z-index: 2;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.15);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.hero-float-pill {
  position: absolute; bottom: 40px; left: -20px; z-index: 3;
  background: rgba(22,20,15,0.9);
  border: 1px solid var(--dark-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
  color: var(--cream);
  display: flex; gap: 0.5rem; align-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.pill-star { color: var(--gold); }

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; height: 40px; }
  50% { opacity: 1; height: 60px; }
}

/* Reveal animations */
.reveal, .reveal-delay-1, .reveal-delay-2, .reveal-delay-3 {
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 0.8s var(--ease) forwards;
}
.reveal-delay-1 { animation-delay: 0.2s; }
.reveal-delay-2 { animation-delay: 0.4s; }
.reveal-delay-3 { animation-delay: 0.6s; }
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── MARQUEE ───────────────────────────────────── */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 0.85rem 0;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  gap: 0;
}
.marquee-track span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 0 1.5rem;
  font-weight: 500;
}
.marquee-track .dot { padding: 0 0.2rem; opacity: 0.5; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SECTIONS SHARED ───────────────────────────── */
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--gold-light); }
.section-body {
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.9;
  font-size: 0.97rem;
}

/* ── ABOUT ─────────────────────────────────────── */
.about-section {
  padding: 120px 0;
  background: var(--dark-mid);
}
.about-img-wrapper {
  position: relative;
  padding: 20px;
}
.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  position: relative; z-index: 2;
}
.about-img-accent {
  position: absolute;
  top: -10px; right: -10px;
  bottom: 10px; left: 10px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  z-index: 1;
}
.about-stat-card {
  position: absolute;
  bottom: -10px; right: 10px;
  z-index: 3;
  background: var(--gold);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  display: flex; flex-direction: column; align-items: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.75;
  margin-top: 0.25rem;
}
.about-badge {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--cream);
  display: flex; align-items: center; gap: 0.5rem;
}
.about-badge i { color: var(--gold); }

/* ── WHY SECTION ───────────────────────────────── */
.why-section {
  padding: 120px 0;
  background: var(--dark);
}
.why-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
  height: 100%;
}
.why-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-6px);
}
.why-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0 auto 1.5rem;
}
.why-card h5 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── ADVANTAGES ────────────────────────────────── */
.advantage-section {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--dark-mid), var(--dark));
}
.adv-item {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
  transition: border-color 0.3s;
}
.adv-item:hover { border-color: rgba(201,168,76,0.3); }
.adv-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 1rem;
}
.adv-item h5 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.adv-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.adv-bar {
  height: 3px;
  background: var(--dark-border);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.adv-fill {
  height: 100%;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  border-radius: 3px;
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}
.adv-pct {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ── PRODUCT SECTION ───────────────────────────── */
.product-section {
  padding: 120px 0;
  background: var(--dark);
}
.product-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.product-carousel-img {
  height: 380px;
  object-fit: cover;
}
.carousel-ctrl-icon {
  color: var(--cream);
  font-size: 1.2rem;
  background: rgba(10,9,6,0.6);
  border: 1px solid var(--dark-border);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.carousel-dots { bottom: 12px; }
.carousel-dots button {
  width: 6px; height: 6px;
  border-radius: 50% !important;
  background-color: rgba(245,240,232,0.4) !important;
  border: none !important;
  margin: 0 3px;
  transition: background-color 0.3s, transform 0.3s;
}
.carousel-dots button.active {
  background-color: var(--gold) !important;
  transform: scale(1.4);
}
.product-info { padding: 2rem; }
.product-category {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.product-stars { font-size: 0.82rem; color: var(--gold); }
.product-stars span { color: var(--text-muted); margin-left: 0.3rem; }
.price-old { font-size: 0.95rem; color: var(--text-muted); text-decoration: line-through; }
.price-new { font-size: 1.6rem; font-family: var(--font-display); color: var(--cream); }
.price-save {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201,168,76,0.25);
  letter-spacing: 0.05em;
}
.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.product-option-group { margin-top: 1.25rem; }
.option-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.size-btn {
  border: 1px solid var(--dark-border);
  background: transparent;
  color: var(--cream);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.size-btn.active,
.size-btn:hover { border-color: var(--gold); background: rgba(201,168,76,0.1); }
.best-val {
  font-size: 0.6rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.qty-control {
  display: flex; align-items: center;
  gap: 1rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.8rem;
}
.qty-btn {
  background: none; border: none;
  color: var(--cream); font-size: 1.1rem;
  cursor: pointer; line-height: 1;
  padding: 0.2rem 0.4rem;
  transition: color 0.2s;
}
.qty-btn:hover { color: var(--gold); }
#qtyDisplay { font-size: 0.95rem; min-width: 20px; text-align: center; }

.product-perks {
  display: flex; flex-direction: column; gap: 0.5rem;
  border-top: 1px solid var(--dark-border);
  padding-top: 1.25rem;
}
.perk {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 0.5rem;
}
.perk i { color: var(--gold); }

/* ── BUTTONS ───────────────────────────────────── */
.btn-velore-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold);
  color: var(--dark);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 0.75rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.btn-velore-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-velore-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}
.btn-velore-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── TESTIMONIALS ──────────────────────────────── */
.testimonial-section {
  padding: 120px 0;
  background: var(--dark-mid);
}
.testi-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  height: 100%;
  transition: border-color 0.3s;
}
.testi-card:hover { border-color: rgba(201,168,76,0.3); }
.featured-testi {
  border-color: rgba(201,168,76,0.25);
  background: linear-gradient(135deg, var(--dark-card), rgba(201,168,76,0.05));
}
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }
.testi-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.9;
  font-style: italic;
}
.testi-author {
  display: flex; align-items: center; gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--dark-border);
}
.testi-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.testi-author strong { display: block; font-size: 0.88rem; color: var(--cream); font-weight: 400; }
.testi-author span { font-size: 0.75rem; color: var(--text-muted); }

/* ── NEWSLETTER ────────────────────────────────── */
.newsletter-section {
  padding: 80px 0;
  background: var(--dark);
}
.newsletter-box {
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  background-image: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.06), transparent);
}
.newsletter-box h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
}
.newsletter-box h3 em { color: var(--gold-light); font-style: italic; }
.newsletter-sub { font-size: 0.9rem; color: var(--text-muted); }
.newsletter-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  color: var(--cream);
  padding: 0.75rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  flex: 1;
}
.newsletter-input::placeholder { color: var(--text-muted); }
.newsletter-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
  box-shadow: none;
}
.nl-note { font-size: 0.75rem; color: var(--text-muted); }

/* ── FOOTER ────────────────────────────────────── */
.velore-footer {
  background: var(--dark-mid);
  border-top: 1px solid var(--dark-border);
  padding: 80px 0 0;
}
.mini-footer { padding-top: 0; }
.footer-tagline { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; max-width: 280px; }
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 38px; height: 38px;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s;
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }
.footer-heading {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--dark-border);
  margin-top: 60px;
  padding: 1.5rem 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-wrap: wrap; gap: 1rem;
}
.payment-icons { display: flex; gap: 1rem; font-size: 1.1rem; color: var(--text-muted); }

/* ── TOAST ─────────────────────────────────────── */
.velore-toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--cream);
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.velore-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── INNER PAGES ───────────────────────────────── */
.inner-hero {
  padding: 80px 0 60px;
  background: linear-gradient(160deg, var(--dark-mid), var(--dark));
  border-bottom: 1px solid var(--dark-border);
  text-align: center;
}
.checkout-secure-badge {
  font-size: 0.78rem;
  color: var(--text-muted);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.9rem;
}

/* ── CART PAGE ─────────────────────────────────── */
.cart-section { padding: 60px 0 100px; }
.cart-empty-state {
  text-align: center;
  padding: 80px 20px;
}
.empty-bag-icon {
  font-size: 4rem;
  color: var(--dark-border);
  margin-bottom: 1.5rem;
}
.cart-empty-state h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.cart-empty-state p { color: var(--text-muted); margin-bottom: 1.5rem; }

.cart-item {
  display: flex; gap: 1.5rem; align-items: flex-start;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s;
}
.cart-item:hover { border-color: rgba(201,168,76,0.2); }
.cart-item-img {
  width: 90px; height: 90px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.cart-item-details { flex: 1; }
.cart-item-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.cart-item-size { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.cart-item-controls {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.cart-item-price { font-size: 1rem; color: var(--cream); }
.cart-remove {
  background: none; border: none;
  color: var(--text-muted); font-size: 0.8rem;
  cursor: pointer; letter-spacing: 0.05em;
  transition: color 0.2s; padding: 0;
  font-family: var(--font-body);
}
.cart-remove:hover { color: #e07070; }

.order-summary-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.summary-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.total-row { color: var(--cream); font-size: 1.05rem; }
.summary-divider {
  height: 1px;
  background: var(--dark-border);
  margin: 1rem 0;
}
.promo-input {
  flex: 1;
  background: var(--dark);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  color: var(--cream);
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
  font-family: var(--font-body);
}
.promo-input:focus { outline: none; border-color: var(--gold); }
.promo-btn {
  background: transparent;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  color: var(--cream);
  padding: 0.5rem 0.9rem;
  font-size: 0.78rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 0.2s, color 0.2s;
}
.promo-btn:hover { border-color: var(--gold); color: var(--gold); }
.discount-applied { color: var(--gold) !important; }
.continue-shopping { font-size: 0.82rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.continue-shopping:hover { color: var(--gold); }
.secure-badges {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ── CHECKOUT ──────────────────────────────────── */
.checkout-section { padding: 60px 0 100px; }
.checkout-steps {
  display: flex; align-items: center; justify-content: center; gap: 0;
}
.step {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.step.active { color: var(--gold); }
.step.complete { color: var(--cream); }
.step-num {
  width: 28px; height: 28px;
  border: 1px solid var(--dark-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
}
.step.active .step-num { border-color: var(--gold); background: rgba(201,168,76,0.15); color: var(--gold); }
.step.complete .step-num { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.step-line { flex: 1; height: 1px; background: var(--dark-border); margin: 0 1rem; max-width: 60px; }

.step-section-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.checkout-step-panel { /* revealed by JS */ }

.velore-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  color: var(--cream);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.25s;
}
.velore-input::placeholder { color: var(--text-muted); }
.velore-input:focus {
  outline: none; border-color: var(--gold);
  background: rgba(201,168,76,0.04);
  box-shadow: none;
}
.velore-select { appearance: none; cursor: pointer; }
.velore-textarea { resize: vertical; min-height: 120px; }

.shipping-options { display: flex; flex-direction: column; gap: 0.75rem; }
.shipping-option {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: border-color 0.25s;
}
.shipping-option.active { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.shipping-option:hover { border-color: rgba(201,168,76,0.4); }
.shp-left { display: flex; flex-direction: column; }
.shp-left strong { color: var(--cream); font-size: 0.9rem; font-weight: 400; }
.shp-left span { color: var(--text-muted); font-size: 0.78rem; margin-top: 0.15rem; }
.shp-price { color: var(--gold); font-size: 0.9rem; }

.payment-method-tabs { flex-wrap: wrap; }
.pay-tab {
  flex: 1;
  padding: 0.6rem 1rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.82rem;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}
.pay-tab.active { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }
.card-input-wrapper { position: relative; }
.card-type-icon {
  position: absolute; right: 1rem; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

/* Checkout summary items */
.ck-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--dark-border);
}
.ck-item:last-child { border-bottom: none; }
.ck-item img { width: 48px; height: 48px; border-radius: var(--radius-sm); object-fit: cover; }
.ck-item-info { flex: 1; }
.ck-item-name { font-size: 0.85rem; color: var(--cream); }
.ck-item-size { font-size: 0.75rem; color: var(--text-muted); }
.ck-item-price { font-size: 0.9rem; color: var(--cream); }

/* Success modal */
.velore-modal {
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  color: var(--cream);
}
.velore-modal h3 { font-family: var(--font-display); font-weight: 300; }
.velore-modal p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; }
.success-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05));
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--gold);
  margin: 0 auto;
}
.order-num { font-size: 0.82rem; color: var(--gold); letter-spacing: 0.1em; }

/* ── CONTACT PAGE ──────────────────────────────── */
.contact-section { padding: 60px 0 100px; }
.contact-info-panel {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
}
.contact-info-item {
  display: flex; gap: 1rem; margin-bottom: 2rem;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-item h6 { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.contact-info-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin: 0; }
.contact-form-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
}
.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
}
.contact-form-card h3 em { color: var(--gold-light); font-style: italic; }

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 991px) {
  .hero-image-col { margin-top: 2rem; }
  .hero-float-pill { left: 50%; transform: translateX(-50%); bottom: -20px; }
  .about-img-wrapper { margin-bottom: 2rem; }
  .newsletter-box { padding: 2.5rem 1.5rem; }
  .contact-form-card { padding: 2rem 1.5rem; }
}
@media (max-width: 767px) {
  .hero-title { font-size: 2.8rem; }
  .checkout-steps { gap: 0.5rem; }
  .step-label { display: none; }
  .step-line { max-width: 30px; }
  .cart-item { flex-direction: column; }
  .cart-item-img { width: 100%; height: 200px; border-radius: var(--radius-sm); }
}


/* ═══════════════════════════════════════════════
   MULTI-LANGUAGE — Language Toggle Button & RTL
   ─────────────────────────────────────────────
   Toggle button sits in the navbar next to cart.
   RTL overrides flip layout for Arabic.
═══════════════════════════════════════════════ */

/* ── Language Toggle Button ─────────────────── */
.lang-toggle {
  background: transparent;
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: var(--radius-pill);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.85rem;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
  line-height: 1.4;
}
.lang-toggle:hover {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* RTL support */
html.rtl {
  direction: rtl;
}
html.rtl body {
  text-align: right;
}
/* Flip margins and paddings where needed */
html.rtl .me-3 {
  margin-left: 1rem !important;
  margin-right: 0 !important;
}
html.rtl .ms-2 {
  margin-right: 0.5rem !important;
  margin-left: 0 !important;
}
/* For the carousel controls */
html.rtl .carousel-control-prev {
  left: auto;
  right: 10px;
  transform: rotate(180deg);
}
html.rtl .carousel-control-next {
  right: auto;
  left: 10px;
  transform: rotate(180deg);
}
/* Offcanvas cart */
html.rtl .offcanvas-end {
  left: 0;
  right: auto;
  border-left: none;
  border-right: 1px solid rgba(200,150,108,0.2);
}
/* Reverse order of flex elements if needed */
html.rtl .d-flex {
  flex-direction: row-reverse;
}
/* Keep certain elements in LTR (e.g., numbers) */
html.rtl .product-price, html.rtl .price-new, html.rtl .qty-control {
  direction: ltr;
  display: inline-block;
}
/* ══════════════════════════════════════════════
   RTL – Product Card Specific Overrides
   ══════════════════════════════════════════════ */
html.rtl .product-card .row {
  flex-direction: row-reverse;
}

/* Right‑align all text inside the product info panel */
html.rtl .product-info {
  text-align: right;
}

/* Keep price & quantity control in LTR for numbers,
   but align them to the right side */
html.rtl .product-price,
html.rtl .price-new,
html.rtl .price-old,
html.rtl .price-save {
  direction: ltr;
  display: inline-block;
}

html.rtl .qty-control {
  display: inline-flex;
  direction: ltr;
}

/* Push the quantity selector to the right side */
html.rtl .product-option-group.d-flex {
  justify-content: flex-end;
}

/* Ensure the size buttons row also aligns to the right */
html.rtl .product-option-group .d-flex {
  justify-content: flex-end;
  flex-direction: row; /* keep buttons in natural order */
}

/* Align perks to the right */
/*html.rtl .product-perks .perk {*/
/*  justify-content: flex-end;*/
/*}*/

/* Buttons – keep them centered or full width,
   but remove any left alignment */
html.rtl .btn-velore-primary,
html.rtl .btn-velore-ghost {
  text-align: center;
  justify-content: center;
}

html.rtl .product-info .d-flex.align-items-baseline {
  justify-content: flex-end;
}

/* Size buttons row – right‑align */
html.rtl .product-option-group .d-flex.gap-2 {
  justify-content: flex-end;
}

/* Quantity selector row – right‑align */
html.rtl .product-option-group.d-flex.align-items-center {
  justify-content: flex-end;
}
html.rtl .about-badge {
  float: right;
}



/* Mobile nav – open state */
.navbar-collapse.show {
  background: #faf7f2;              /* deep brand green from your palette */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 0.5rem;
}