/* ═══════════════════════════════════════
   LAVII HANDMADE – Main Stylesheet
   style.css
════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --pink:          #f9a8c9;
  --pink-deep:     #e06f9e;
  --pink-soft:     #fce4ec;
  --lavender:      #c9b3e8;
  --lavender-soft: #f0ebff;
  --rose-gold:     #c8937a;
  --cream:         #fff8f4;
  --white:         #ffffff;
  --text-dark:     #4a2c3d;
  --text-mid:      #7a5570;
  --text-light:    #b08fa0;
  --grad-hero:  linear-gradient(135deg, #fce4ec 0%, #f3e5f5 40%, #ede7f6 100%);
  --grad-pink:  linear-gradient(135deg, #f48fb1, #ce93d8);
  --grad-gold:  linear-gradient(135deg, #e8c39e, #c8937a);
  --shadow-soft: 0 8px 32px rgba(200,100,150,.15);
  --shadow-card: 0 4px 24px rgba(180,80,130,.12);
}
/* scroll-behavior: smooth intentionally removed — jQuery handles smooth scroll to avoid double-smooth conflict */
body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CUSTOM CURSOR ── */
#cursor-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--pink-deep);
  position: fixed; pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform .1s ease;
}
#cursor-ring {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--pink);
  position: fixed; pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: all .18s cubic-bezier(.25,.46,.45,.94);
}

/* ── SPARKLE PARTICLES ── */
#particles { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatUp linear infinite;
  opacity: 0;
}
@keyframes floatUp {
  0%   { transform: translateY(100vh) scale(0) rotate(0deg);   opacity: 0; }
  10%  { opacity: .8; }
  90%  { opacity: .4; }
  100% { transform: translateY(-20vh) scale(1) rotate(720deg); opacity: 0; }
}
.sparkle-star {
  position: absolute;
  width: 6px; height: 6px;
  background: radial-gradient(circle, #fff 0%, var(--pink) 60%, transparent 100%);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
  animation: twinkle ease-in-out infinite;
  pointer-events: none;
}
@keyframes twinkle {
  0%,100% { opacity: 0; transform: scale(.5) rotate(0deg); }
  50%      { opacity: 1; transform: scale(1.3) rotate(180deg); }
}

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,248,252,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(249,168,201,.3);
  transition: all .3s;
}
#navbar.scrolled {
  height: 60px;
  background: rgba(255,248,252,.97);
  box-shadow: 0 4px 20px rgba(200,100,150,.15);
}
.nav-brand {
  font-family: 'Dancing Script', cursive;
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--grad-pink);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-brand span { font-size: 1.2rem; display: block; line-height: .9; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: .9rem; font-weight: 600;
  color: var(--text-mid);
  position: relative; padding: 4px 0;
  transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; border-radius: 2px;
  background: var(--grad-pink);
  transition: all .3s;
}
.nav-links a:hover { color: var(--pink-deep); }
.nav-links a:hover::after { left: 0; right: 0; }
.nav-cta {
  background: var(--grad-pink) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 15px rgba(230,100,160,.35);
  transition: all .3s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(230,100,160,.5) !important; }
.nav-cta::after { display: none !important; }

/* ── ACTIVE NAV LINK ── */
.nav-links a.active-link { color: var(--pink-deep); }
.nav-links a.active-link::after { left: 0; right: 0; }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--pink-deep); border-radius: 3px;
  transition: all .3s;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 5% 60px;
  position: relative; overflow: hidden;
}
.hero-deco {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.6), transparent 70%);
  pointer-events: none;
}
.hero-deco-1 { width: 500px; height: 500px; top: -100px; left: -100px; animation: pulse 6s ease-in-out infinite; }
.hero-deco-2 { width: 400px; height: 400px; bottom: -80px; right: -80px; animation: pulse 8s ease-in-out infinite reverse; }
.hero-deco-3 { width: 200px; height: 200px; top: 30%; left: 10%; animation: pulse 5s ease-in-out infinite; opacity: .5; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.15); } }

