/* ===================================================================
   MAK COSMETICS — Premium Beauty Store
   Stylesheet: style.css
   Theme: Luxury Beauty | Pink & White | Poppins
   Primary: #E91E63 | Secondary: #C2185B | Background: #FFF8FB
   =================================================================== */

/* ============ 1. CSS VARIABLES / DESIGN TOKENS ============ */
:root {
  /* Brand color ramps */
  --pink-50:  #FFF8FB;
  --pink-100: #FCE4EC;
  --pink-200: #F8BBD0;
  --pink-300: #F48FB1;
  --pink-400: #F06292;
  --pink-500: #E91E63;   /* Primary */
  --pink-600: #C2185B;   /* Secondary */
  --pink-700: #AD1457;
  --pink-800: #880E4F;
  --pink-900: #4A0E2A;

  /* Neutrals */
  --ink-900: #1A1A2E;
  --ink-800: #2D2D44;
  --ink-700: #4A4A68;
  --ink-600: #6B6B8A;
  --ink-500: #9A9AB0;
  --ink-400: #C4C4D4;
  --ink-300: #E0E0EA;
  --ink-200: #EEEEF5;
  --ink-100: #F7F7FB;
  --white:    #FFFFFF;

  /* Semantic */
  --primary:   #E91E63;
  --secondary: #C2185B;
  --accent:    #F06292;
  --success:   #2ECC71;
  --warning:   #F39C12;
  --error:     #E74C3C;
  --bg:        #FFF8FB;
  --surface:   #FFFFFF;
  --text:      #2D2D44;
  --text-soft: #6B6B8A;
  --border:    #F8BBD0;

  /* Typography */
  --font-body: 'Poppins', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.375rem;
  --fs-2xl: 1.75rem;
  --fs-3xl: 2.25rem;
  --fs-4xl: 3rem;
  --fs-5xl: 4rem;

  /* Spacing — 8px scale */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4rem;
  --sp-7: 6rem;

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

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(233,30,99,.08);
  --sh-md: 0 8px 24px rgba(233,30,99,.12);
  --sh-lg: 0 18px 48px rgba(233,30,99,.18);
  --sh-glow: 0 8px 32px rgba(233,30,99,.35);

  /* Motion */
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
  --t-fast: .2s;
  --t-med: .4s;
  --t-slow: .7s;
}

/* ============ DARK MODE TOKENS ============ */
[data-bs-theme="dark"] {
  --bg:        #14090F;
  --surface:   #1F1019;
  --text:      #F5E8EE;
  --text-soft: #B89CA8;
  --border:    #3D1F30;
  --ink-100:   #2A1622;
  --ink-200:   #36192B;
  --ink-300:   #4A2438;
  --sh-sm: 0 2px 8px rgba(0,0,0,.3);
  --sh-md: 0 8px 24px rgba(0,0,0,.4);
  --sh-lg: 0 18px 48px rgba(0,0,0,.5);
}

/* ============ 2. RESET & BASE ============ */
*,*::before,*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  transition: background var(--t-med) var(--ease), color var(--t-med) var(--ease);
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

a { color: var(--primary); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--secondary); }

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--pink-200); color: var(--pink-800); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--pink-50); }
::-webkit-scrollbar-thumb { background: var(--pink-300); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
[data-bs-theme="dark"] ::-webkit-scrollbar-track { background: var(--surface); }

/* Focus visibility for accessibility */
:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; border-radius: 4px; }

/* ============ 3. UTILITY HELPERS ============ */
.text-pink { color: var(--primary) !important; }
.text-soft { color: var(--text-soft) !important; }
.bg-pink { background: var(--primary) !important; }
.bg-soft { background: var(--pink-50) !important; }

.section { padding: var(--sp-6) 0; }
.section-alt { background: var(--surface); }

[data-bs-theme="dark"] .section-alt { background: var(--surface); }
[data-bs-theme="dark"] body { background: var(--bg); }

/* ============ 4. PRELOADER ============ */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--pink-50);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: var(--sp-2); transition: opacity .6s var(--ease), visibility .6s;
}
[data-bs-theme="dark"] #preloader { background: var(--bg); }
#preloader.hidden { opacity: 0; visibility: hidden; }

.loader-heart {
  font-size: 3.5rem; color: var(--primary);
  animation: heartBeat 1s var(--ease) infinite;
}
.loader-text {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--secondary); letter-spacing: 1px;
}

@keyframes heartBeat {
  0%,100% { transform: scale(1); }
  25%     { transform: scale(1.15); }
  50%     { transform: scale(.95); }
  75%     { transform: scale(1.1); }
}

/* ============ 5. TOP BAR ============ */
.top-bar {
  background: var(--pink-800); color: var(--pink-100);
  font-size: var(--fs-sm); padding: .4rem 0;
  position: relative; z-index: 1030;
}
.top-bar-text i, .top-bar-links a i { margin-right: 4px; }
.top-bar-links { gap: 1.25rem; }
.top-bar-links a { color: var(--pink-100); }
.top-bar-links a:hover { color: var(--white); }

