/* ═══════════════════════════════════════════════════
   LURA Store — Design System
   Premium vanilla CSS · RTL-first · Mobile-friendly
   ═══════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  /* Brand */
  --clr-primary: #d2a4a4;
  --clr-primary-light: #e5b3b3;
  --clr-primary-dark: #b88c8c;
  --clr-primary-glow: rgba(210, 164, 164, 0.30);
  --clr-primary-subtle: rgba(210, 164, 164, 0.08);

  /* Neutrals */
  --clr-black: #1a1a1a;
  --clr-900: #222;
  --clr-700: #444;
  --clr-500: #666;
  --clr-400: #999;
  --clr-300: #bbb;
  --clr-200: #e0e0e0;
  --clr-100: #f0f0f0;
  --clr-50: #f8f7f6;
  --clr-white: #fff;

  /* Accent */
  --clr-hero: #fdf8f4;
  --clr-success: #7dd329;
  --clr-whatsapp: #25d366;
  --clr-star: #f5a623;
  --clr-warning: #e07070;

  /* Typography */
  --ff: 'PingARLT', 'Inter', 'Segoe UI', sans-serif;
  --fs-xs: .6875rem;   /* 11px */
  --fs-sm: .8125rem;   /* 13px */
  --fs-base: .9375rem; /* 15px */
  --fs-lg: 1.125rem;   /* 18px */
  --fs-xl: 1.375rem;   /* 22px */
  --fs-2xl: 1.75rem;   /* 28px */
  --fs-3xl: 2.25rem;   /* 36px */
  --fs-hero: clamp(1.75rem, 5vw, 3.25rem);

  /* Spacing */
  --sp-1: .25rem;
  --sp-2: .5rem;
  --sp-3: .75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;

  /* Layout */
  --max-w: 1100px;
  --header-h: 56px;

  /* Shadows */
  --sh-xs: 0 1px 3px rgba(0,0,0,.04);
  --sh-sm: 0 2px 8px rgba(0,0,0,.05);
  --sh-md: 0 6px 20px rgba(0,0,0,.07);
  --sh-lg: 0 12px 36px rgba(0,0,0,.10);
  --sh-pink: 0 8px 28px var(--clr-primary-glow);
  --sh-header: 0 2px 20px rgba(0,0,0,.06);

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --r-full: 999px;

  /* Transitions */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --tr-fast: .15s var(--ease);
  --tr-base: .25s var(--ease);
  --tr-slow: .45s var(--ease);
}


/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--clr-900);
  background: var(--clr-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }


/* ─── Container ─── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}


/* ═══════════════════════════════════════
   MARQUEE BANNER
   ═══════════════════════════════════════ */
.marquee-bar {
  background: var(--clr-black);
  color: var(--clr-white);
  overflow: hidden;
  padding: 7px 0;
  font-size: var(--fs-xs);
  font-weight: 700;
  user-select: none;
  position: relative;
  z-index: 60;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  gap: 0;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-track span {
  white-space: nowrap;
  padding: 0 var(--sp-4);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-100);
  transition: box-shadow var(--tr-base);
}

.site-header.scrolled { box-shadow: var(--sh-header); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.header-logo img { height: 36px; }

.header-actions-start,
.header-actions-end {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.header-icon-btn {
  font-size: 22px;
  color: var(--clr-700);
  transition: color var(--tr-fast);
  padding: var(--sp-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-icon-btn:hover { color: var(--clr-primary); }

.cart-wrapper { position: relative; }

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: var(--clr-white);
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform var(--tr-fast), background var(--tr-fast);
}

.cart-badge.bump {
  animation: badge-bump .3s var(--ease);
}

@keyframes badge-bump {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.5); }
  100% { transform: scale(1); }
}


/* ─── Main Navigation ─── */
.main-nav {
  border-top: 1px solid var(--clr-100);
  background: var(--clr-50);
}

.main-nav .container {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-top: 2px;
  padding-bottom: 2px;
}

.main-nav .container::-webkit-scrollbar { display: none; }

.nav-link {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-500);
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: var(--r-full);
  transition: color var(--tr-fast), background var(--tr-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--clr-primary-dark);
  background: var(--clr-primary-subtle);
}