.hero-icon {
  font-size: 3.5rem; margin-bottom: 1rem;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-18px) rotate(5deg); }
}
.hero-subtitle-top {
  font-family: 'Dancing Script', cursive;
  font-size: 1.3rem; color: var(--pink-deep);
  letter-spacing: 2px; margin-bottom: .5rem;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp .8s ease forwards .3s;
}
.hero-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(135deg, #c94f87 0%, #9b59b6 50%, #e06f9e 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0; transform: translateY(40px);
  animation: fadeUp .9s ease forwards .5s;
  filter: drop-shadow(0 2px 6px rgba(180,80,140,.2));
}
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--text-mid);
  margin: 1rem 0 2.5rem;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp .8s ease forwards .8s;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.hero-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp .8s ease forwards 1s;
}
.badge {
  background: rgba(255,255,255,.75);
  border: 1.5px solid rgba(249,168,201,.5);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .85rem; font-weight: 700;
  color: var(--pink-deep);
  display: flex; align-items: center; gap: 6px;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(249,168,201,.25);
}
.hero-actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp .8s ease forwards 1.2s;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: .95rem;
  transition: all .3s; cursor: pointer; border: none;
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.2);
  transform: translateX(-100%);
  transition: transform .4s;
}
.btn:hover::before { transform: translateX(0); }
.btn-primary {
  background: var(--grad-pink);
  color: #fff;
  box-shadow: 0 8px 25px rgba(230,100,160,.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(230,100,160,.55); }
.btn-outline {
  background: rgba(255,255,255,.8);
  color: var(--pink-deep);
  border: 2px solid var(--pink);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: var(--pink-soft); transform: translateY(-3px); }

/* ── SCROLL INDICATOR ── */
/* ── Social Share Bar ── */
.hero-share, .footer-share {
  display: flex; align-items: center; gap: 10px;
  justify-content: center; flex-wrap: wrap;
}
.footer-share {
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-share-label { font-size: .8rem; color: rgba(255,255,255,.75); font-weight: 600; letter-spacing: .05em; }
.share-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: .9rem; color: #fff; border: none; cursor: pointer;
  transition: transform .2s, opacity .2s; text-decoration: none;
  background: rgba(255,255,255,.22); backdrop-filter: blur(4px);
}
.share-btn:hover { transform: scale(1.18); opacity: .9; }
.share-fb  { background: #1877f2; }
.share-pi  { background: #e60023; }
.share-wa  { background: #25d366; }
.share-copy { background: rgba(255,255,255,.25); border: 1px solid rgba(255,255,255,.4); }
.share-copy.copied { background: var(--pink); }
@media (max-width: 480px) { .share-btn { width: 32px; height: 32px; font-size: .8rem; } }

.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-light); font-size: .78rem;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
.scroll-indicator i { font-size: 1.1rem; color: var(--pink); }

/* ── SECTION BASE ── */
section { position: relative; }
.section-wrap { max-width: 1200px; margin: 0 auto; padding: 80px 5%; }
.section-head { text-align: center; margin-bottom: 3.5rem; }
.eyebrow {
  font-family: 'Dancing Script', cursive;
  font-size: 1.15rem; color: var(--pink-deep);
  letter-spacing: 2px; margin-bottom: .5rem; display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600; color: var(--text-dark);
  line-height: 1.3; margin-bottom: 1rem;
}
.section-title span { color: var(--pink-deep); }
.section-divider {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin: 1rem auto;
}
.section-divider span {
  display: block; height: 2px; width: 60px;
  background: var(--grad-pink); border-radius: 2px;
}
.section-divider i { color: var(--pink); font-size: 1rem; }
.section-desc { font-size: 1rem; color: var(--text-mid); max-width: 560px; margin: .5rem auto 0; line-height: 1.8; }

/* ── STATS BAR ── */
#stats {
  background: var(--grad-pink);
  padding: 0;
}
.stats-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 5%;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 28px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.25);
  transition: background .3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,.1); }
.stat-num {
  font-family: 'Dancing Script', cursive;
  font-size: 2.4rem; font-weight: 700;
  color: #fff; line-height: 1;
}
.stat-label {
  font-size: .82rem; color: rgba(255,255,255,.85);
  margin-top: 4px; font-weight: 600;
}

/* ── CATEGORIES ── */
#categories { background: var(--lavender-soft); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}
.cat-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px 16px 24px;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
  position: relative; overflow: hidden;
}
.cat-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-pink); opacity: 0;
  transition: opacity .3s; z-index: 0; border-radius: 22px;
}
.cat-card:hover { transform: translateY(-8px) scale(1.03); border-color: var(--pink); box-shadow: 0 16px 40px rgba(200,100,150,.22); }
.cat-card:hover::before { opacity: .07; }
.cat-card > * { position: relative; z-index: 1; }
.cat-icon {
  font-size: 2.8rem; margin-bottom: 12px;
  display: inline-block;
  animation: wiggle 4s ease-in-out infinite;
}
.cat-card:nth-child(2) .cat-icon { animation-delay: .5s; }
.cat-card:nth-child(3) .cat-icon { animation-delay: 1s; }
.cat-card:nth-child(4) .cat-icon { animation-delay: 1.5s; }
.cat-card:nth-child(5) .cat-icon { animation-delay: 2s; }
.cat-card:nth-child(6) .cat-icon { animation-delay: 2.5s; }
@keyframes wiggle {
  0%,100% { transform: rotate(-5deg); }
  50%      { transform: rotate(5deg); }
}
.cat-name {
  font-weight: 700; font-size: .92rem; color: var(--text-dark);
  margin-bottom: 4px;
}
.cat-count { font-size: .78rem; color: var(--text-light); }
.cat-card--blog {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #fce4ec, #f3e5f5);
  padding: 26px 20px;
}
.cat-card--blog .cat-icon { animation: none; margin-bottom: 10px; }
.cat-card--blog .cat-name { font-size: 1rem; }
.cat-card--blog .cat-count { font-size: .85rem; max-width: 520px; margin: 0 auto; line-height: 1.55; }