/* ============ 6. NAVBAR ============ */
.sticky-navbar {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--sh-sm);
  padding: .65rem 0;
  transition: all var(--t-med) var(--ease);
  z-index: 1020;
}
.sticky-navbar.scrolled {
  padding: .35rem 0;
  box-shadow: var(--sh-md);
  background: rgba(255,255,255,.98);
}
[data-bs-theme="dark"] .sticky-navbar {
  background: rgba(31,16,25,.92);
}
[data-bs-theme="dark"] .sticky-navbar.scrolled {
  background: rgba(31,16,25,.98);
}

.navbar-brand { display: flex; align-items: center; gap: .6rem; font-weight: 800; }
.brand-logo {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  box-shadow: var(--sh-glow); flex-shrink: 0;
}
.brand-name { font-size: 1.35rem; color: var(--text); letter-spacing: .3px; }
.brand-accent { color: var(--primary); }

.navbar-nav .nav-link {
  font-weight: 500; color: var(--text);
  padding: .5rem 1rem !important;
  position: relative; transition: color var(--t-fast);
}
.navbar-nav .nav-link::after {
  content: ''; position: absolute;
  bottom: .2rem; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--primary);
  border-radius: 2px; transition: width var(--t-med) var(--ease);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--primary); }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 60%; }

.nav-actions { flex-direction: row; align-items: center; gap: .35rem; }

.icon-btn {
  background: none; border: none;
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--text);
  transition: all var(--t-fast) var(--ease);
  position: relative; cursor: pointer;
}
.icon-btn:hover { background: var(--pink-100); color: var(--primary); }
[data-bs-theme="dark"] .icon-btn:hover { background: var(--ink-300); }

.badge-count {
  position: absolute; top: 2px; right: 2px;
  background: var(--primary); color: #fff;
  font-size: .65rem; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 4px; border: 2px solid var(--surface);
}

.btn-login {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff !important; border: none;
  padding: .5rem 1.25rem !important; border-radius: var(--r-pill);
  font-weight: 600; font-size: var(--fs-sm);
  box-shadow: var(--sh-sm); transition: all var(--t-fast) var(--ease);
}
.btn-login:hover { transform: translateY(-2px); box-shadow: var(--sh-glow); color: #fff; }

/* ============ 7. BUTTONS ============ */
.btn-primary-glow {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none; color: #fff;
  padding: .8rem 2rem; border-radius: var(--r-pill);
  font-weight: 600; letter-spacing: .3px;
  box-shadow: var(--sh-md); transition: all var(--t-med) var(--ease);
}
.btn-primary-glow:hover { transform: translateY(-3px); box-shadow: var(--sh-glow); color: #fff; }

.btn-outline-glow {
  background: transparent; border: 2px solid var(--primary);
  color: var(--primary); padding: .75rem 1.9rem;
  border-radius: var(--r-pill); font-weight: 600;
  transition: all var(--t-med) var(--ease);
}
.btn-outline-glow:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

.btn-light-glow {
  background: #fff; border: none; color: var(--secondary);
  padding: .8rem 2rem; border-radius: var(--r-pill);
  font-weight: 600; box-shadow: var(--sh-md);
  transition: all var(--t-med) var(--ease);
}
.btn-light-glow:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); color: var(--secondary); }

/* ============ 8. HERO ============ */
.hero {
  position: relative; min-height: 92vh;
  background: linear-gradient(135deg, #FFF8FB 0%, #FCE4EC 40%, #F8BBD0 100%);
  display: flex; align-items: center; overflow: hidden;
}
[data-bs-theme="dark"] .hero {
  background: linear-gradient(135deg, #14090F 0%, #2A1622 50%, #3D1F30 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(233,30,99,.12), transparent 60%);
}
.hero-content { position: relative; z-index: 2; }
.min-vh-90 { min-height: 90vh; }

.hero-eyebrow {
  display: inline-block; background: rgba(233,30,99,.1);
  color: var(--secondary); font-weight: 600;
  font-size: var(--fs-sm); letter-spacing: 2px; text-transform: uppercase;
  padding: .4rem 1.2rem; border-radius: var(--r-pill); margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 1.25rem;
}
.text-shine {
  background: linear-gradient(120deg, var(--primary), var(--accent), var(--secondary));
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }

.hero-subtitle {
  font-size: var(--fs-lg); color: var(--text-soft);
  max-width: 540px; margin-bottom: 2rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-size: 2rem; font-weight: 800;
  color: var(--primary); font-family: var(--font-display);
}
.hero-stats span { font-size: var(--fs-sm); color: var(--text-soft); }

.hero-visual { display: flex; justify-content: center; }
.hero-card-float { max-width: 420px; animation: floatY 5s var(--ease) infinite; }
.hero-card-float img { border: 6px solid rgba(255,255,255,.4); }
[data-bs-theme="dark"] .hero-card-float img { border-color: rgba(255,255,255,.12); }
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-18px); }
}