/* ═══════════════════════════════════════
   MOBILE MENU
   ═══════════════════════════════════════ */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--tr-base), visibility var(--tr-base);
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--clr-white);
  box-shadow: -4px 0 30px rgba(0,0,0,.12);
  padding: var(--sp-8) var(--sp-6);
  transform: translateX(100%);
  transition: transform var(--tr-slow);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.mobile-menu-overlay.open .mobile-menu {
  transform: translateX(0);
}

.mobile-menu-close {
  align-self: flex-start;
  font-size: 24px;
  color: var(--clr-500);
  padding: var(--sp-2);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.mobile-nav a {
  font-size: var(--fs-base);
  font-weight: 600;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-sm);
  transition: background var(--tr-fast), color var(--tr-fast);
}

.mobile-nav a:hover {
  background: var(--clr-primary-subtle);
  color: var(--clr-primary-dark);
}

.mobile-menu-contact {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--clr-100);
}

.mobile-menu-contact a {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--clr-500);
}

.mobile-menu-contact a i {
  color: var(--clr-primary);
}


/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */
.hero {
  background: var(--clr-hero);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-8);
  padding: var(--sp-10) 0 var(--sp-12);
}

.hero-text {
  text-align: center;
  align-items: center;
  order: 2;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.hero-label span {
  font-size: var(--fs-xs);
  color: var(--clr-400);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-label img { height: 20px; opacity: .5; }

.hero-subtitle {
  font-size: clamp(var(--fs-base), 2.8vw, var(--fs-xl));
  font-weight: 700;
  color: var(--clr-700);
  margin-bottom: var(--sp-2);
  line-height: 1.4;
}

.hero-title {
  font-size: var(--fs-hero);
  font-weight: 700;
  color: var(--clr-primary);
  line-height: 1.2;
  margin-bottom: var(--sp-6);
}

.hero-wave {
  display: block;
  margin: 0 auto var(--sp-6);
  max-width: 200px;
}

.hero-image {
  order: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 340px;
  border-radius: var(--r-xl);
  box-shadow: 0 20px 50px -10px rgba(0,0,0,.12);
}

@media (min-width: 768px) {
  .hero-inner {
    flex-direction: row-reverse;
    padding: var(--sp-12) 0 var(--sp-16);
  }
  .hero-text { flex: 1; text-align: right; order: unset; }
  .hero-image { flex: 1; order: unset; }
  .hero-wave { margin: 0 0 var(--sp-6) auto; }
}

@media (max-width: 767px) {
  .hero-text {
    display: flex;
    flex-direction: column;
  }
  .hero-subtitle { order: 1; }
  .hero-title { order: 2; }
  .hero-wave { order: 3; }
  .hero-text .btn { order: 4; margin-bottom: var(--sp-4); }
  .hero-label {
    order: 5;
    margin-top: var(--sp-4);
    margin-bottom: 0;
  }
}


/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-weight: 700;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: background var(--tr-base), color var(--tr-base), transform var(--tr-fast), box-shadow var(--tr-base);
  white-space: nowrap;
  border: none;
  line-height: 1;
  text-align: center;
}

.btn:active { transform: scale(.97); }

/* Primary (rose) */
.btn-primary {
  background: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: 0 4px 16px var(--clr-primary-glow);
}
.btn-primary:hover {
  background: var(--clr-black);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
}
.btn-outline:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
}

/* Dark */
.btn-dark {
  background: var(--clr-900);
  color: var(--clr-white);
}
.btn-dark:hover { background: var(--clr-primary); }

/* Beige (hero CTA) */
.btn-beige {
  background: #ede8e2;
  color: var(--clr-700);
  box-shadow: var(--sh-xs);
}
.btn-beige:hover {
  background: #ddd7cf;
  transform: translateY(-1px);
}

/* Sizes */
.btn-sm { font-size: var(--fs-xs); padding: 8px 20px; }
.btn-md { font-size: var(--fs-sm); padding: 10px 28px; }
.btn-lg { font-size: var(--fs-base); padding: 14px 36px; }
.btn-block { width: 100%; }