.cat-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--grad-pink); color: #fff;
  font-size: .65rem; font-weight: 700;
  padding: 3px 8px; border-radius: 50px;
}

/* ── PRODUCTS ── */
#products { background: var(--cream); }
.filter-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 8px 22px; border-radius: 50px;
  font-size: .88rem; font-weight: 700;
  border: 2px solid rgba(249,168,201,.4);
  background: #fff; color: var(--text-mid);
  cursor: pointer; transition: all .25s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--grad-pink); color: #fff; border-color: transparent;
  box-shadow: 0 4px 15px rgba(230,100,160,.3);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
  cursor: pointer;
  position: relative;
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(180,80,130,.2); }
.product-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--grad-hero);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.1); }
.product-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(200,80,140,.6) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 16px;
}
.product-card:hover .product-overlay { opacity: 1; }
.overlay-btn {
  background: #fff; color: var(--pink-deep);
  border: none; border-radius: 50px;
  padding: 8px 22px; font-size: .85rem; font-weight: 700;
  cursor: pointer; transition: all .2s;
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,.15);
}
.overlay-btn:hover { background: var(--pink-soft); transform: scale(1.05); }
.product-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--grad-pink); color: #fff;
  font-size: .7rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
  box-shadow: 0 3px 10px rgba(230,100,160,.4);
}
.product-wishlist {
  position: absolute; top: 10px; right: 10px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.9);
  border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .3s;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  font-size: .95rem;
}
.product-wishlist i { color: var(--text-light); transition: all .3s; }
.product-wishlist:hover i, .product-wishlist.liked i { color: #e05577; transform: scale(1.2); }
.product-wishlist.liked { background: #fff0f4; }
.product-info { padding: 16px 18px 20px; }
.product-name {
  font-weight: 700; font-size: .95rem;
  color: var(--text-dark); line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-stars { display: flex; align-items: center; gap: 3px; margin-bottom: 8px; }
.product-stars i { color: #f9c02b; font-size: .8rem; }
.product-stars span { font-size: .78rem; color: var(--text-light); margin-left: 4px; }
.product-price-row { display: flex; align-items: center; justify-content: space-between; }
.product-price {
  font-weight: 800; font-size: 1.1rem;
  color: var(--pink-deep);
}
.product-price-old {
  font-size: .8rem; color: var(--text-light);
  text-decoration: line-through; margin-left: 6px;
}
.product-sold { font-size: .78rem; color: var(--text-light); }
.load-more-wrap { text-align: center; margin-top: 2.5rem; }

/* ── GALLERY ── */
#gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  background: var(--pink-soft);
}
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row:    span 2; }
.gallery-item.gallery-hidden { display: none; }

.gallery-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.gallery-item:hover .gallery-img { transform: scale(1.08); }
.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute; inset: 0;
  background: rgba(200,80,140,.35);
  color: #fff; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover::after { opacity: 1; }

/* ── LIGHTBOX ── */
#lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(20,5,15,.92);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
#lightbox.open { display: flex; }
#lightboxImgWrap {
  position: relative; max-width: 90vw; max-height: 90vh;
  display: flex; flex-direction: column; align-items: center;
}
#lightboxImg {
  max-width: 100%; max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
#lightboxCaption {
  color: rgba(255,255,255,.75); font-size: .85rem;
  margin-top: 12px; text-align: center;
}
#lightboxClose,
#lightboxPrev,
#lightboxNext {
  position: fixed;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.2);
  color: #fff; border-radius: 50%;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem;
  transition: background .2s, transform .2s;
  backdrop-filter: blur(6px);
}
#lightboxClose:hover,
#lightboxPrev:hover,
#lightboxNext:hover { background: rgba(249,168,201,.4); transform: scale(1.1); }
#lightboxClose { top: 20px; right: 20px; }
#lightboxPrev  { left: 16px;  top: 50%; transform: translateY(-50%); }
#lightboxNext  { right: 16px; top: 50%; transform: translateY(-50%); }
#lightboxPrev:hover,#lightboxNext:hover { transform: translateY(-50%) scale(1.1); }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 8px;
  }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row:    span 2; }
  #lightboxPrev { left: 6px; }
  #lightboxNext { right: 6px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-auto-rows: 130px; gap: 6px; }
}

/* ── SUPPORT GRID ── */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 10px;
}
.support-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 10px;
  text-decoration: none; color: inherit;
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.support-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(249,168,201,.06), rgba(201,179,232,.06));
  opacity: 0; transition: opacity .3s;
}
.support-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(180,80,130,.18); }
.support-card:hover::after { opacity: 1; }
.support-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem;
  box-shadow: 0 4px 14px rgba(180,80,130,.25);
  flex-shrink: 0;
}
.support-card-title {
  font-weight: 800; font-size: 1rem;
  color: var(--text-dark); line-height: 1.3;
}
.support-card-desc {
  font-size: .87rem; color: var(--text-mid);
  line-height: 1.7; flex: 1;
}
.support-card-link {
  font-size: .82rem; font-weight: 700;
  color: var(--pink-deep);
  display: flex; align-items: center; gap: 6px;
  margin-top: 4px;
  transition: gap .2s;
}
.support-card:hover .support-card-link { gap: 10px; }

