/* =============================================
   VELORA — styles.css  (complete rewrite)
   ============================================= */

/* ── Variables ──────────────────────────────── */
:root {
  --cream:      #faf7f2;
  --warm-white: #fff9f4;
  --ivory:      #f5efe6;
  --gold:       #c9a96e;
  --gold-lt:    #e8d5b0;
  --gold-dk:    #a07840;
  --dark:       #1a1410;
  --dark-2:     #2d2318;
  --mid:        #6b5c4e;
  --green:      #4a7c59;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 50px;

  --sh-sm: 0 2px 12px rgba(26,20,16,.08);
  --sh-md: 0 8px 32px rgba(26,20,16,.13);
  --sh-lg: 0 20px 60px rgba(26,20,16,.18);

  --ease: .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--sans); background: var(--cream); color: var(--dark);
        overflow-x: hidden; line-height: 1.65; }

/* ── Loading Screen ─────────────────────────── */
#velora-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity .6s ease, visibility .6s ease;
}
#velora-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#loaderCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.loader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  text-align: center;
  padding: 1rem;
}

.loader-logo {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 8vw, 3.8rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: .04em;
  opacity: 0;
  transform: translateY(16px);
  animation: loaderFadeUp .7s .2s ease forwards;
}
.loader-v {
  color: var(--gold);
  font-size: 1.15em;
}

.loader-bar-wrap {
  width: min(260px, 70vw);
  height: 3px;
  background: rgba(201,169,110,.18);
  border-radius: 99px;
  overflow: hidden;
  opacity: 0;
  animation: loaderFadeUp .5s .5s ease forwards;
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 99px;
  transition: width .05s linear;
}

.loader-tagline {
  font-size: clamp(.72rem, 3vw, .88rem);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(250,247,242,.45);
  opacity: 0;
  animation: loaderFadeUp .5s .7s ease forwards;
}

@keyframes loaderFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* keep page hidden until loader is gone */
body.loading { overflow: hidden; }

img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button{ cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Helpers ────────────────────────────────── */
.container {
  width: 100%;
  padding: 0 1.25rem;       /* horizontal padding instead of % width */
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
.section-tag {
  display: inline-block; font-size: .72rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .6rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--dark); line-height: 1.22; margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub  { font-size: 1rem; color: var(--mid); max-width: 520px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.gradient-text  {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .8rem 1.8rem; border-radius: var(--r-xl);
  font-size: .92rem; font-weight: 600; transition: var(--ease);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #fff; box-shadow: 0 4px 20px rgba(201,169,110,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,169,110,.5); }
.btn-outline {
  border: 2px solid rgba(201,169,110,.5); color: var(--cream); background: transparent;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,169,110,.1); transform: translateY(-2px); }
.btn-full { width: 100%; }

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0; transition: var(--ease);
}
.navbar.scrolled {
  background: rgba(26,20,16,.95);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  padding: .7rem 0; box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.nav-container {
  width: 100%;
  padding: 0 1.25rem;        /* safe horizontal padding on all screens */
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
}
.nav-logo {
  font-family: var(--serif); font-size: 1.5rem;
  font-weight: 700; color: var(--cream);
  flex-shrink: 0; margin-right: auto;
  /* prevent logo from being clipped */
  white-space: nowrap;
}
.logo-v { color: var(--gold); font-size: 1.65rem; }

/* desktop links */
.nav-links {
  display: flex; align-items: center; gap: 1.8rem; margin-right: 1.8rem;
}
.nav-link {
  font-size: .88rem; font-weight: 500;
  color: rgba(250,247,242,.72); transition: var(--ease); position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: var(--ease);
}
.nav-link:hover,
.nav-link.active { color: var(--cream); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-cta {
  flex-shrink: 0; padding: .55rem 1.4rem;
  background: var(--gold); color: #fff;
  border-radius: var(--r-xl); font-size: .85rem; font-weight: 600;
  transition: var(--ease);
}
.nav-cta:hover { background: var(--gold-dk); transform: translateY(-1px); }

/* hamburger — hidden on desktop */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; margin-left: 1rem;
  position: relative; z-index: 1100; /* above overlay */
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--cream); border-radius: 2px; transition: var(--ease);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Mobile overlay menu ── */
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 2.2rem;
    position: fixed; inset: 0;
    background: rgba(26,20,16,.97);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    z-index: 1050;       /* above page, below hamburger (1100) */
  }
  .nav-links.open .nav-link {
    font-size: 1.5rem; color: var(--cream); font-family: var(--serif);
  }
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--dark);
}
#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  /* safe padding so text never touches screen edges */
  padding: 7rem 1.5rem 4rem;
  width: 100%;
  max-width: 800px;
  box-sizing: border-box;
}
.hero-tag {
  display: inline-block; font-size: .72rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
  background: rgba(201,169,110,.12); border: 1px solid rgba(201,169,110,.28);
  border-radius: var(--r-xl); padding: .38rem 1.1rem; margin-bottom: 1.4rem;
  /* prevent tag from overflowing */
  max-width: 100%; white-space: normal; word-break: break-word;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 5rem);
  font-weight: 700; color: var(--cream); line-height: 1.1; margin-bottom: 1.2rem;
  word-break: break-word;
}
.hero-subtitle {
  font-size: clamp(.9rem, 3.5vw, 1.15rem);
  color: rgba(250,247,242,.68); margin-bottom: 2.2rem;
  font-weight: 300;
  /* prevent text from overflowing small screens */
  word-break: break-word;
}
.hero-actions {
  display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .45rem;
  z-index: 2; color: rgba(250,247,242,.45);
  font-size: .68rem; letter-spacing: .15em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, rgba(201,169,110,.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .4; } 50% { opacity: 1; }
}