/* ═══════════════════════════════════════
   SECTION UTILITIES
   ═══════════════════════════════════════ */
.section { padding: var(--sp-12) 0; }
.section-sm { padding: var(--sp-8) 0; }
.section-lg { padding: var(--sp-16) 0; }

.section-title {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--clr-900);
  text-align: center;
  margin-bottom: var(--sp-2);
}

.section-subtitle {
  font-size: var(--fs-sm);
  color: var(--clr-400);
  text-align: center;
  margin-bottom: var(--sp-10);
}

.section-title-bar {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--clr-900);
  border-right: 4px solid var(--clr-primary);
  padding-right: var(--sp-3);
  display: inline-block;
}


/* ═══════════════════════════════════════
   PRODUCT CARDS (Homepage Grid)
   ═══════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
}

@media (min-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-card {
  text-align: center;
  transition: transform var(--tr-base);
}

.product-card:hover { transform: translateY(-4px); }

.product-card__image-box {
  background: var(--clr-hero);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
  position: relative;
}

.product-card__img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  transition: transform .6s var(--ease);
}

.product-card:hover .product-card__img {
  transform: scale(1.08);
}

.product-card__wave {
  padding: 0 var(--sp-4);
  margin-top: var(--sp-2);
}

.product-card__name {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--clr-900);
  margin-top: var(--sp-4);
}

.product-card__price {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--clr-primary);
  margin-top: var(--sp-2);
}

.product-card__price small {
  font-size: var(--fs-sm);
  font-weight: 600;
}


/* ─── Featured Layout (Latest Products) ─── */
.latest-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

@media (min-width: 900px) {
  .latest-grid {
    flex-direction: row;
  }
  .latest-featured { width: 42%; }
  .latest-stacked  { width: 58%; }
}

/* Featured (big) card */
.featured-card {
  display: block;
  background: var(--clr-white);
  border: 1px solid var(--clr-100);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow var(--tr-base), transform var(--tr-base);
  height: 100%;
}

.featured-card:hover {
  box-shadow: 0 10px 30px var(--clr-primary-glow);
  transform: translateY(-3px);
}

.featured-card__img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.featured-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.featured-card:hover .featured-card__img img { transform: scale(1.06); }

.featured-card__body {
  padding: var(--sp-4);
  text-align: right;
}

/* Horizontal card */
.hcard {
  display: flex;
  flex-direction: row-reverse;
  background: var(--clr-white);
  border: 1px solid var(--clr-100);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow var(--tr-base), transform var(--tr-base);
}

.hcard:hover {
  box-shadow: 0 8px 24px var(--clr-primary-glow);
  transform: translateY(-2px);
}

.hcard__thumb {
  width: 120px;
  min-width: 120px;
  height: 130px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.hcard__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.hcard:hover .hcard__thumb img { transform: scale(1.07); }

.hcard__body {
  flex: 1;
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-1);
  text-align: right;
}

.latest-stacked {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}


/* ─── Badges ─── */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
  font-size: 9px;
  font-weight: 700;
  color: var(--clr-white);
  padding: 3px 8px;
  border-radius: 5px;
}

.badge-pink   { background: var(--clr-primary); }
.badge-rose   { background: var(--clr-primary-light); }
.badge-dark   { background: var(--clr-900); }
.badge-green  { background: var(--clr-success); }


/* ─── Stars ─── */
.stars {
  display: inline-flex;
  gap: 1px;
  color: var(--clr-star);
  font-size: var(--fs-xs);
}