@media (max-width: 600px) {
  .support-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .support-card  { padding: 20px 16px; }
  .support-icon  { width: 44px; height: 44px; font-size: 1.1rem; }
  .support-card-title { font-size: .9rem; }
  .support-card-desc  { font-size: .8rem; }
}
@media (max-width: 400px) {
  .support-grid { grid-template-columns: 1fr; }
}


/* ── ABOUT ── */
#about { background: linear-gradient(135deg, var(--lavender-soft) 0%, var(--pink-soft) 100%); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  border-radius: 30px 60px 30px 60px;
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  box-shadow: 0 20px 60px rgba(180,80,130,.25);
}
.about-img-float {
  position: absolute; bottom: -20px; right: -20px;
  width: 45%; border-radius: 20px;
  object-fit: cover; aspect-ratio: 1;
  box-shadow: 0 10px 30px rgba(180,80,130,.3);
  border: 5px solid #fff;
  animation: float 5s ease-in-out infinite;
}
.about-deco-ring {
  position: absolute; top: -15px; left: -15px;
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--grad-pink); opacity: .1;
  animation: pulse 6s ease-in-out infinite;
}
.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text-dark); line-height: 1.3;
  margin-bottom: 1.2rem;
}
.about-title span { color: var(--pink-deep); font-style: italic; }
.about-desc { color: var(--text-mid); line-height: 1.9; font-size: 1rem; margin-bottom: 1.5rem; }
.about-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 2rem; }
.about-feature {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(255,255,255,.6); border-radius: 14px;
  padding: 14px 18px; backdrop-filter: blur(8px);
  border: 1px solid rgba(249,168,201,.3);
  transition: all .3s;
}
.about-feature:hover { background: rgba(255,255,255,.9); transform: translateX(6px); box-shadow: var(--shadow-soft); }
.about-feature-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--grad-pink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem; color: #fff;
}
.about-feature-text h4 { font-size: .95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.about-feature-text p  { font-size: .82rem; color: var(--text-mid); line-height: 1.5; }

/* ── PROCESS ── */
#process { background: var(--cream); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 50px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(to right, transparent, var(--pink), var(--lavender), var(--pink), transparent);
  z-index: 0;
}
.process-step {
  background: #fff; border-radius: 20px; padding: 32px 20px 28px;
  text-align: center; box-shadow: var(--shadow-card);
  position: relative; z-index: 1;
  transition: all .35s;
}
.process-step:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(180,80,130,.2); }
.process-num {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--grad-pink); color: #fff;
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px rgba(230,100,160,.35);
}
.process-icon { font-size: 2rem; margin-bottom: 12px; }
.process-title { font-weight: 700; font-size: .95rem; color: var(--text-dark); margin-bottom: 6px; }
.process-desc { font-size: .82rem; color: var(--text-mid); line-height: 1.6; }

/* ── TESTIMONIALS ── */
#testimonials { background: linear-gradient(135deg, #fce4ec 0%, #ede7f6 100%); }
.reviews-slider { position: relative; overflow: hidden; }
.reviews-track {
  display: flex; gap: 24px;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.review-card {
  min-width: calc(33.333% - 16px);
  background: rgba(255,255,255,.8);
  border-radius: 20px;
  padding: 28px 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(249,168,201,.3);
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
}
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.review-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--grad-pink); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(230,100,160,.3);
}
.review-info h4,
.reviewer-name { font-weight: 700; font-size: .95rem; color: var(--text-dark); display: block; }
.review-info p  { font-size: .78rem; color: var(--text-light); }
.review-stars { display: flex; gap: 3px; margin: 6px 0 12px; }
.review-stars i { color: #f9c02b; font-size: .85rem; }
.review-text {
  font-size: .88rem; color: var(--text-mid);
  line-height: 1.8; font-style: italic;
  position: relative; padding-left: 16px;
}
.review-text::before {
  content: '"'; position: absolute; left: 0; top: -4px;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; color: var(--pink);
  line-height: 1;
}
.review-product {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid rgba(249,168,201,.3);
  font-size: .8rem; color: var(--text-light);
  display: flex; align-items: center; gap: 6px;
}
.review-product i { color: var(--pink); }
.slider-controls {
  display: flex; justify-content: center; align-items: center; gap: 16px;
  margin-top: 28px;
}
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 2px solid var(--pink);
  color: var(--pink-deep); font-size: 1rem;
  cursor: pointer; transition: all .3s;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(230,100,160,.2);
}
.slider-btn:hover { background: var(--grad-pink); color: #fff; transform: scale(1.1); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink); opacity: .3;
  cursor: pointer; transition: all .3s;
}
.slider-dot.active { opacity: 1; width: 24px; border-radius: 4px; background: var(--grad-pink); }