.scroll-down {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%); z-index: 3;
  color: var(--primary); font-size: 1.5rem;
  animation: bounce 2s var(--ease) infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(10px); }
}

/* ============ 9. TRUST STRIP ============ */
.trust-strip {
  background: var(--surface); padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.trust-strip i {
  font-size: 1.6rem; color: var(--primary);
  display: block; margin-bottom: .25rem;
}
.trust-strip span { font-weight: 600; font-size: var(--fs-sm); color: var(--text); }
.trust-strip > div > div { transition: transform var(--t-fast); }
.trust-strip > div > div:hover { transform: translateY(-3px); }

/* ============ 10. SECTION HEADERS ============ */
.section-head { max-width: 640px; margin: 0 auto; margin-bottom: var(--sp-4); }
.section-eyebrow {
  display: inline-block; color: var(--primary);
  font-weight: 600; font-size: var(--fs-sm);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: .5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700;
  margin-bottom: .75rem;
}
.section-sub { color: var(--text-soft); font-size: var(--fs-lg); }

/* ============ 11. CATEGORIES ============ */
.category-card {
  display: block; background: var(--surface);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-sm); transition: all var(--t-med) var(--ease);
  text-align: center; padding: 1.25rem; border: 1px solid transparent;
}
.category-card:hover {
  transform: translateY(-8px); box-shadow: var(--sh-lg);
  border-color: var(--border); color: var(--text);
}
.category-img {
  width: 120px; height: 120px; border-radius: 50%;
  overflow: hidden; margin: 0 auto 1rem;
  border: 4px solid var(--pink-100);
}
.category-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.category-card:hover .category-img img { transform: scale(1.1); }
.category-card h3 { font-size: 1.2rem; margin-bottom: .25rem; color: var(--text); }
.category-card span { font-size: var(--fs-sm); color: var(--primary); font-weight: 500; }

/* ============ 12. PRODUCT CARD ============ */
.product-card {
  background: var(--surface); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-sm);
  transition: all var(--t-med) var(--ease);
  position: relative; height: 100%; display: flex; flex-direction: column;
  border: 1px solid var(--border);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }

.product-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 1; background: var(--pink-50);
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }

.product-badge {
  position: absolute; top: .75rem; left: .75rem;
  background: var(--primary); color: #fff;
  font-size: .7rem; font-weight: 700;
  padding: .25rem .6rem; border-radius: var(--r-pill);
  z-index: 2; box-shadow: var(--sh-sm);
}
.product-badge.bestseller { background: var(--warning); }
.product-badge.new { background: var(--success); }