/* ═══════════════════════════════════════
   REVIEW CARDS
   ═══════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(4, 1fr); }
}

.review-card {
  background: var(--clr-white);
  border: 1px solid #f5eaea;
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-4);
  box-shadow: 0 4px 14px rgba(210,164,164,.06);
  transition: box-shadow var(--tr-base), transform var(--tr-base);
  text-align: right;
}

.review-card:hover {
  box-shadow: 0 10px 28px rgba(210,164,164,.16);
  transform: translateY(-3px);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-direction: row-reverse;
  margin-bottom: var(--sp-3);
}

.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #f5e0e0;
  flex-shrink: 0;
}

.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__name {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--clr-900);
}

.review-card__text {
  font-size: var(--fs-xs);
  color: var(--clr-500);
  line-height: 1.7;
}


/* ═══════════════════════════════════════
   FEATURE CARDS
   ═══════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}

@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

.feat-card {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  text-align: center;
  box-shadow: var(--sh-pink);
  transition: transform var(--tr-base), box-shadow var(--tr-base);
}

.feat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px var(--clr-primary-glow);
}

.feat-card__icon { font-size: 28px; }

.feat-card__title {
  font-size: var(--fs-sm);
  font-weight: 700;
}

.feat-card__desc {
  font-size: 10px;
  opacity: .8;
  line-height: 1.7;
}


/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer {
  background: var(--clr-white);
  border-top: 1px solid var(--clr-100);
  padding-top: var(--sp-12);
  padding-bottom: var(--sp-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
  text-align: right;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

.footer-logo { height: 32px; margin-bottom: var(--sp-5); }

.footer-brand p {
  font-size: var(--fs-xs);
  color: var(--clr-500);
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}

.footer-social a {
  font-size: 20px;
  color: var(--clr-300);
  transition: color var(--tr-fast);
}

.footer-social a:hover { color: var(--clr-primary); }

.footer-links h4,
.footer-contact h4 {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--clr-900);
  margin-bottom: var(--sp-4);
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-links a {
  font-size: var(--fs-xs);
  color: var(--clr-500);
  font-weight: 600;
  transition: color var(--tr-fast);
}

.footer-links a:hover { color: var(--clr-primary); }

.footer-contact li {
  font-size: var(--fs-xs);
  color: var(--clr-500);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  justify-content: flex-end;
}

.footer-contact li i { color: var(--clr-primary); }

.footer-bottom {
  margin-top: var(--sp-10);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--clr-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 10px;
  color: var(--clr-400);
}

.footer-payments {
  display: flex;
  gap: var(--sp-3);
  opacity: .4;
  font-size: 22px;
  color: var(--clr-300);
}


/* ═══════════════════════════════════════
   FLOAT BUTTONS
   ═══════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--clr-whatsapp);
  color: var(--clr-white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 90;
  transition: transform var(--tr-fast);
}

.whatsapp-float:hover { transform: scale(1.1); }

.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--clr-primary);
  color: var(--clr-white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px var(--clr-primary-glow);
  z-index: 90;
  border: none;
  cursor: pointer;
  transition: opacity var(--tr-base), transform var(--tr-base), background var(--tr-fast);
  opacity: 0;
  pointer-events: none;
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top-btn:hover {
  background: var(--clr-black);
  transform: translateY(-3px);
}


/* ═══════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════ */
.about-hero {
  background: linear-gradient(135deg, var(--clr-hero) 0%, #f5ebe4 100%);
  padding: var(--sp-16) 0;
  text-align: center;
}

.about-hero h1 {
  font-size: var(--fs-3xl);
  color: var(--clr-900);
  margin-bottom: var(--sp-4);
}

.about-hero p {
  font-size: var(--fs-base);
  color: var(--clr-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

.value-card {
  text-align: center;
  padding: var(--sp-8) var(--sp-6);
  border-radius: var(--r-xl);
  background: var(--clr-white);
  border: 1px solid var(--clr-100);
  transition: box-shadow var(--tr-base), transform var(--tr-base);
}

.value-card:hover {
  box-shadow: var(--sh-pink);
  transform: translateY(-4px);
}

.value-card__icon {
  font-size: 36px;
  color: var(--clr-primary);
  margin-bottom: var(--sp-4);
  display: block;
}

.value-card__title {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--sp-3);
}

.value-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-500);
  line-height: 1.8;
}


/* ═══════════════════════════════════════
   SUPPORT PAGE
   ═══════════════════════════════════════ */