/* ── WHY US ── */
#why { background: var(--cream); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(252,228,236,.6));
  border-radius: 24px; padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(249,168,201,.3);
  box-shadow: var(--shadow-card);
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; bottom: -40px; right: -40px;
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--grad-pink); opacity: .06;
  transition: all .4s;
}
.why-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(180,80,130,.2); }
.why-card:hover::before { transform: scale(2.5); }
.why-icon-wrap {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--grad-pink); margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #fff;
  box-shadow: 0 8px 25px rgba(230,100,160,.35);
  transition: transform .3s;
}
.why-card:hover .why-icon-wrap { transform: rotate(15deg) scale(1.1); }
.why-title { font-weight: 700; font-size: 1rem; color: var(--text-dark); margin-bottom: 10px; }
.why-desc { font-size: .87rem; color: var(--text-mid); line-height: 1.75; }

/* ── CTA BANNER ── */
#cta-banner {
  background: var(--grad-pink);
  position: relative; overflow: hidden;
}
#cta-banner::before, #cta-banner::after {
  content: ''; position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.12);
}
#cta-banner::before { width: 400px; height: 400px; top: -100px; left: -100px; }
#cta-banner::after  { width: 300px; height: 300px; bottom: -80px; right: -80px; }
.cta-inner {
  max-width: 900px; margin: 0 auto; padding: 70px 5%;
  text-align: center; position: relative; z-index: 1;
}
.cta-emoji { font-size: 3rem; margin-bottom: 1rem; animation: float 3s ease-in-out infinite; display: inline-block; }
.cta-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: #fff; font-weight: 700; margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.cta-desc { color: rgba(255,255,255,.9); font-size: 1rem; line-height: 1.8; margin-bottom: 2.5rem; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.btn-white {
  background: #fff; color: var(--pink-deep);
  box-shadow: 0 8px 25px rgba(0,0,0,.15);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,.2); }
.btn-transparent {
  background: rgba(255,255,255,.2);
  color: #fff; border: 2px solid rgba(255,255,255,.6);
  backdrop-filter: blur(8px);
}
.btn-transparent:hover { background: rgba(255,255,255,.3); transform: translateY(-3px); }