.product-actions {
  position: absolute; top: .75rem; right: .75rem;
  display: flex; flex-direction: column; gap: .5rem; z-index: 2;
  opacity: 0; transform: translateX(15px);
  transition: all var(--t-med) var(--ease-bounce);
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.product-action-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.92); border: none;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text); font-size: 1rem; cursor: pointer;
  box-shadow: var(--sh-sm); transition: all var(--t-fast);
}
.product-action-btn:hover { background: var(--primary); color: #fff; }
.product-action-btn.active { background: var(--primary); color: #fff; }

.product-info { padding: 1.1rem; display: flex; flex-direction: column; flex-grow: 1; }
.product-cat { font-size: .7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-soft); }
.product-name { font-size: 1rem; font-weight: 600; margin: .25rem 0; color: var(--text); line-height: 1.3; }
.product-rating { font-size: .8rem; color: var(--warning); margin-bottom: .5rem; }
.product-rating .rated-count { color: var(--text-soft); margin-left: .25rem; }

.product-price { display: flex; align-items: center; gap: .5rem; margin-bottom: .75rem; margin-top: auto; }
.product-price .price { font-size: 1.2rem; font-weight: 700; color: var(--primary); }
.product-price .old-price { font-size: .9rem; color: var(--text-soft); text-decoration: line-through; }
.product-price .save { font-size: .7rem; color: var(--success); font-weight: 600; }

.product-btns { display: flex; gap: .5rem; }
.product-btns .btn-cart {
  flex: 1; background: var(--primary); color: #fff;
  border: none; border-radius: var(--r-sm);
  padding: .55rem; font-size: .85rem; font-weight: 600;
  transition: all var(--t-fast);
}
.product-btns .btn-cart:hover { background: var(--secondary); }
.product-btns .btn-wa {
  background: #25D366; color: #fff; border: none;
  border-radius: var(--r-sm); padding: .55rem .7rem;
  font-size: .85rem; transition: opacity var(--t-fast);
}
.product-btns .btn-wa:hover { opacity: .85; }

/* ============ 13. OFFER BANNER ============ */
.offer-banner { padding: var(--sp-5) 0; }
.offer-card {
  background: linear-gradient(135deg, var(--pink-600), var(--pink-800));
  border-radius: var(--r-xl); padding: var(--sp-5);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; overflow: hidden; position: relative;
  box-shadow: var(--sh-lg);
}
.offer-card::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.offer-text { position: relative; z-index: 2; color: #fff; flex: 1; min-width: 260px; }
.offer-tag {
  display: inline-block; background: rgba(255,255,255,.2);
  padding: .3rem 1rem; border-radius: var(--r-pill);
  font-size: .8rem; font-weight: 600; margin-bottom: 1rem;
}
.offer-text h2 { color: #fff; font-family: var(--font-display); font-size: 2.2rem; margin-bottom: .5rem; }
.offer-text p { opacity: .9; }
.offer-text p strong { background: rgba(255,255,255,.2); padding: .1rem .5rem; border-radius: 6px; }
.offer-visual { flex: 1; min-width: 260px; max-width: 400px; position: relative; z-index: 2; }
.offer-visual img { border-radius: var(--r-lg); box-shadow: var(--sh-lg); }

/* ============ 14. WHY CHOOSE US ============ */
.why-card {
  background: var(--surface); border-radius: var(--r-lg);
  padding: 2rem 1.5rem; text-align: center; height: 100%;
  box-shadow: var(--sh-sm); border: 1px solid var(--border);
  transition: all var(--t-med) var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--primary); }
.why-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; font-size: 1.8rem; color: var(--primary);
  transition: transform var(--t-med) var(--ease-bounce);
}
.why-card:hover .why-icon { transform: rotate(360deg) scale(1.1); }
.why-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.why-card p { font-size: var(--fs-sm); color: var(--text-soft); margin: 0; }
[data-bs-theme="dark"] .why-icon { background: var(--ink-300); }

/* ============ 15. REVIEWS ============ */
.reviews-section { background: linear-gradient(180deg, var(--bg), var(--pink-50)); }
[data-bs-theme="dark"] .reviews-section { background: var(--bg); }

.review-card {
  background: var(--surface); border-radius: var(--r-lg);
  padding: 2rem; height: 100%; box-shadow: var(--sh-sm);
  border: 1px solid var(--border); position: relative;
  transition: all var(--t-med) var(--ease);
}
.review-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.review-card::before {
  content: '\201C'; position: absolute; top: -10px; left: 1rem;
  font-family: var(--font-display); font-size: 4rem; color: var(--pink-200);
  line-height: 1; z-index: 0;
}
.review-stars { color: var(--warning); margin-bottom: .75rem; position: relative; z-index: 1; }
.review-text { position: relative; z-index: 1; font-size: .95rem; color: var(--text); margin-bottom: 1.25rem; }
.review-author { display: flex; align-items: center; gap: .75rem; position: relative; z-index: 1; }
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1.1rem;
}
.review-name { font-weight: 600; font-size: .9rem; margin: 0; }
.review-role { font-size: .78rem; color: var(--text-soft); margin: 0; }

/* ============ 16. GOOGLE REVIEWS STRIP ============ */
.google-reviews-strip { padding: 1.5rem 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.grs-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.grs-rating { display: flex; align-items: center; gap: 1rem; }
.grs-rating > i { font-size: 2rem; color: #4285F4; }
.grs-stars { color: var(--warning); font-size: 1.1rem; margin-bottom: .2rem; }
.grs-rating span { font-size: .9rem; color: var(--text-soft); }
.grs-rating strong { color: var(--text); }

/* ============ 17. INSTAGRAM SECTION ============ */
.insta-grid { margin-top: 1rem; }
.insta-grid a {
  display: block; position: relative; border-radius: var(--r-md);
  overflow: hidden; aspect-ratio: 1;
}
.insta-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.insta-grid a:hover img { transform: scale(1.12); }
.insta-hover {
  position: absolute; inset: 0; background: rgba(233,30,99,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--t-med); font-size: 1.8rem; color: #fff;
}
.insta-grid a:hover .insta-hover { opacity: 1; }

/* ============ 18. NEWSLETTER ============ */
.newsletter-section { padding: var(--sp-5) 0; }
.newsletter-card {
  background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
  border-radius: var(--r-xl); padding: var(--sp-5);
  text-align: center; box-shadow: var(--sh-md);
}
[data-bs-theme="dark"] .newsletter-card { background: linear-gradient(135deg, var(--ink-300), var(--ink-800)); }
.newsletter-card h2 { font-family: var(--font-display); margin-bottom: .75rem; color: var(--pink-800); }
[data-bs-theme="dark"] .newsletter-card h2 { color: var(--pink-200); }
.newsletter-card p { color: var(--text-soft); margin-bottom: 1.5rem; }
.newsletter-form { display: flex; gap: .75rem; max-width: 500px; margin: 0 auto 1rem; flex-wrap: wrap; }
.newsletter-form .form-control {
  flex: 1; min-width: 200px; border-radius: var(--r-pill);
  border: 2px solid transparent; padding: .75rem 1.25rem;
}
.newsletter-form .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 .2rem rgba(233,30,99,.15); }
.newsletter-note { font-size: .78rem; color: var(--text-soft); }

/* ============ 19. FOOTER ============ */
.footer { background: var(--ink-900); color: var(--ink-300); padding: var(--sp-6) 0 0; }
[data-bs-theme="dark"] .footer { background: #0A0508; }

.footer-brand { margin-bottom: 1rem; }
.footer-brand .brand-name { color: #fff; }
.footer-about { font-size: .9rem; line-height: 1.7; margin-bottom: 1.25rem; max-width: 320px; }

.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: all var(--t-fast);
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }

.footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1.25rem; position: relative; padding-bottom: .5rem; }
.footer h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--primary); }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: var(--ink-300); font-size: .9rem; transition: all var(--t-fast); }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { font-size: .88rem; margin-bottom: .8rem; display: flex; gap: .6rem; line-height: 1.5; }
.footer-contact li a { color: var(--ink-300); }
.footer-contact li a:hover { color: var(--primary); }
.footer-contact i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