.support-hero {
  background: linear-gradient(135deg, var(--clr-hero) 0%, #f5ebe4 100%);
  padding: var(--sp-16) 0;
  text-align: center;
}

.support-hero h1 {
  font-size: var(--fs-3xl);
  color: var(--clr-900);
  margin-bottom: var(--sp-3);
}

.support-hero p {
  font-size: var(--fs-base);
  color: var(--clr-500);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq-item {
  background: var(--clr-white);
  border: 1px solid var(--clr-100);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow var(--tr-base);
}

.faq-item:hover { box-shadow: var(--sh-sm); }

.faq-question {
  width: 100%;
  text-align: right;
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--clr-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.faq-question i {
  font-size: var(--fs-sm);
  color: var(--clr-primary);
  transition: transform var(--tr-base);
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--tr-slow);
}

.faq-answer-inner {
  padding: 0 var(--sp-5) var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--clr-500);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-100);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  text-align: center;
  transition: box-shadow var(--tr-base), transform var(--tr-base);
}

.contact-card:hover {
  box-shadow: var(--sh-pink);
  transform: translateY(-3px);
}

.contact-card__icon {
  font-size: 32px;
  color: var(--clr-primary);
  margin-bottom: var(--sp-4);
}

.contact-card__title {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--sp-2);
}

.contact-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-500);
  margin-bottom: var(--sp-4);
  line-height: 1.7;
}

/* Contact form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }

.form-group label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-700);
  text-align: right;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--clr-200);
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  color: var(--clr-900);
  text-align: right;
  transition: border-color var(--tr-fast), box-shadow var(--tr-fast);
  outline: none;
  direction: rtl;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px var(--clr-primary-subtle);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}


/* ═══════════════════════════════════════
   UTILITY HELPERS
   ═══════════════════════════════════════ */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-primary { color: var(--clr-primary); }
.text-gray   { color: var(--clr-500); }
.text-xs     { font-size: var(--fs-xs); }
.text-sm     { font-size: var(--fs-sm); }
.text-lg     { font-size: var(--fs-lg); }
.text-xl     { font-size: var(--fs-xl); }
.text-2xl    { font-size: var(--fs-2xl); }
.text-bold   { font-weight: 700; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: var(--sp-1); }
.gap-2 { gap: var(--sp-2); }
.gap-3 { gap: var(--sp-3); }
.gap-4 { gap: var(--sp-4); }
.gap-6 { gap: var(--sp-6); }
.gap-8 { gap: var(--sp-8); }

.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mb-2 { margin-bottom: var(--sp-2); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }

.w-full { width: 100%; }

.hidden { display: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}


/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fade-up .6s var(--ease) both;
}

/* Staggered entrance */
.fade-up-1 { animation-delay: .1s; }
.fade-up-2 { animation-delay: .2s; }
.fade-up-3 { animation-delay: .3s; }
.fade-up-4 { animation-delay: .4s; }


/* ═══════════════════════════════════════
   RESPONSIVE FINE-TUNING
   ═══════════════════════════════════════ */
@media (max-width: 640px) {
  .container { padding: 0 var(--sp-4); }

  .hero-inner { padding: var(--sp-8) 0; }

  .section { padding: var(--sp-8) 0; }

  .featured-card__img { height: 160px; }

  .feat-card { padding: var(--sp-4) var(--sp-3); }

  .footer-grid { gap: var(--sp-6); }
}

/* Salla icon baseline fix */
[class^="sicon-"],
[class*=" sicon-"] {
  line-height: 1;
  display: inline-block;
}
/* ═══════════════════════════════════════
   CART SIDEBAR
   ═══════════════════════════════════════ */
.cart-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--tr-base), visibility var(--tr-base);
}

.cart-sidebar-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  left: 0; /* RTL support, sidebar on the left */
  width: min(380px, 100vw);
  height: 100%;
  background: var(--clr-white);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform var(--tr-slow);
  box-shadow: 4px 0 24px rgba(0,0,0,0.1);
}

.cart-sidebar.open {
  transform: translateX(0);
}

.cart-sidebar__header {
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid var(--clr-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-sidebar__header h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
}

.cart-sidebar__close {
  font-size: 20px;
  color: var(--clr-500);
  padding: var(--sp-2);
  transition: color var(--tr-fast);
}

.cart-sidebar__close:hover {
  color: var(--clr-primary);
}

.cart-sidebar__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--sp-4) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.cart-sidebar__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--clr-400);
  font-weight: 600;
}