/* ══════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════ */
.marquee-strip {
  background: var(--dark-2); padding: .8rem 0; overflow: hidden;
  border-top: 1px solid rgba(201,169,110,.15);
  border-bottom: 1px solid rgba(201,169,110,.15);
}
.marquee-track { display: flex; white-space: nowrap; animation: marquee 30s linear infinite; }
.marquee-track span {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-lt); padding: 0 1rem;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about { padding: 6rem 0; background: var(--warm-white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-visual { display: flex; justify-content: center; }
.about-blob {
  width: 340px; height: 340px;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, var(--dark), var(--dark-2) 60%, #3d2f20);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-lg);
  animation: blobMorph 8s ease-in-out infinite;
}
@keyframes blobMorph {
  0%,100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
  33%     { border-radius: 40% 60% 45% 55% / 60% 40% 55% 45%; }
  66%     { border-radius: 55% 45% 60% 40% / 45% 55% 50% 50%; }
}
.blob-inner { display: flex; flex-direction: column; gap: 1.4rem; padding: 1.8rem; }
.blob-stat  { display: flex; flex-direction: column; align-items: center; }
.stat-num   { font-family: var(--serif); font-size: 1.9rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: .72rem; color: rgba(250,247,242,.55); letter-spacing: .08em; text-transform: uppercase; margin-top: .2rem; }
.about-desc { color: var(--mid); font-size: 1rem; margin-bottom: .9rem; }
.about-badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.badge {
  padding: .4rem .9rem; background: var(--ivory);
  border: 1px solid var(--gold-lt); border-radius: var(--r-xl);
  font-size: .8rem; font-weight: 500; color: var(--dark-2);
}

/* ══════════════════════════════════════════════
   PRODUCTS
══════════════════════════════════════════════ */
.products { padding: 6rem 0; background: var(--cream); }

/* 3-col on desktop, auto-fit fallback */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* card */
.product-card {
  background: #fff; border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-sm);
  transition: transform var(--ease), box-shadow var(--ease);
  opacity: 0; transform: translateY(28px);
}
.product-card.visible { opacity: 1; transform: translateY(0); }
.product-card:hover   { transform: translateY(-7px); box-shadow: var(--sh-lg); }

/* image area */
.product-visual {
  position: relative; width: 100%; min-height: 210px;
  padding: 1.8rem 1.2rem .8rem;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.p-family       { background: linear-gradient(135deg,#e8eaf8,#d0d4f0); }
.p-perfume-blue { background: linear-gradient(135deg,#dff0f8,#c8e8f5); }
.p-luxury-grey  { background: linear-gradient(135deg,#ececec,#d8d8d8); }
.p-slim         { background: linear-gradient(135deg,#faf6ed,#f0e8d0); }
.p-perfume-pink { background: linear-gradient(135deg,#fce8f0,#f8d0e0); }

.product-img {
  width: 100%; max-width: 230px; height: 170px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.14));
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), filter .4s ease;
}
.product-card:hover .product-img {
  transform: scale(1.09) translateY(-5px);
  filter: drop-shadow(0 18px 32px rgba(0,0,0,.22));
}

/* info */
.product-info { padding: 1.1rem 1.35rem 1.35rem; }
.product-tag {
  display: inline-block; font-size: .66rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--gold-lt); color: var(--gold-dk);
  padding: .18rem .7rem; border-radius: var(--r-xl); margin-bottom: .55rem;
}
.product-tag.premium    { background: #e8e0f8; color: #6040a0; }
.product-tag.luxury-tag { background: #e0e0e0; color: #444; }
.product-tag.slim-tag   { background: #f5efe0; color: var(--gold-dk); }
.product-tag.pink-tag   { background: #fce8f0; color: #c04070; }

.product-info h3 {
  font-family: var(--serif); font-size: 1.1rem;
  font-weight: 700; color: var(--dark); margin-bottom: .35rem;
}
.product-info p  { font-size: .86rem; color: var(--mid); line-height: 1.5; margin-bottom: .9rem; }
.product-footer  { display: flex; align-items: center; justify-content: space-between; gap: .5rem; flex-wrap: wrap; }
.price { font-family: var(--serif); font-size: 1.08rem; font-weight: 700; color: var(--dark); }
.btn-add {
  padding: .45rem .95rem; background: var(--dark);
  color: var(--gold-lt); border-radius: var(--r-xl);
  font-size: .76rem; font-weight: 600;
  transition: var(--ease); white-space: nowrap;
}
.btn-add:hover { background: var(--gold); color: #fff; }

/* ══════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════ */
.features { padding: 6rem 0; background: var(--dark); }
.features .section-tag   { color: var(--gold); }
.features .section-title { color: var(--cream); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,169,110,.15);
  border-radius: var(--r-lg); padding: 1.8rem;
  transition: var(--ease); opacity: 0; transform: translateY(20px);
}
.feature-card.visible { opacity: 1; transform: translateY(0); }
.feature-card:hover {
  background: rgba(201,169,110,.08);
  border-color: rgba(201,169,110,.35);
  transform: translateY(-4px);
}
.feature-icon { font-size: 1.9rem; margin-bottom: .9rem; }
.feature-card h3 { font-family: var(--serif); font-size: 1.05rem; color: var(--cream); margin-bottom: .5rem; }
.feature-card p  { font-size: .87rem; color: rgba(250,247,242,.52); line-height: 1.6; }

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials { padding: 6rem 0; background: var(--ivory); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.testi-card {
  background: #fff; border-radius: var(--r-lg); padding: 1.8rem;
  box-shadow: var(--sh-sm); transition: var(--ease);
}
.testi-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.stars   { color: var(--gold); font-size: .95rem; margin-bottom: .9rem; letter-spacing: .1em; }
.testi-card p { font-size: .92rem; color: var(--mid); line-height: 1.65; margin-bottom: 1.1rem; font-style: italic; }
.testi-author { font-size: .82rem; color: var(--dark); font-weight: 500; }

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact { padding: 6rem 0; background: var(--warm-white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 4rem; align-items: start;
}
.contact-info > p  { color: var(--mid); font-size: .98rem; margin-bottom: 1.8rem; }
.contact-details   { display: flex; flex-direction: column; gap: .9rem; }
.contact-item      { display: flex; align-items: center; gap: .8rem; }
.contact-icon      { font-size: 1.15rem; }
.contact-item span:last-child { font-size: .92rem; color: var(--mid); }
.contact-form      { display: flex; flex-direction: column; gap: .9rem; }
.form-group input,
.form-group textarea {
  width: 100%; padding: .8rem 1rem;
  border: 1.5px solid var(--ivory); border-radius: var(--r-sm);
  background: #fff; font-family: var(--sans);
  font-size: 1rem; /* ≥16 px stops iOS auto-zoom */
  color: var(--dark); outline: none;
  transition: var(--ease); resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,.12);
}
.form-success { text-align: center; font-size: .88rem; color: var(--green); margin-top: .4rem; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer { background: var(--dark); padding: 5rem 0 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 2.5rem;
}
.footer-brand p    { font-size: .88rem; color: rgba(250,247,242,.55); margin: .9rem 0 1.4rem; line-height: 1.65; max-width: 260px; }
.footer-logo       { color: var(--cream); }
.social-links      { display: flex; gap: .65rem; flex-wrap: wrap; }
.social-link {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(201,169,110,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; font-weight: 700; color: var(--gold-lt);
  transition: var(--ease);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-links h4 {
  font-family: var(--serif); font-size: .98rem;
  color: var(--cream); margin-bottom: 1.1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a  { font-size: .86rem; color: rgba(250,247,242,.48); transition: var(--ease); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(201,169,110,.12);
  padding-top: 1.4rem; text-align: center;
  font-size: .8rem; color: rgba(250,247,242,.32);
}

/* ── Scroll reveal base ─────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════
   RESPONSIVE  ≤ 1100px  (large tablet / small laptop)
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .products-grid  { grid-template-columns: repeat(2, 1fr); }
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand   { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }
  .about-blob     { width: 300px; height: 300px; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE  ≤ 860px  (tablet)
══════════════════════════════════════════════ */
@media (max-width: 860px) {
  /* sections */
  .about, .products, .features,
  .testimonials, .contact { padding: 4.5rem 0; }

  /* about */
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .about-visual { order: -1; }
  .about-blob   { width: 260px; height: 260px; }
  .about-badges { justify-content: center; }

  /* products */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

  /* features */
  .features-grid { grid-template-columns: repeat(2, 1fr); }

  /* testimonials */
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  /* contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE  ≤ 600px  (mobile)
══════════════════════════════════════════════ */
@media (max-width: 600px) {
  /* sections */
  .about, .products, .features,
  .testimonials, .contact { padding: 3.5rem 0; }
  .footer { padding: 3rem 0 1.5rem; }

  /* container */
  .container { padding: 0 1rem; }

  /* hero */
  .hero-content  { padding: 5.5rem .75rem 3rem; }
  .hero-title    { font-size: clamp(1.75rem, 8.5vw, 2.6rem); }
  .hero-subtitle { font-size: .9rem; }
  .hero-actions  { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  /* section headings */
  .section-title  { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .section-header { margin-bottom: 2rem; }

  /* about */
  .about-grid { gap: 2rem; }
  .about-blob { width: 220px; height: 220px; }
  .blob-inner { gap: 1rem; padding: 1.25rem; }
  .stat-num   { font-size: 1.55rem; }

  /* products — 1 column */
  .products-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .product-visual { min-height: 190px; }
  .product-img    { max-width: 210px; height: 155px; }
  .product-footer { flex-direction: column; align-items: flex-start; gap: .6rem; }
  .btn-add        { width: 100%; text-align: center; }

  /* features — 1 column */
  .features-grid { grid-template-columns: 1fr; gap: 1rem; }
  .feature-card  { padding: 1.4rem; }

  /* testimonials — 1 column */
  .testimonials-grid { grid-template-columns: 1fr; gap: 1.1rem; }

  /* footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }

  /* hero buttons full width */
  .btn { padding: .78rem 1.4rem; font-size: .88rem; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE  ≤ 400px  (small phones)
══════════════════════════════════════════════ */
@media (max-width: 400px) {
  .container { padding: 0 .85rem; }
  .nav-container { padding: 0 .85rem; }
  .nav-logo  { font-size: 1.2rem; }
  .logo-v    { font-size: 1.35rem; }
  .hero-content { padding: 5rem .75rem 2.5rem; }
  .hero-title { font-size: 1.7rem; }
  .about-blob { width: 190px; height: 190px; }
  .stat-num   { font-size: 1.3rem; }
  .product-img { max-width: 175px; height: 130px; }
  .marquee-track span { font-size: .7rem; }
}

/* ── hover tilt only on true pointer devices ── */
@media (hover: hover) and (pointer: fine) {
  .product-card { transform-style: preserve-3d; perspective: 800px; }
}