.footer-divider { border-color: rgba(255,255,255,.08); margin: 2.5rem 0 1.5rem; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .85rem; padding-bottom: 1.5rem;
}

/* ============ 20. FLOATING BUTTONS ============ */
.float-whatsapp {
  position: fixed; bottom: 24px; right: 24px; z-index: 1000;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 6px 20px rgba(37,211,102,.4);
  animation: pulseRing 2s var(--ease) infinite;
}
.float-whatsapp:hover { color: #fff; transform: scale(1.08); }
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.back-to-top {
  position: fixed; bottom: 24px; left: 24px; z-index: 1000;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer;
  box-shadow: var(--sh-md); opacity: 0; visibility: hidden;
  transition: all var(--t-med) var(--ease);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--secondary); transform: translateY(-3px); }

/* ============ 21. CART OFFCANVAS ============ */
.cart-offcanvas { width: 400px; max-width: 90vw; }
[data-bs-theme="dark"] .cart-offcanvas { background: var(--surface); }
.cart-offcanvas .offcanvas-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}
.cart-offcanvas .offcanvas-header .btn-close { filter: invert(1); }
.cart-item {
  display: flex; gap: .75rem; padding: 1rem 0;
  border-bottom: 1px solid var(--border); align-items: center;
}
.cart-item img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: .9rem; font-weight: 600; margin: 0; }
.cart-item-price { font-size: .85rem; color: var(--primary); font-weight: 600; }
.cart-item-qty { display: flex; align-items: center; gap: .4rem; margin-top: .4rem; }
.qty-btn {
  width: 26px; height: 26px; border-radius: 6px;
  border: 1px solid var(--border); background: var(--surface);
  color: var(--text); font-size: .85rem; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.cart-item-remove { background: none; border: none; color: var(--error); cursor: pointer; font-size: 1.1rem; }
.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--text-soft); }
.cart-empty i { font-size: 3rem; color: var(--pink-300); margin-bottom: 1rem; }
.cart-footer {
  margin-top: auto; padding-top: 1rem; border-top: 2px solid var(--border);
}
.cart-total { display: flex; justify-content: space-between; font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }
.cart-total .amount { color: var(--primary); }
.cart-checkout {
  width: 100%; background: #25D366; color: #fff; border: none;
  border-radius: var(--r-sm); padding: .8rem; font-weight: 600;
  transition: opacity var(--t-fast);
}
.cart-checkout:hover { opacity: .85; }
.cart-clear { width: 100%; background: none; border: 1px solid var(--border); color: var(--text-soft); border-radius: var(--r-sm); padding: .6rem; margin-top: .5rem; font-size: .85rem; }
.cart-clear:hover { border-color: var(--error); color: var(--error); }

/* ============ 22. QUICK VIEW MODAL ============ */
[data-bs-theme="dark"] .modal-content { background: var(--surface); }
.qv-row { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.qv-img { flex: 1; min-width: 250px; }
.qv-img img { width: 100%; border-radius: var(--r-md); }
.qv-details { flex: 1; min-width: 250px; }
.qv-cat { font-size: .8rem; text-transform: uppercase; color: var(--text-soft); letter-spacing: 1px; }
.qv-name { font-size: 1.5rem; font-weight: 700; margin: .5rem 0; }
.qv-rating { color: var(--warning); margin-bottom: .75rem; }
.qv-price { font-size: 1.6rem; font-weight: 700; color: var(--primary); }
.qv-old { text-decoration: line-through; color: var(--text-soft); font-size: 1rem; margin-left: .5rem; }
.qv-desc { color: var(--text-soft); margin: 1rem 0; font-size: .9rem; }
.qv-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1rem; }
.qv-share {
  background: var(--ink-100); border: none; border-radius: var(--r-sm);
  padding: .7rem 1rem; color: var(--text); font-size: .9rem; cursor: pointer;
}
.qv-share:hover { background: var(--ink-200); }