.cart-item {
  display: flex;
  gap: var(--sp-3);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--clr-100);
}

.cart-item__img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: var(--r-sm);
  background: var(--clr-50);
}

.cart-item__info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-item__name {
  font-size: var(--fs-sm);
  font-weight: 700;
  margin-bottom: var(--sp-1);
}

.cart-item__price {
  font-size: var(--fs-sm);
  color: var(--clr-primary);
  font-weight: 600;
}

.cart-item__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.cart-item__remove {
  color: var(--clr-400);
  font-size: var(--fs-xs);
  transition: color var(--tr-fast);
  background: transparent;
  border: none;
  cursor: pointer;
}

.cart-item__remove:hover {
  color: var(--clr-warning);
}

.cart-sidebar__footer {
  padding: var(--sp-5) var(--sp-6);
  border-top: 1px solid var(--clr-100);
  background: var(--clr-50);
}

.cart-sidebar__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--sp-4);
}


/* AUTH PAGE */
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--clr-hero) 0%, var(--clr-50) 100%);
  padding: var(--sp-6);
}

.auth-card {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  padding: var(--sp-10) var(--sp-8);
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.auth-logo { height: 60px; margin-bottom: var(--sp-6); }

.auth-tabs {
  display: flex;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
  background: var(--clr-50);
  border-radius: var(--r-full);
  padding: 4px;
}

.auth-tab {
  flex: 1;
  padding: var(--sp-3);
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: all var(--tr-fast);
  border: none;
  background: transparent;
  color: var(--clr-400);
}

.auth-tab.active {
  background: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: var(--sh-sm);
}

.auth-form { display: none; }
.auth-form.active { display: block; }

.auth-input {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  border: 2px solid var(--clr-100);
  border-radius: var(--r-md);
  font-size: var(--fs-base);
  font-family: inherit;
  margin-bottom: var(--sp-4);
  transition: border-color var(--tr-fast);
  direction: ltr;
  text-align: left;
}

.auth-input:focus {
  outline: none;
  border-color: var(--clr-primary);
}

.auth-msg {
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-4);
  display: none;
}

.auth-msg.error { display: block; background: #fee; color: #c00; }
.auth-msg.success { display: block; background: #efe; color: #070; }

.auth-back {
  display: inline-block;
  margin-top: var(--sp-6);
  color: var(--clr-400);
  font-size: var(--fs-sm);
  transition: color var(--tr-fast);
}
.auth-back:hover { color: var(--clr-primary); }

/* CHECKOUT / MAP PAGE */
.checkout-page {
  display: flex;
  height: 100vh;
  direction: rtl;
}

.checkout-map {
  flex: 1;
  position: relative;
  min-height: 400px;
}

.checkout-map #map {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.checkout-panel {
  width: 380px;
  background: var(--clr-white);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--clr-100);
  overflow-y: auto;
}

.checkout-panel__header {
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid var(--clr-100);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.checkout-panel__header img { height: 32px; }
.checkout-panel__header h2 { font-size: var(--fs-lg); font-weight: 700; }

.checkout-panel__body {
  flex: 1;
  padding: var(--sp-5) var(--sp-6);
}

.checkout-panel__section {
  margin-bottom: var(--sp-6);
}

.checkout-panel__section h3 {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--clr-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--sp-3);
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-2) 0;
  font-size: var(--fs-sm);
}

.checkout-item__qty {
  color: var(--clr-400);
  font-size: var(--fs-xs);
}

.checkout-location {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--clr-50);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  color: var(--clr-500);
  line-height: 1.6;
}

.checkout-location i {
  color: var(--clr-primary);
  margin-top: 3px;
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-lg);
  font-weight: 700;
  padding-top: var(--sp-4);
  border-top: 2px solid var(--clr-100);
}

.checkout-panel__footer {
  padding: var(--sp-5) var(--sp-6);
  border-top: 1px solid var(--clr-100);
}

@media (max-width: 768px) {
  .checkout-page { flex-direction: column-reverse; }
  .checkout-panel { width: 100%; max-height: 45vh; }
  .checkout-map { height: 55vh; }
}