/* ── CONTACT / SOCIAL ── */
#contact { background: var(--lavender-soft); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start;
}
.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--text-dark); margin-bottom: 1rem;
}
.contact-info p { color: var(--text-mid); line-height: 1.8; margin-bottom: 2rem; }
.contact-channels { display: flex; flex-direction: column; gap: 14px; }
.contact-channel {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border-radius: 14px; padding: 16px 20px;
  box-shadow: var(--shadow-card); transition: all .3s;
  text-decoration: none;
}
.contact-channel:hover { transform: translateX(8px); box-shadow: 0 8px 25px rgba(180,80,130,.2); }
.ch-icon {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0; color: #fff;
}
.ch-icon.shopee   { background: linear-gradient(135deg, #ff5722, #ff7043); }
.ch-icon.facebook { background: linear-gradient(135deg, #1877f2, #0d5fb8); }
.ch-icon.zalo     { background: linear-gradient(135deg, #0068ff, #0047cc); }
.ch-icon.phone    { background: var(--grad-pink); }
.ch-text h4 { font-size: .9rem; font-weight: 700; color: var(--text-dark); }
.ch-text p  { font-size: .8rem; color: var(--text-light); }
.contact-map {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-card); padding: 30px;
  display: flex; flex-direction: column; gap: 16px;
}
.contact-map h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--text-dark);
}
.qr-wrap {
  display: flex; gap: 20px; align-items: center;
  background: var(--pink-soft); border-radius: 14px; padding: 20px;
}
.qr-box {
  width: 100px; height: 100px; background: var(--grad-pink);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 3rem; flex-shrink: 0;
}
.qr-text h5 { font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.qr-text p  { font-size: .82rem; color: var(--text-mid); line-height: 1.6; }
.qr-text a  { color: var(--pink-deep); font-weight: 700; text-decoration: underline; }

/* ── FOOTER ── */
#footer {
  background: linear-gradient(135deg, #3d1a2e, #4a1f3c);
  color: rgba(255,255,255,.8);
  padding: 60px 5% 30px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem; font-weight: 700; color: var(--pink);
  margin-bottom: 12px;
}
.footer-desc { font-size: .85rem; line-height: 1.8; color: rgba(255,255,255,.65); margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.soc-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.75); font-size: .95rem;
  transition: all .3s; cursor: pointer;
}
.soc-btn:hover { background: var(--grad-pink); border-color: transparent; color: #fff; transform: translateY(-3px); }
.footer-col h5 {
  font-size: .88rem; font-weight: 700; color: var(--pink);
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: .84rem; color: rgba(255,255,255,.65);
  transition: all .25s; display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--pink); padding-left: 4px; }
.footer-col ul li a i { font-size: .65rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 12px;
}
.footer-copy { font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-copy a { color: var(--pink); }
.footer-love { font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-love i { color: #e05577; animation: heartbeat 1.4s ease-in-out infinite; }
@keyframes heartbeat { 0%,100% { transform: scale(1); } 50% { transform: scale(1.25); } }

/* ── BACK TO TOP ── */
#back-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad-pink); color: #fff;
  border: none; cursor: pointer; font-size: 1.1rem;
  box-shadow: 0 6px 20px rgba(230,100,160,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px);
  transition: all .3s; pointer-events: none;
}
#back-top.show { opacity: 1; transform: translateY(0); pointer-events: all; }
#back-top:hover { transform: translateY(-4px) scale(1.1); }

/* ── FLOATING CART PILL ── */
.floating-shopee {
  position: fixed; bottom: 28px; left: 28px; z-index: 500;
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #ff5722, #ff7043);
  color: #fff; border-radius: 50px;
  padding: 12px 20px; font-size: .88rem; font-weight: 700;
  box-shadow: 0 8px 25px rgba(255,87,34,.4);
  transition: all .35s;
  animation: pulse-shopee 3s ease-in-out infinite;
}
.floating-shopee:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 12px 30px rgba(255,87,34,.5); }
@keyframes pulse-shopee {
  0%,100% { box-shadow: 0 8px 25px rgba(255,87,34,.4); }
  50%      { box-shadow: 0 8px 35px rgba(255,87,34,.65); }
}

/* ── AOS-LIKE REVEAL ── */
[data-aos] {
  opacity: 0; transition: opacity .7s ease, transform .7s ease;
}
[data-aos="fade-up"]    { transform: translateY(50px); }
[data-aos="fade-left"]  { transform: translateX(60px); }
[data-aos="fade-right"] { transform: translateX(-60px); }
[data-aos="zoom-in"]    { transform: scale(.85); }
[data-aos].aos-animate  { opacity: 1; transform: none; }

/* ── HANDMADE NOTES GRID ── */
.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
@media (max-width: 600px) {
  .notes-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ── MOBILE NAV ── */
.mobile-nav-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(60,20,50,.5); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav-panel {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 950;
  width: min(320px, 85vw);
  background: linear-gradient(160deg, #fff8fc 0%, #fce4ec 100%);
  padding: 80px 32px 40px;
  transform: translateX(100%); transition: transform .38s cubic-bezier(.25,.46,.45,.94);
  display: flex; flex-direction: column; gap: 6px;
}
.mobile-nav-panel.open { transform: translateX(0); }
.mobile-nav-panel a {
  font-size: 1.1rem; font-weight: 700; color: var(--text-dark);
  padding: 12px 0; border-bottom: 1px solid rgba(249,168,201,.3);
  display: flex; align-items: center; gap: 10px;
  transition: all .25s;
}
.mobile-nav-panel a:hover { color: var(--pink-deep); padding-left: 6px; }
.mobile-close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--pink-soft); border: none;
  font-size: 1.2rem; color: var(--pink-deep);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}

/* ══════════════════════════════════════
   SUB-PAGES (chinh-sach, huong-dan …)
══════════════════════════════════════ */
.page-hero {
  min-height: 38vh;
  background: var(--grad-hero);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 5% 60px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 60%, rgba(255,255,255,.45), transparent 55%),
              radial-gradient(circle at 70% 40%, rgba(249,168,201,.3), transparent 55%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.page-hero-emoji   { font-size: 3.5rem; margin-bottom: 1rem; display: block; }
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 5vw, 3rem);
  color: var(--text-dark); margin-bottom: 1rem; line-height: 1.25;
}
.page-hero-title span { color: var(--pink-deep); }
.page-hero-desc { font-size: 1rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 2rem; }
.page-breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: .82rem; color: var(--text-light);
  margin-bottom: 1.2rem;
}
.page-breadcrumb a { color: var(--pink-deep); font-weight: 700; }
.page-breadcrumb i { font-size: .7rem; }

.page-main { background: var(--cream); padding: 60px 0 80px; }
.page-wrap  { max-width: 900px; margin: 0 auto; padding: 0 5%; }

.page-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
}
.page-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; color: var(--text-dark);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--pink-soft);
}
.page-card-title .icon-circle {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad-pink);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; flex-shrink: 0;
}
.page-list { list-style: none; }
.page-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(249,168,201,.18);
  color: var(--text-mid); line-height: 1.75;
  display: flex; gap: 12px; align-items: flex-start;
}
.page-list li:last-child { border-bottom: none; }
.page-list li .bullet { color: var(--pink-deep); flex-shrink: 0; margin-top: 2px; }
.page-list li strong { color: var(--text-dark); }

.page-note {
  background: linear-gradient(135deg, var(--pink-soft) 0%, var(--lavender-soft) 100%);
  border-radius: 16px; padding: 18px 22px;
  border-left: 4px solid var(--pink-deep);
  margin-top: 20px;
  font-size: .9rem; color: var(--text-mid); line-height: 1.85;
}
.page-note strong { color: var(--pink-deep); }