/* ============ 23. TOAST ============ */
.mak-toast {
  background: var(--surface); border-radius: var(--r-md);
  box-shadow: var(--sh-lg); border-left: 4px solid var(--primary);
  padding: .9rem 1.2rem; display: flex; align-items: center; gap: .75rem;
  min-width: 280px; font-size: .9rem; color: var(--text);
}
.mak-toast i { font-size: 1.3rem; color: var(--primary); }
.mak-toast.success { border-left-color: var(--success); }
.mak-toast.success i { color: var(--success); }
.mak-toast.error { border-left-color: var(--error); }
.mak-toast.error i { color: var(--error); }

/* ============ 24. SCROLL ANIMATIONS ============ */
[data-animate] {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease-bounce);
}
[data-animate].in-view { opacity: 1; transform: translateY(0); }

/* Stagger children */
[data-animate]:nth-child(2) { transition-delay: .1s; }
[data-animate]:nth-child(3) { transition-delay: .2s; }
[data-animate]:nth-child(4) { transition-delay: .3s; }

/* ============ 25. PAGE HEADER (inner pages) ============ */
.page-header {
  background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
  padding: var(--sp-5) 0; text-align: center; margin-top: 0;
}
[data-bs-theme="dark"] .page-header { background: linear-gradient(135deg, var(--ink-300), var(--pink-900)); }
.page-header h1 { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem); margin-bottom: .5rem; }
.page-header .breadcrumb {
  justify-content: center; margin: 0; font-size: .9rem;
}
.page-header .breadcrumb a { color: var(--secondary); }
.breadcrumb-item.active { color: var(--text-soft); }

/* ============ 26. PRODUCTS PAGE ============ */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2rem; }
@media (max-width: 991px) { .shop-layout { grid-template-columns: 1fr; } }

.shop-sidebar {
  background: var(--surface); border-radius: var(--r-lg);
  padding: 1.5rem; box-shadow: var(--sh-sm); height: fit-content;
  position: sticky; top: 100px;
}
@media (max-width: 991px) { .shop-sidebar { position: static; } }

.filter-group { margin-bottom: 1.5rem; }
.filter-group h5 { font-size: 1rem; margin-bottom: .75rem; }
.filter-list { list-style: none; padding: 0; margin: 0; }
.filter-list li { margin-bottom: .5rem; }
.filter-list label { display: flex; align-items: center; gap: .5rem; font-size: .9rem; cursor: pointer; color: var(--text); }
.filter-list input[type="checkbox"], .filter-list input[type="radio"] { accent-color: var(--primary); }

.price-range { width: 100%; accent-color: var(--primary); }

.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem;
}
.shop-toolbar .result-count { font-size: .9rem; color: var(--text-soft); }
.shop-toolbar .form-select { width: auto; border-radius: var(--r-sm); border-color: var(--border); }

.search-box { position: relative; margin-bottom: 1.5rem; }
.search-box .form-control { padding-left: 2.5rem; border-radius: var(--r-pill); border-color: var(--border); }
.search-box .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 .2rem rgba(233,30,99,.15); }
.search-box i { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-soft); }

.pagination-mak { display: flex; gap: .4rem; justify-content: center; margin-top: 2rem; }
.pagination-mak button {
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--surface);
  color: var(--text); font-weight: 600; cursor: pointer;
  transition: all var(--t-fast);
}
.pagination-mak button:hover, .pagination-mak button.active {
  background: var(--primary); color: #fff; border-color: var(--primary);
}
.pagination-mak button:disabled { opacity: .4; cursor: not-allowed; }

.no-results { text-align: center; padding: 3rem; color: var(--text-soft); }
.no-results i { font-size: 3rem; color: var(--pink-300); margin-bottom: 1rem; }

/* ============ 27. ABOUT PAGE ============ */
.story-section { padding: var(--sp-6) 0; }
.story-img { border-radius: var(--r-lg); box-shadow: var(--sh-md); }
.story-text h2 { font-family: var(--font-display); margin-bottom: 1rem; }
.story-text p { color: var(--text-soft); margin-bottom: 1rem; }

.mv-card {
  background: var(--surface); border-radius: var(--r-lg);
  padding: 2.5rem; text-align: center; height: 100%;
  box-shadow: var(--sh-sm); border-top: 4px solid var(--primary);
  transition: all var(--t-med);
}
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.mv-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; }
.mv-card h3 { font-family: var(--font-display); margin-bottom: .75rem; }

/* Timeline */
.timeline { position: relative; padding: 2rem 0; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(var(--primary), var(--secondary));
  transform: translateX(-50%); border-radius: 3px;
}
.timeline-item {
  display: grid; grid-template-columns: 1fr 60px 1fr;
  align-items: center; margin-bottom: 2rem;
}
.timeline-dot {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--surface); border: 4px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--primary); z-index: 2; margin: 0 auto;
  box-shadow: var(--sh-sm);
}
.timeline-content {
  background: var(--surface); border-radius: var(--r-md);
  padding: 1.25rem; box-shadow: var(--sh-sm);
}
.timeline-content h4 { font-size: 1.1rem; color: var(--primary); margin-bottom: .25rem; }
.timeline-content span { font-size: .8rem; color: var(--text-soft); }
.timeline-content p { font-size: .88rem; margin: .5rem 0 0; color: var(--text-soft); }
.timeline-item:nth-child(odd) .timeline-content:nth-child(3) { visibility: hidden; }
.timeline-item:nth-child(even) .timeline-content:first-child { visibility: hidden; }
@media (max-width: 767px) {
  .timeline::before { left: 25px; }
  .timeline-item { grid-template-columns: 50px 1fr; gap: 1rem; }
  .timeline-item:nth-child(odd) .timeline-content:nth-child(3),
  .timeline-item:nth-child(even) .timeline-content:first-child { visibility: visible; }
  .timeline-item > div:last-child { display: none; }
}

/* Team */
.team-card {
  background: var(--surface); border-radius: var(--r-lg);
  overflow: hidden; text-align: center; box-shadow: var(--sh-sm);
  transition: all var(--t-med); height: 100%;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.team-img { width: 100%; aspect-ratio: 1; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.team-card:hover .team-img img { transform: scale(1.08); }
.team-info { padding: 1.25rem; }
.team-info h4 { font-size: 1.1rem; margin-bottom: .2rem; }
.team-info span { color: var(--primary); font-size: .85rem; font-weight: 500; }
.team-social { margin-top: .75rem; display: flex; gap: .5rem; justify-content: center; }
.team-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--pink-100); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
}
.team-social a:hover { background: var(--primary); color: #fff; }

/* Owner */
.owner-card {
  background: var(--surface); border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--sh-md); display: flex; flex-wrap: wrap;
}
.owner-img { flex: 1; min-width: 280px; }
.owner-img img { width: 100%; height: 100%; object-fit: cover; }
.owner-info { flex: 1.4; min-width: 280px; padding: 2.5rem; }
.owner-info h2 { font-family: var(--font-display); }
.owner-info .owner-role { color: var(--primary); font-weight: 600; margin-bottom: 1rem; }
.owner-info blockquote { font-style: italic; color: var(--text-soft); border-left: 3px solid var(--primary); padding-left: 1rem; }

/* Achievements */
.achievement-card {
  text-align: center; padding: 2rem 1rem;
}
.achievement-card .num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 700;
  color: var(--primary); display: block;
}
.achievement-card .label { font-size: .9rem; color: var(--text-soft); }

/* Satisfaction */
.satisfaction-bar { max-width: 600px; margin: 0 auto; }
.sat-item { margin-bottom: 1.25rem; }
.sat-item .sat-label { display: flex; justify-content: space-between; font-size: .9rem; margin-bottom: .4rem; }
.sat-progress { height: 10px; background: var(--pink-100); border-radius: 10px; overflow: hidden; }
.sat-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--secondary)); border-radius: 10px; width: 0; transition: width 1.5s var(--ease); }

/* ============ 28. GALLERY PAGE ============ */
.gallery-filter { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.gallery-filter button {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-pill); padding: .5rem 1.25rem;
  font-size: .9rem; font-weight: 500; color: var(--text); cursor: pointer;
  transition: all var(--t-fast);
}
.gallery-filter button:hover, .gallery-filter button.active {
  background: var(--primary); color: #fff; border-color: var(--primary);
}

.gallery-grid { column-count: 3; column-gap: 1rem; }
@media (max-width: 767px) { .gallery-grid { column-count: 2; } }
@media (max-width: 480px) { .gallery-grid { column-count: 1; } }

.gallery-item {
  break-inside: avoid; margin-bottom: 1rem; border-radius: var(--r-md);
  overflow: hidden; position: relative; cursor: pointer;
}
.gallery-item img { width: 100%; transition: transform var(--t-slow); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(233,30,99,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--t-med);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: #fff; font-size: 2rem; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.92); display: none;
  align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--r-md); }