.page-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.page-step {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid rgba(249,168,201,.18);
}
.page-step:last-child { border-bottom: none; }
.page-step-num {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--grad-pink); color: #fff;
  font-weight: 700; font-size: .95rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.page-step-body h4  { font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.page-step-body p   { font-size: .9rem; color: var(--text-mid); line-height: 1.7; }
.page-cta-box {
  background: linear-gradient(135deg, #f48fb1, #ce93d8);
  border-radius: 20px; padding: 36px 32px; text-align: center; color: #fff;
  margin-top: 32px;
}
.page-cta-box h3 { font-size: 1.4rem; margin-bottom: 10px; font-family: 'Playfair Display',serif; }
.page-cta-box p  { font-size: .95rem; opacity: .9; margin-bottom: 20px; line-height: 1.7; }

@media (max-width: 768px) {
  .page-hero   { padding: 100px 4% 50px; }
  .page-grid-2 { grid-template-columns: 1fr; }
  .page-card   { padding: 24px 18px; }
  .page-wrap   { padding: 0 4%; }
}

/* ══════════════════════════════════════
   RESPONSIVE – MOBILE FIRST FIXES
══════════════════════════════════════ */

/* ── Prevent horizontal scroll globally ── */
html { max-width: 100vw; overflow-x: hidden; }
body { max-width: 100%; overflow-x: hidden; }

/* ── Cursor: touch devices don't need custom cursor ── */
@media (hover: none) and (pointer: coarse) {
  #cursor-dot, #cursor-ring { display: none !important; }
  body { cursor: auto; }
}

/* ── 1024px ── */
@media (max-width: 1024px) {
  .footer-top  { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { max-width: 460px; margin: 0 auto; }
}

/* ── 768px ── */
@media (max-width: 768px) {
  /* Nav */
  .nav-links  { display: none; }
  .hamburger  { display: flex; }

  /* Stats */
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  /* Section wrap */
  .section-wrap { padding-left: 4%; padding-right: 4%; }

  /* Process */
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr 1fr; }

  /* Review slider – remove gap, use card margin so JS outerWidth(true) works correctly */
  .reviews-track  { gap: 0; }
  .review-card    {
    min-width: 100%;
    width: 100%;
    margin-right: 0;
    flex-shrink: 0;
  }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* About: fix float image on single-column layout */
  .about-img-float {
    position: static;
    width: 55%;
    margin: 20px auto 0;
    border-radius: 16px;
    animation: none;
  }
  .about-inner { gap: 40px; }

  /* Footer */
  .footer-top    { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Floating pill: hide text to save space */
  .floating-shopee span { display: none; }
  .floating-shopee { padding: 13px 16px; border-radius: 50%; }

  /* Move back-to-top above floating pill */
  #back-top { bottom: 86px; }

  /* Hero: hide hard break on small screens */
  .hero-tagline br { display: none; }
}

/* ── 600px ── */
@media (max-width: 600px) {
  /* Cat grid: force 2 cols */
  .cat-grid { grid-template-columns: repeat(2, 1fr); }

  /* QR wrap: stack vertically */
  .qr-wrap { flex-direction: column; text-align: center; }
  .qr-box  { margin: 0 auto; }

  /* Filter tabs: smaller padding */
  .filter-btn { padding: 6px 14px; font-size: .82rem; }
}

/* ── 500px ── */
@media (max-width: 500px) {
  .why-grid      { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-inner   { grid-template-columns: repeat(2, 1fr); }

  /* Products: 2 cols but narrower padding */
  .products-grid  { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-info   { padding: 10px 12px 14px; }
  .product-name   { font-size: .8rem; }
  .product-price  { font-size: 1rem; }
  .product-sold   { font-size: .72rem; }

  /* Section head */
  .section-wrap { padding-top: 52px; padding-bottom: 52px; }

  /* Hero badges: smaller */
  .badge { font-size: .78rem; padding: 5px 12px; }

  /* Floating: fully circular icon only */
  .floating-shopee { width: 48px; height: 48px; padding: 0;
                     justify-content: center; border-radius: 50%; }

  /* Hero padding on small screens */
  #hero { padding-top: 90px; padding-left: 4%; padding-right: 4%; }

  /* CTA banner */
  .cta-inner { padding: 50px 4%; }

  /* Contact map padding */
  .contact-map { padding: 20px; }

  /* Footer padding */
  #footer { padding: 48px 4% 24px; }
}

/* ── 400px ── */
@media (max-width: 400px) {
  /* Products: single column on very small phones */
  .products-grid { grid-template-columns: 1fr; }

  /* Hero title scale */
  .hero-title { font-size: clamp(2.2rem, 10vw, 3rem); }

  /* Stats: keep 2 cols but tighter */
  .stat-num   { font-size: 2rem; }
  .stat-label { font-size: .74rem; }
  .stat-item  { padding: 20px 10px; }

  /* Cat grid single col only if truly tiny */
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-card { padding: 22px 10px 18px; }
  .cat-icon { font-size: 2.2rem; }
}

/* ── Blog ── */
.page-hero--compact { min-height: 32vh; }
.blog-meta { font-size: .85rem; color: var(--text-light); margin-top: 12px; }
.blog-meta i { margin-right: 6px; color: var(--pink); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.blog-card {
  display: block; background: #fff; border-radius: 18px; padding: 24px 22px;
  box-shadow: 0 6px 24px rgba(180,80,130,.08);
  border: 1px solid rgba(249,168,201,.22);
  text-decoration: none; color: inherit;
  transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(180,80,130,.14); }
.blog-card-tag {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--pink-deep);
}
.blog-card-title { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin: 10px 0 8px; line-height: 1.4; }
.blog-card-desc { font-size: .88rem; color: var(--text-mid); line-height: 1.6; margin: 0 0 12px; }
.blog-card-link { font-size: .82rem; font-weight: 700; color: var(--pink-deep); }
.blog-article.prose { max-width: 720px; margin: 0 auto; }
.blog-article.prose p { font-size: .95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.blog-article.prose h2 { font-size: 1.2rem; color: var(--text-dark); margin: 28px 0 12px; font-family: 'Playfair Display', serif; }
.blog-article.prose ul { margin: 0 0 18px 1.2rem; padding: 0; }
.blog-article.prose li { font-size: .95rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 8px; }
.blog-article.prose a { color: var(--pink-deep); font-weight: 600; text-decoration: none; }
.blog-article.prose a:hover { text-decoration: underline; }
.blog-related { margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(249,168,201,.3); }
.blog-related h2 { font-size: 1.1rem; margin-bottom: 12px; }
.blog-related ul { list-style: none; padding: 0; }
.blog-related li { margin-bottom: 8px; }
.blog-related a { color: var(--pink-deep); font-weight: 600; text-decoration: none; }
.blog-related a:hover { text-decoration: underline; }
.seo-cluster-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px;
}
.seo-cluster-card {
  display: block; padding: 20px 18px; background: #fff; border-radius: 16px;
  border: 1px solid rgba(249,168,201,.2); text-decoration: none; color: inherit;
  transition: transform .2s, border-color .2s;
}
.seo-cluster-card:hover { transform: translateY(-3px); border-color: var(--pink); }
.seo-cluster-card h3 { font-size: .98rem; font-weight: 700; color: var(--pink-deep); margin-bottom: 6px; }
.seo-cluster-card p { font-size: .82rem; color: var(--text-mid); margin: 0; line-height: 1.5; }

/* ── SEO content / use cases ── */
.seo-content { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
.seo-content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.seo-content-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 6px 24px rgba(180,80,130,.08);
  border: 1px solid rgba(249,168,201,.2);
}
.seo-content-card--wide { grid-column: 1 / -1; }
.seo-content-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pink-deep);
  margin-bottom: 10px;
  line-height: 1.35;
}
.seo-content-card p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}
.seo-content-card a { color: var(--pink-deep); font-weight: 600; }
@media (max-width: 768px) {
  .seo-content-grid { grid-template-columns: 1fr; }
  .seo-content-card--wide { grid-column: auto; }
}

/* ── SEO category pages ── */
.seo-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.seo-product-item {
  margin: 0;
  text-align: center;
}
.seo-product-item img {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 6px 24px rgba(180, 80, 130, .12);
}
.seo-product-item figcaption {
  margin-top: 10px;
  font-size: .88rem;
  line-height: 1.5;
  color: var(--text-mid);
}
.page-link-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-link-list a {
  color: var(--pink-deep);
  font-weight: 600;
  text-decoration: none;
}
.page-link-list a:hover { text-decoration: underline; }
.page-link-list i { font-size: .7rem; margin-right: 6px; opacity: .7; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border-radius: 16px; padding: 0 22px;
  box-shadow: 0 4px 20px rgba(180,80,130,.08);
  border: 1px solid rgba(249,168,201,.25);
}
.faq-item summary {
  cursor: pointer; font-weight: 700; font-size: 1rem;
  color: var(--text-dark); padding: 18px 0;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; float: right; color: var(--pink-deep); font-size: 1.2rem;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 0 18px; margin: 0; color: var(--text-mid);
  font-size: .92rem; line-height: 1.65;
}
.faq-item a { color: var(--pink-deep); font-weight: 600; }

/* ════════════════════════════════
   ACCESSIBILITY – SKIP LINK
════════════════════════════════ */
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 9999;
  background: var(--pink); color: #fff;
  padding: 10px 18px; border-radius: 6px; font-weight: 700;
  text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ════════════════════════════════
   ACCESSIBILITY – FOCUS VISIBLE
════════════════════════════════ */
:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible,
a:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; }

/* ════════════════════════════════
   PREFERS-REDUCED-MOTION
════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  #particles { display: none !important; }
  #cursor-dot, #cursor-ring { display: none !important; }
  [data-aos] { opacity: 1 !important; transform: none !important; }
  .floating-shopee { animation: none !important; }
  .hero-deco { animation: none !important; }
}