.lightbox-close, .lightbox-nav {
  position: absolute; background: rgba(255,255,255,.15);
  border: none; color: #fff; width: 50px; height: 50px;
  border-radius: 50%; font-size: 1.5rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast);
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--primary); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ============ 29. CONTACT PAGE ============ */
.contact-info-card {
  background: var(--surface); border-radius: var(--r-lg);
  padding: 2rem; text-align: center; height: 100%;
  box-shadow: var(--sh-sm); transition: all var(--t-med); border: 1px solid var(--border);
}
.contact-info-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--primary); }
.contact-info-card .ci-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
  color: var(--primary); font-size: 1.5rem;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.contact-info-card h4 { font-size: 1.1rem; margin-bottom: .5rem; }
.contact-info-card p { font-size: .9rem; color: var(--text-soft); margin: 0; }
.contact-info-card a { color: var(--text-soft); }
.contact-info-card a:hover { color: var(--primary); }

.contact-form-wrap {
  background: var(--surface); border-radius: var(--r-lg);
  padding: 2.5rem; box-shadow: var(--sh-md);
}
.form-floating > .form-control,
.form-floating > .form-select { border-color: var(--border); }
.form-floating > .form-control:focus,
.form-floating > .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 .2rem rgba(233,30,99,.15); }

.map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); }
.map-wrap iframe { width: 100%; height: 400px; border: 0; display: block; }

.faq-item {
  background: var(--surface); border-radius: var(--r-md);
  margin-bottom: 1rem; overflow: hidden; box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
}
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.25rem 1.5rem; font-weight: 600; color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-size: 1rem;
}
.faq-q i { transition: transform var(--t-med); color: var(--primary); }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t-med) var(--ease); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 1.5rem 1.25rem; margin: 0; color: var(--text-soft); font-size: .92rem; }

.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: .6rem 0; border-bottom: 1px dashed var(--border); font-size: .9rem; }
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:last-child { font-weight: 600; color: var(--primary); }

/* ============ 30. AUTH PAGES ============ */
.auth-page {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
  padding: 2rem 0;
}
[data-bs-theme="dark"] .auth-page { background: linear-gradient(135deg, var(--bg), var(--ink-800)); }

.auth-card {
  background: var(--surface); border-radius: var(--r-xl);
  padding: 2.5rem; box-shadow: var(--sh-lg);
  max-width: 460px; margin: 0 auto; width: 100%;
}
.auth-card.wide { max-width: 560px; }
.auth-card .auth-logo { text-align: center; margin-bottom: 1.5rem; }
.auth-card h2 { font-family: var(--font-display); text-align: center; margin-bottom: .5rem; }
.auth-card .auth-sub { text-align: center; color: var(--text-soft); margin-bottom: 2rem; font-size: .9rem; }

.auth-field { margin-bottom: 1.25rem; }
.auth-field label { font-size: .85rem; font-weight: 600; margin-bottom: .4rem; display: block; }
.auth-field .form-control {
  border-radius: var(--r-sm); border-color: var(--border);
  padding: .7rem 1rem;
}
.auth-field .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 .2rem rgba(233,30,99,.15); }
.auth-field .input-group-text { background: var(--pink-100); border-color: var(--border); color: var(--primary); }

.auth-divider { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0; color: var(--text-soft); font-size: .85rem; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.btn-auth {
  width: 100%; background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; border: none; border-radius: var(--r-sm);
  padding: .8rem; font-weight: 600; font-size: 1rem;
  transition: all var(--t-med);
}
.btn-auth:hover { transform: translateY(-2px); box-shadow: var(--sh-glow); color: #fff; }

.auth-switch { text-align: center; margin-top: 1.5rem; font-size: .9rem; color: var(--text-soft); }
.auth-switch a { font-weight: 600; }

.password-toggle {
  background: none; border: 1px solid var(--border); border-left: none;
  color: var(--text-soft); cursor: pointer; padding: 0 1rem;
}
.password-toggle:hover { color: var(--primary); }

/* ============ 31. RESPONSIVE TWEAKS ============ */
@media (max-width: 991px) {
  .nav-actions { margin-top: 1rem; justify-content: center; }
  .hero-stats { gap: 1.5rem; }
  .hero-stats strong { font-size: 1.5rem; }
}

@media (max-width: 767px) {
  .section { padding: var(--sp-5) 0; }
  .top-bar-text { font-size: .78rem; }
  .hero { min-height: auto; padding: 3rem 0; }
  .hero-cta { justify-content: center; }
  .offer-card { padding: 2rem 1.5rem; }
  .offer-text h2 { font-size: 1.6rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .float-whatsapp { width: 50px; height: 50px; font-size: 1.4rem; bottom: 18px; right: 18px; }
  .back-to-top { width: 42px; height: 42px; bottom: 18px; left: 18px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; }
}

/* ============ 32. PRINT ============ */
@media print {
  .navbar, .float-whatsapp, .back-to-top, #preloader, .scroll-down, .top-bar { display: none !important; }
}

/* ============ 33. ACCESSIBILITY ============ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  [data-animate] { opacity: 1; transform: none; }
}
