@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ─── Variables ─── */
:root {
  --white: #fbfbfd;
  --black: #1d1d1f;
  --gray-text: #86868b;
  --nav-bg: rgba(251, 251, 253, 0.72);
  --section-border: #d2d2d7;
}

/* ─── LOADER ─── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s, visibility 0.4s;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader-logo {
  width: 64px;
  height: auto;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

.loader-bar {
  width: 120px;
  height: 3px;
  background: #e8e8ed;
  border-radius: 4px;
  overflow: hidden;
}

.loader-progress {
  width: 0%;
  height: 100%;
  background: #0071e3;
  border-radius: 4px;
  animation: loaderFill 1.5s ease-in-out forwards;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.95); }
}

@keyframes loaderFill {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 100%; }
}

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Helvetica Neue', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 0.5px solid rgba(0,0,0,0.08);
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: 1024px;
  width: 100%;
  padding: 0 24px;
}

.nav-logo img {
  height: 35px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}
.nav-logo:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px rgba(0, 113, 227, 0.45));
}

.nav-link {
  font-size: 12px;
  font-weight: 400;
  color: var(--black);
  text-decoration: none;
  opacity: 0.8;
  letter-spacing: -0.01em;
  transition: opacity 0.3s;
}
.nav-link:hover { opacity: 1; }

.nav-search {
  display: flex;
  align-items: center;
  position: relative;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 980px;
  padding: 0 12px;
  height: 32px;
  min-width: 180px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.nav-search:focus-within {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}
.nav-search-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 12px;
  font-family: inherit;
  color: var(--black);
  width: 100%;
  padding: 0 4px;
}
.nav-search-input::placeholder {
  color: var(--gray-text);
  opacity: 0.7;
}
.nav-search-icon {
  width: 13px;
  height: 13px;
  fill: var(--gray-text);
  flex-shrink: 0;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.nav-search:hover .nav-search-icon { opacity: 1; }

.nav-icon {
  display: flex;
  align-items: center;
}
.nav-icon svg {
  width: 15px;
  height: 15px;
  fill: var(--black);
  opacity: 0.8;
  transition: opacity 0.3s;
  cursor: pointer;
}
.nav-icon:hover svg { opacity: 1; }

/* Nav dark variant (for pages with dark hero) */
.nav-dark {
  background: transparent;
  border-bottom-color: transparent;
}
.nav-dark .nav-link { color: #fff; }
.nav-dark .nav-icon { color: #fff; }
.nav-dark .nav-icon svg { stroke: #fff; }
.nav-dark .nav-cart svg { fill: #fff; }
.nav-dark .nav-hamburger svg { stroke: #fff; }
.nav-dark .nav-search {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.nav-dark .nav-search-input { color: #fff; }
.nav-dark .nav-search-input::placeholder { color: rgba(255, 255, 255, 0.5); }
.nav-dark .nav-search-icon { fill: rgba(255, 255, 255, 0.5); }
.nav-dark .nav-logo img { filter: brightness(0) invert(1); }

/* ─── HAMBURGER BUTTON ─── */
.nav-hamburger {
  display: none;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger svg {
  width: 20px;
  height: 20px;
  stroke: var(--black);
  opacity: 0.8;
}

/* ─── DRAWER MENU ─── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  z-index: 1002;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.drawer-panel.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
  height: 48px;
}

.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.drawer-close svg {
  width: 18px;
  height: 18px;
  stroke: var(--black);
  opacity: 0.7;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
}
.drawer-links a {
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  text-decoration: none;
  padding: 12px 24px;
  transition: background 0.2s;
}
.drawer-links a:hover {
  background: rgba(0, 0, 0, 0.04);
}

/* ─── HERO CAROUSEL ─── */
.hero-carousel {
  position: relative;
  width: 100%;
  margin-top: 48px;
  overflow: hidden;
  background: #f5f5f7;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide a {
  display: block;
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 48px;
  background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, transparent 100%);
  color: #fff;
  pointer-events: none;
}

.carousel-title {
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 6px;
}

.carousel-desc {
  font-size: clamp(13px, 1.3vw, 17px);
  font-weight: 400;
  opacity: 0.9;
  max-width: 540px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s, background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.hero-carousel:hover .carousel-arrow {
  opacity: 1;
}

.carousel-arrow:hover {
  background: rgba(255,255,255,0.95);
  transform: translateY(-50%) scale(1.08);
}

.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }

.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.carousel-dot.active {
  background: #fff;
  transform: scale(1.25);
}

.carousel-dot:hover {
  background: rgba(255,255,255,0.85);
}

@media (max-width: 768px) {
  .carousel-arrow { width: 36px; height: 36px; }
  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }
  .carousel-caption { padding: 24px 20px; }
  .carousel-dots { bottom: 10px; gap: 6px; }
  .carousel-dot { width: 6px; height: 6px; }
}


/* ─── SPEAKER HERO ─── */
.speaker-hero {
  width: 100%;
  position: relative;
  overflow: hidden; 
}

.speaker-hero-bg {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.speaker-hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(20px, 3.5vw, 50px) 24px 0;
  z-index: 2;
  text-align: center;
}

.speaker-hero-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #1d1d1f;
  margin-bottom: 6px;
}

.speaker-hero-title-light {
  font-weight: 600;
  color: #2a6db5;
}

.speaker-hero-sub {
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 400;
  color: #6e6e73;
  letter-spacing: -0.016em;
  line-height: 1.3;
  margin-bottom: 18px;
}

.speaker-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.speaker-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 980px;
  background: #0071e3;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.25s, transform 0.2s;
  min-width: 110px;
  border: none;
}
.speaker-btn-primary:hover { background: #0077ed; transform: scale(1.03); }

.speaker-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 24px;
  border-radius: 980px;
  background: transparent;
  color: #0071e3;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: -0.01em;
  border: 1.5px solid #0071e3;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  min-width: 80px;
}
.speaker-btn-outline:hover {
  background: #0071e3;
  color: #fff;
  transform: scale(1.03);
}

/* ─── DIVA LIGHT HERO ─── */
.diva-hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 48px;
  position: relative;
  overflow: hidden;
  background: #000;
}

.section-dark {
  background: #000;
  color: var(--white);
}

.diva-glow-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 65%, rgba(255, 160, 50, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 70%, rgba(255, 120, 20, 0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: divaGlowBg 4s ease-in-out infinite alternate;
}

.diva-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(20px, 3.5vw, 50px) 24px 0;
}

.diva-hero-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 6px;
}

.diva-hero-title-light {
  font-weight: 600;
  color: #a1a1a6;
}

.diva-hero-sub {
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 400;
  color: #a1a1a6;
  letter-spacing: -0.016em;
  line-height: 1.3;
  margin-bottom: 18px;
}

.diva-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.diva-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 980px;
  background: #f5f5f7;
  color: #1d1d1f;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.25s, transform 0.2s;
  min-width: 110px;
}
.diva-btn-primary:hover { background: #fff; transform: scale(1.03); }

.diva-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 980px;
  background: transparent;
  color: #f5f5f7;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: -0.01em;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: background 0.25s, color 0.25s, transform 0.2s;
  min-width: 80px;
}
.diva-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.03);
}

.diva-visual {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.diva-img-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.diva-img {
  width: clamp(220px, 28vw, 380px);
  height: auto;
  position: relative;
  z-index: 2;
  filter:
    drop-shadow(0 0 40px rgba(255, 170, 60, 0.5))
    drop-shadow(0 0 80px rgba(255, 140, 30, 0.3))
    drop-shadow(0 0 120px rgba(255, 120, 20, 0.15));
  animation: divaGlow 4s ease-in-out infinite alternate;
}

.diva-surface-glow {
  width: 130%;
  height: 60px;
  background: radial-gradient(ellipse, rgba(255, 160, 50, 0.35) 0%, rgba(255, 130, 30, 0.15) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  margin-top: -20px;
  z-index: 1;
  animation: divaSurface 4s ease-in-out infinite alternate;
}

/* ─── SCROLL-TRIGGERED ANIMATIONS ─── */
.scroll-anim {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(8px);
}

.scroll-anim.anim-active {
  animation: heroTextIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.scroll-anim.anim-active:nth-child(1) { animation-delay: 0.2s; }
.scroll-anim.anim-active:nth-child(2) { animation-delay: 0.45s; }
.scroll-anim.anim-active:nth-child(3) { animation-delay: 0.7s; }

.scroll-anim-img {
  opacity: 0;
  transform: scale(1.03);
}

.scroll-anim-img.anim-active {
  animation: heroImageIn 1.4s 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.diva-anim {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(8px);
}

.diva-anim.anim-active {
  animation: heroTextIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.diva-anim.anim-active:nth-child(1) { animation-delay: 0.2s; }
.diva-anim.anim-active:nth-child(2) { animation-delay: 0.45s; }
.diva-anim.anim-active:nth-child(3) { animation-delay: 0.7s; }

.diva-visual.diva-anim {
  filter: none;
  transform: scale(0.96);
}

.diva-visual.diva-anim.anim-active {
  animation: scaleIn 1.2s 0.5s ease forwards;
}

.card-anim {
  opacity: 0;
  transform: translateY(25px);
  filter: blur(6px);
}

.card-anim.anim-active {
  animation: heroTextIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.card-anim.anim-active:nth-child(1) { animation-delay: 0.15s; }
.card-anim.anim-active:nth-child(2) { animation-delay: 0.3s; }
.card-anim.anim-active:nth-child(3) { animation-delay: 0.5s; }
.card-anim.anim-active:nth-child(4) { animation-delay: 0.65s; }

/* ─── PROMO GRID ─── */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px;
  max-width: 100%;
}

/* ─── MANTRA BOX CARD ─── */
.mantra-card {
  position: relative;
  overflow: hidden;
  min-height: 580px;
}

.mantra-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.mantra-text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 0 0 0 clamp(24px, 5%, 60px);
  max-width: 42%;
  text-align: left;
  z-index: 2;
}

.mantra-eyebrow {
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #6e6e73;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mantra-title {
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #1d1d1f;
  margin-bottom: 10px;
}

.mantra-sub {
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 400;
  color: #6e6e73;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.mantra-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ─── TORAN LIGHT CARD ─── */
.toran-card {
  position: relative;
  overflow: hidden;
  min-height: 580px;
}

.toran-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.toran-text {
  position: absolute;
  top: clamp(30px, 8%, 60px);
  left: 0;
  text-align: left;
  padding: 0 0 0 clamp(24px, 5%, 60px);
  max-width: 100%;
  z-index: 2;
}
.toran-text a{
 text-decoration: none;
}

.toran-eyebrow {
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6e6e73;
  margin-bottom: 8px;
}

.toran-title {
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #1d1d1f;
  margin-bottom: 10px;
}

.toran-sub {
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 400;
  color: #6e6e73;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.toran-ctas {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

/* ─── HEAD LIGHT CARD ─── */
.headlight-card {
  position: relative;
  overflow: hidden;
  min-height: 580px;
}

.headlight-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.headlight-text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 0 0 0 clamp(24px, 5%, 60px);
  max-width: 50%;
  text-align: left;
  z-index: 2;
}

.headlight-eyebrow {
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #86868b;
  margin-bottom: 8px;
}

.headlight-title {
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #f5f5f7;
  margin-bottom: 10px;
}

.headlight-sub {
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 400;
  color: #86868b;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.headlight-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ─── WATER OVERFLOW ALARM CARD ─── */
.alarm-card {
  position: relative;
  overflow: hidden;
  min-height: 580px;
}

.alarm-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.alarm-text {
  position: absolute;
  top: clamp(30px, 8%, 60px);
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 24px;
  z-index: 2;
}

.alarm-eyebrow {
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6e6e73;
  margin-bottom: 8px;
}

.alarm-title {
  font-size: clamp(24px, 2vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #1d1d1f;
  margin-bottom: 10px;
}

.alarm-sub {
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 400;
  color: #45454b;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.alarm-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* ─── BLOG SECTION ─── */
.blog-section {
  padding: 60px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.blog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.blog-heading {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
}

.blog-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #0071e3;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-view-all:hover { color: #0077ed; }
.blog-view-all svg { transition: transform 0.2s; }
.blog-view-all:hover svg { transform: translateX(3px); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.blog-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-date {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-text);
  margin-bottom: 8px;
}

.blog-title {
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-excerpt {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-text);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 980px;
  transition: background 0.2s, border-color 0.2s;
  align-self: flex-start;
}
.blog-read-more:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .blog-section { padding: 40px 16px; }
  .blog-grid { grid-template-columns: 1fr; gap: 16px; }
  .blog-heading { font-size: 24px; }
}

/* ─── INSTAGRAM REELS ─── */
.reels-section {
  padding: 60px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.reels-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.reels-heading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--black);
}

.reels-follow {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 980px;
  background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.reels-follow:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.reels-scroll-wrapper {
  position: relative;
}

.reels-arrow {
  display: none;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.reel-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  transition: transform 0.3s, box-shadow 0.3s;
}

.reel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.reel-card a {
  display: block;
}

.reel-card video {
  width: 100%;
  height: auto;
  display: block;
}

.reel-mute-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.25s, background 0.2s;
}

.reel-card:hover .reel-mute-btn {
  opacity: 1;
}

.reel-mute-btn:hover {
  background: rgba(0, 0, 0, 0.75);
}

@media (max-width: 1024px) {
  .reels-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .reels-section { padding: 40px 16px; }
  .reels-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ─── FOOTER ─── */
footer {
  background: var(--white);
  border-top: 1px solid var(--section-border);
  padding: 20px 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-directory {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--section-border);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.footer-col a {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-text);
  text-decoration: none;
  line-height: 2;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--black); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  display: inline-flex;
  color: var(--gray-text);
  transition: color 0.2s;
}

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

.footer-legal {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-legal span,
.footer-legal a {
  font-size: 12px;
  color: var(--gray-text);
  text-decoration: none;
}

.footer-legal a:hover { color: var(--black); text-decoration: underline; }

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.legal-links a {
  position: relative;
}

.legal-links a:not(:last-child)::after {
  content: '|';
  position: absolute;
  right: -10px;
  color: var(--section-border);
}

/* ─── ABOUT PAGE ─── */
.about-hero {
  position: relative;
  background: #0a0a0a;
  color: #fff;
  padding: 140px 24px 90px;
  text-align: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(0, 113, 227, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(0, 113, 227, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.about-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-eyebrow {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #86868b;
  margin-bottom: 16px;
}

.about-hero-title {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 18px;
}

.about-hero-title span {
  background: linear-gradient(135deg, #0071e3, #5ac8fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-sub {
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 400;
  color: #a1a1a6;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 24px;
}

.about-hero-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.about-tag {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 980px;
  letter-spacing: 0.02em;
}

/* Shared */
.about-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 24px;
}

.about-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0071e3;
  margin-bottom: 10px;
}

.about-heading {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 16px;
}

.about-para {
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 400;
  color: #6e6e73;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-stat {
  text-align: center;
  padding: 36px 16px;
  background: #f5f5f7;
  border-radius: 16px;
  transition: transform 0.3s;
}
.about-stat:hover { transform: translateY(-3px); }

.stat-number {
  display: inline;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.03em;
}

.stat-plus {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #0071e3;
}

.stat-text {
  display: block;
}

.stat-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #86868b;
  margin-top: 6px;
}

/* Clients grid */
.clients-section {
  padding: 0 24px;
  max-width: 960px;
  margin: 0 auto;
}

.clients-header {
  text-align: left;
  margin-bottom: 32px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f7;
  border-radius: 10px;
  padding: 14px;
  aspect-ratio: 3 / 2;
  transition: transform 0.3s, box-shadow 0.3s;
}
.client-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Mission & Vision */
.about-mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-mv-card {
  padding: 36px;
  background: #f5f5f7;
  border-radius: 16px;
  transition: transform 0.3s;
}
.about-mv-card:hover { transform: translateY(-3px); }

.mv-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 113, 227, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.about-mv-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}

/* Locations */
.about-locations {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  background: #f5f5f7;
  border-radius: 12px;
}

.location-dot {
  width: 8px;
  height: 8px;
  background: #0071e3;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.location-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
}

.location-item p {
  font-size: 12px;
  color: #86868b;
}

/* Products grid */
.about-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.about-product-item {
  padding: 24px;
  background: #f5f5f7;
  border-radius: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.about-product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.about-product-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.about-product-icon svg { stroke: #0071e3; }

.about-product-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}

.about-product-item p {
  font-size: 13px;
  color: #86868b;
  line-height: 1.5;
}

/* Why iota */
.about-why-section {
  background: #f5f5f7;
  padding: 60px 0;
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.about-why-item {
  text-align: center;
  padding: 28px 16px;
  background: #fff;
  border-radius: 14px;
  transition: transform 0.3s;
}
.about-why-item:hover { transform: translateY(-3px); }

.why-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(0, 113, 227, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.about-why-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}

.about-why-item p {
  font-size: 13px;
  color: #86868b;
  line-height: 1.5;
}

/* CTA */
.about-cta {
  padding: 80px 24px;
  text-align: center;
}

.about-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.about-cta h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 10px;
}

.about-cta p {
  font-size: 16px;
  color: #86868b;
  margin-bottom: 24px;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 980px;
  background: #0071e3;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}
.about-cta-btn:hover { background: #0077ed; transform: scale(1.03); }

@media (max-width: 768px) {
  .about-hero { padding: 90px 20px 60px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .about-mv { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .about-locations { grid-template-columns: 1fr 1fr; }
  .about-products-grid { grid-template-columns: 1fr 1fr; }
  .about-why-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-section { padding: 40px 20px; }
  .about-cta { padding: 50px 20px; }
}

/* ─── PRODUCT DETAIL PAGE ─── */
.pd-breadcrumb {
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 24px 0;
  font-size: 13px;
  color: #a1a1a6;
}
.pd-breadcrumb a {
  color: #86868b;
  text-decoration: none;
  transition: color 0.2s;
}
.pd-breadcrumb a:hover { color: #0071e3; }
.pd-breadcrumb span { margin: 0 6px; }
.pd-breadcrumb .active { color: var(--black); font-weight: 500; }

.pd-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 24px 60px;
  align-items: flex-start;
}

/* Gallery */
.pd-gallery {
  position: sticky;
  top: 68px;
}

.pd-main-img {
  width: 100%;
  aspect-ratio: 1;
  background: #f5f5f7;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.pd-main-img { cursor: zoom-in; position: relative; }

.pd-zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.pd-main-img:hover .pd-zoom-hint { opacity: 1; }

.pd-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease;
}

.pd-thumbs {
  display: flex;
  gap: 0px;
}

.pd-thumb {
  width: 25%;
  height: 100px;
  border-radius: 10px;
  background: #f5f5f7;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  padding: 4px;
}

.pd-thumb.active {
  border-color: #0071e3;
}

.pd-thumb:hover {
  border-color: #a1a1a6;
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info */
.pd-cat {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0071e3;
  display: block;
  margin-bottom: 8px;
}

.pd-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 12px;
}

.pd-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.pd-stars {
  font-size: 15px;
  color: #F5A623;
  letter-spacing: 1px;
}

.pd-rv {
  font-size: 13px;
  color: #86868b;
}

.pd-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.pd-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
}

.pd-old {
  font-size: 18px;
  color: #a1a1a6;
  text-decoration: line-through;
}

.pd-off {
  font-size: 13px;
  font-weight: 600;
  color: #34C759;
  background: rgba(52, 199, 89, 0.1);
  padding: 3px 10px;
  border-radius: 6px;
}

.pd-desc {
  font-size: 15px;
  color: #6e6e73;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Qty */
.pd-qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.pd-qty-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}

.pd-qty {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  overflow: hidden;
}

.pd-qty-btn {
  width: 36px;
  height: 36px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--black);
  transition: background 0.2s;
}
.pd-qty-btn:hover { background: #f5f5f7; }

.pd-qty-val {
  width: 40px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  line-height: 36px;
}

/* Actions */
.pd-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.pd-add-cart {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 980px;
  background: var(--black);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.25s, transform 0.2s;
}
.pd-add-cart:hover { background: #333; transform: scale(1.02); }

.pd-buy-now {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 980px;
  background: #0071e3;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}
.pd-buy-now:hover { background: #0077ed; transform: scale(1.02); }

/* Trust */
.pd-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.pd-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #6e6e73;
}

/* Sections */
.pd-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.pd-section-header {
  margin-bottom: 24px;
}

/* Features */
.pd-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pd-feature {
  padding: 24px;
  background: #f5f5f7;
  border-radius: 14px;
  transition: transform 0.3s;
}
.pd-feature:hover { transform: translateY(-3px); }

.pd-feature-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.pd-feature h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.pd-feature p {
  font-size: 13px;
  color: #86868b;
  line-height: 1.4;
}

/* Specs */
.pd-specs {
  background: #f5f5f7;
  border-radius: 16px;
  overflow: hidden;
}

.pd-spec-row {
  display: flex;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.pd-spec-row:last-child { border-bottom: none; }

.pd-spec-key {
  width: 40%;
  font-size: 14px;
  font-weight: 500;
  color: #86868b;
}

.pd-spec-val {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}

/* Related */
.pd-related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pd-related-card {
  text-decoration: none;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pd-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.pd-related-img {
  background: #f5f5f7;
  padding: 20px;
}

.pd-related-img img {
  width: 100%;
  height: auto;
}

.pd-related-body {
  padding: 16px;
}

.pd-related-body h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .pd-hero { grid-template-columns: 1fr; gap: 24px; padding: 16px 16px 40px; }
  .pd-gallery { position: static; }
  .pd-breadcrumb { padding-top: 56px; }
  .pd-features { grid-template-columns: 1fr 1fr; }
  .pd-related { grid-template-columns: 1fr; }
  .pd-title { font-size: 26px; }
  .pd-price { font-size: 26px; }
  .pd-actions { flex-direction: column; }
  .pd-trust { gap: 12px; }
  .pd-section { padding: 0 16px 40px; }
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lb-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.lb-close:hover { background: rgba(255, 255, 255, 0.2); }

.lb-img-wrap {
  max-width: 80vw;
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-img-wrap img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  transition: opacity 0.2s ease;
  user-select: none;
}

.lightbox.active .lb-img-wrap img {
  animation: lbZoomIn 0.3s ease;
}

@keyframes lbZoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.lb-arrow:hover { background: rgba(255, 255, 255, 0.18); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

.lb-counter {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}

.lb-thumbs {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.lb-thumb {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.5;
  transition: opacity 0.2s, border-color 0.2s;
}

.lb-thumb.active {
  border-color: #fff;
  opacity: 1;
}

.lb-thumb:hover { opacity: 0.8; }

.lb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .lb-img-wrap { max-width: 92vw; }
  .lb-arrow { width: 38px; height: 38px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-thumb { width: 40px; height: 40px; }
}

/* ─── STORE PAGE ─── */
.store-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 60px 24px;
}

.store-header {
  margin-bottom: 32px;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.store-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.store-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.store-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  border-radius: 980px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  z-index: 3;
  color: #fff;
}
.store-badge.bestseller { background: #0071e3; }
.store-badge.new { background: linear-gradient(135deg, #833AB4, #E1306C); }
.store-badge.popular { background: #C2185B; }
.store-badge.festive { background: #E65100; }
.store-badge.essential { background: #0071e3; }

.store-img {
  width: 100%;
  background: #f5f5f7;
}

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

.store-body {
  padding: 20px;
}

.store-cat {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0071e3;
  margin-bottom: 6px;
  display: block;
}

.store-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.store-desc {
  font-size: 11px;
  color: #86868b;
  line-height: 1.5;
  margin-bottom: 10px;
}

.store-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.store-stars {
  font-size: 13px;
  color: #F5A623;
  letter-spacing: 1px;
}

.store-rv {
  font-size: 12px;
  color: #86868b;
}

.store-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.store-now {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
}

.store-old {
  font-size: 14px;
  color: #a1a1a6;
  text-decoration: line-through;
}

.store-off {
  font-size: 12px;
  font-weight: 600;
  color: #34C759;
  background: rgba(52, 199, 89, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

.store-btns {
  display: flex;
  gap: 10px;
}

.store-btn-detail {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 980px;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  background: transparent;
  color: var(--black);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.25s, border-color 0.2s;
}
.store-btn-detail:hover { background: rgba(0, 0, 0, 0.04); border-color: rgba(0, 0, 0, 0.3); }

.store-btn {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 980px;
  background: var(--black);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}
.store-btn:hover { background: #333; transform: scale(1.02); }

@media (max-width: 1024px) {
  .store-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .store-section { padding: 40px 16px; }
  .store-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .store-body { padding: 14px; }
  .store-body h3 { font-size: 15px; }
  .store-now { font-size: 18px; }
  .store-btn { padding: 10px; font-size: 13px; }
}

@media (max-width: 480px) {
  .store-grid { grid-template-columns: 1fr; }
}

/* ─── CART BADGE ─── */
.nav-cart {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 50%;
  background: #ff3b30;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cart-badge.show {
  display: flex;
}

.cart-badge.bounce {
  animation: badgeBounce 0.4s ease;
}

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

/* ─── CART DRAWER ─── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}
.cart-drawer.active {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-drawer-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
}

.cart-count {
  font-size: 12px;
  color: #86868b;
}

.cart-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.cart-drawer-close svg {
  stroke: var(--black);
  opacity: 0.6;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  -webkit-overflow-scrolling: touch;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px 0;
}

.cart-empty p {
  font-size: 14px;
  color: #a1a1a6;
}

/* Cart item */
.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  animation: cartItemIn 0.3s ease;
}

@keyframes cartItemIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: #f5f5f7;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-info h4,
.cart-item-info .cart-item-name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}
.cart-item-info .cart-item-name:hover { color: #0071e3; }

.cart-item-info .cart-item-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 2px;
}

.cart-qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  background: #fff;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cart-qty-btn:hover { background: #f5f5f7; }

.cart-qty {
  width: 32px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  align-self: flex-start;
  opacity: 0.4;
  transition: opacity 0.2s;
}
.cart-item-remove:hover { opacity: 1; }
.cart-item-remove svg { width: 16px; height: 16px; stroke: #ff3b30; }

/* Cart footer */
.cart-drawer-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.cart-subtotal span:first-child {
  font-size: 14px;
  color: #86868b;
}

.cart-subtotal span:last-child {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
}

.cart-checkout-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 980px;
  background: #0071e3;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}
.cart-checkout-btn:hover { background: #0077ed; transform: scale(1.02); }

/* ─── USER DASHBOARD ─── */
.user-section {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 24px 60px;
  min-height: 80vh;
  align-items: start;
}

.user-content {
  min-width: 0;
}

/* Sidebar */
.user-sidebar {
  align-self: flex-start;
}

.user-avatar {
  text-align: center;
  padding: 28px 16px;
  background: #f5f5f7;
  border-radius: 16px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.avatar-circle {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0071e3, #5ac8fa);
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.avatar-lg {
  width: 72px;
  height: 72px;
  font-size: 28px;
}

.user-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
}

.user-email {
  font-size: 12px;
  color: #86868b;
}

.user-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.user-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #6e6e73;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.user-nav-item:hover { background: #f5f5f7; color: var(--black); }
.user-nav-item.active { background: rgba(0, 113, 227, 0.08); color: #0071e3; font-weight: 500; }
.user-nav-item.active svg { stroke: #0071e3; }
.user-nav-logout { color: #ff3b30; margin-top: 8px; }
.user-nav-logout:hover { background: rgba(255, 59, 48, 0.06); color: #ff3b30; }

/* Content */
.user-tab { display: none; }
.user-tab.active { display: block; }

.user-tab-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.user-tab-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.user-tab-header .user-tab-title { margin-bottom: 0; }

.user-sub-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
  margin: 24px 0 14px;
}

.user-add-btn {
  padding: 8px 18px;
  border-radius: 980px;
  background: var(--black);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.user-add-btn:hover { background: #333; }

/* Dashboard stats */
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 8px;
}

.dash-stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 16px;
  background: #f5f5f7;
  border-radius: 14px;
}

.dash-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-stat-num {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
}

.dash-stat-label {
  font-size: 12px;
  color: #86868b;
}

/* Order cards */
.order-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.order-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  overflow: hidden;
}

.order-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #f9f9fb;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.order-id {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  margin-right: 10px;
}

.order-date {
  font-size: 12px;
  color: #86868b;
}

.order-status {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 980px;
}
.status-delivered { background: rgba(52,199,89,0.1); color: #34C759; }
.status-transit { background: rgba(255,149,0,0.1); color: #FF9500; }
.status-cancelled { background: rgba(255,59,48,0.1); color: #FF3B30; }

.order-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
}

.order-product {
  display: flex;
  align-items: center;
  gap: 12px;
}

.order-product img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: #f5f5f7;
  object-fit: cover;
}

.order-product h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 2px;
}

.order-product span {
  font-size: 12px;
  color: #86868b;
}

.order-total {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

.order-card-footer {
  display: flex;
  gap: 10px;
  padding: 12px 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.order-track-btn,
.order-detail-btn,
.order-reorder-btn {
  padding: 6px 16px;
  border-radius: 980px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.order-track-btn { background: #0071e3; color: #fff; }
.order-track-btn:hover { background: #0077ed; }
.order-detail-btn { background: #f5f5f7; color: var(--black); }
.order-detail-btn:hover { background: #e8e8ed; }
.order-reorder-btn { background: #f5f5f7; color: #0071e3; }
.order-reorder-btn:hover { background: rgba(0,113,227,0.08); }

/* Address cards */
.addr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.addr-card {
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  position: relative;
}

.addr-default { border-color: #0071e3; }

.addr-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  font-weight: 600;
  color: #0071e3;
  background: rgba(0, 113, 227, 0.08);
  padding: 3px 10px;
  border-radius: 980px;
}

.addr-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.addr-card p {
  font-size: 13px;
  color: #6e6e73;
  line-height: 1.6;
  margin-bottom: 12px;
}

.addr-actions {
  display: flex;
  gap: 14px;
}

.addr-actions a {
  font-size: 12px;
  color: #0071e3;
  text-decoration: none;
}
.addr-actions a:hover { text-decoration: underline; }

.addr-new-form {
  margin-top: 20px;
  padding: 24px;
  background: #f5f5f7;
  border-radius: 14px;
}

.addr-new-form h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.addr-form-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

/* Profile */
.profile-form {
  max-width: 560px;
}

.profile-avatar-edit {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.profile-change-pic {
  font-size: 13px;
  color: #0071e3;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.profile-change-pic:hover { text-decoration: underline; }

.profile-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin: 28px 0 8px;
}

@media (max-width: 768px) {
  .user-section { grid-template-columns: 1fr; padding: 56px 16px 40px; }
  .user-sidebar { position: static; }
  .user-sidebar { display: none; }
  .user-section { grid-template-columns: 1fr; }
  .user-section { padding-bottom: 80px; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .addr-grid { grid-template-columns: 1fr; }
}

/* ─── BLOG LISTING ─── */
.blog-featured {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px;
}

.blog-feat-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  background: #f5f5f7;
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-feat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }

.blog-feat-img { overflow: hidden; }
.blog-feat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-feat-card:hover .blog-feat-img img { transform: scale(1.04); }

.blog-feat-body { padding: 32px 32px 32px 0; display: flex; flex-direction: column; justify-content: center; }
.blog-feat-cat { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #0071e3; margin-bottom: 10px; }
.blog-feat-body h2 { font-size: 24px; font-weight: 700; color: var(--black); letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 10px; }
.blog-feat-body p { font-size: 14px; color: #6e6e73; line-height: 1.6; margin-bottom: 14px; }
.blog-feat-meta { display: flex; gap: 16px; font-size: 12px; color: #a1a1a6; }

.blog-all-section { max-width: 960px; margin: 0 auto; padding: 0 24px 60px; }
.blog-all-header { margin-bottom: 24px; }

.blog-all-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-all-card {
  text-decoration: none;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-all-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }

.blog-all-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-all-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-all-card:hover .blog-all-img img { transform: scale(1.04); }

.blog-all-body { padding: 16px; }
.blog-all-cat { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #0071e3; display: block; margin-bottom: 6px; }
.blog-all-body h3 { font-size: 16px; font-weight: 600; color: var(--black); letter-spacing: -0.01em; line-height: 1.3; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-all-body p { font-size: 13px; color: #86868b; line-height: 1.5; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-all-meta { display: flex; justify-content: space-between; font-size: 12px; color: #a1a1a6; }
.blog-all-read { color: #0071e3; font-weight: 500; }

/* ─── BLOG DETAIL ─── */
.bd-article { max-width: 720px; margin: 0 auto; padding: 48px 24px 0; }

.bd-header { margin-bottom: 28px; }
.bd-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #86868b; margin-bottom: 12px; }
.bd-cat { font-weight: 600; color: #0071e3; text-transform: uppercase; letter-spacing: 0.04em; }
.bd-dot { color: #d2d2d7; }
.bd-title { font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: var(--black); letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 18px; }
.bd-author { display: flex; align-items: center; gap: 10px; }
.bd-author-avatar { width: 36px; height: 36px; background: linear-gradient(135deg, #0071e3, #5ac8fa); color: #fff; font-size: 14px; font-weight: 600; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.bd-author-name { display: block; font-size: 13px; font-weight: 500; color: var(--black); }
.bd-author-date { font-size: 12px; color: #86868b; }

.bd-cover { margin-bottom: 32px; border-radius: 16px; overflow: hidden; }
.bd-cover img { width: 100%; height: auto; display: block; }

.bd-content { font-size: 16px; color: #333; line-height: 1.8; margin-bottom: 40px; }
.bd-content h2 { font-size: 22px; font-weight: 600; color: var(--black); margin: 28px 0 12px; }
.bd-content p { margin-bottom: 16px; }
.bd-content ul, .bd-content ol { padding-left: 22px; margin: 12px 0 16px; }
.bd-content li { margin-bottom: 6px; }
.bd-content strong { color: var(--black); }

.bd-product {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: #f5f5f7;
  border-radius: 16px;
  margin-bottom: 28px;
}
.bd-product-img { width: 100px; height: 100px; background: #fff; border-radius: 12px; overflow: hidden; flex-shrink: 0; padding: 8px; }
.bd-product-img img { width: 100%; height: 100%; object-fit: contain; }
.bd-product-info h3 { font-size: 17px; font-weight: 600; color: var(--black); margin-bottom: 8px; }

.bd-share { display: flex; align-items: center; gap: 14px; padding: 20px 0 40px; border-top: 1px solid rgba(0,0,0,0.06); flex-wrap: wrap; }
.bd-share span { font-size: 13px; color: #86868b; }
.bd-share-links { display: flex; gap: 8px; }
.bd-share-btn {
  padding: 6px 16px;
  border-radius: 980px;
  background: #f5f5f7;
  color: var(--black);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.bd-share-btn:hover { background: #e8e8ed; }

.bd-related { max-width: 720px; margin: 0 auto; padding: 0 24px 60px; }
.bd-related-header { margin-bottom: 20px; }
.bd-related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

@media (max-width: 768px) {
  .blog-feat-card { grid-template-columns: 1fr; }
  .blog-feat-body { padding: 20px; }
  .blog-all-grid { grid-template-columns: 1fr; }
  .bd-article { padding: 24px 16px 0; }
  .bd-title { font-size: 24px; }
  .bd-product { flex-direction: column; text-align: center; }
  .bd-related { padding: 0 16px 40px; }
  .bd-related-grid { grid-template-columns: 1fr; }
}

/* ─── LEGAL PAGES ─── */
.page-content {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px 60px;
  align-items: flex-start;
}

.page-toc {
  position: sticky;
  top: 68px;
  background: #f5f5f7;
  border-radius: 14px;
  padding: 20px;
}

.page-toc h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #86868b;
  margin-bottom: 12px;
}

.page-toc a {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #6e6e73;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: color 0.2s;
}
.page-toc a:last-child { border-bottom: none; }
.page-toc a:hover { color: #0071e3; }

.page-body {
  min-width: 0;
}

.page-block {
  margin-bottom: 36px;
  scroll-margin-top: 80px;
}

.page-block h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.page-text {
  font-size: 14px;
  color: #4a4a4f;
  line-height: 1.8;
}

.page-text ul,
.page-text ol {
  padding-left: 20px;
  margin: 10px 0;
}

.page-text li {
  margin-bottom: 6px;
}

.page-text strong {
  color: var(--black);
}

@media (max-width: 768px) {
  .page-content { grid-template-columns: 1fr; gap: 20px; padding: 24px 16px 40px; }
  .page-toc { position: static; }
  .page-block h2 { font-size: 17px; }
}

/* ─── USER BOTTOM APP BAR ─── */
.user-bottom-bar {
  display: none;
}

@media (max-width: 768px) {
  .user-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 6px 0;
    padding-bottom: env(safe-area-inset-bottom, 6px);
    justify-content: space-around;
    align-items: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

.bottom-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 8px;
  transition: color 0.2s;
}

.bottom-tab svg {
  stroke: #a1a1a6;
  transition: stroke 0.2s;
}

.bottom-tab span {
  font-size: 10px;
  font-weight: 500;
  color: #a1a1a6;
  transition: color 0.2s;
}

.bottom-tab.active svg { stroke: #0071e3; }
.bottom-tab.active span { color: #0071e3; }

/* ─── AUTH DRAWER ─── */
.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.auth-overlay.active { opacity: 1; visibility: visible; }

.auth-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.auth-drawer.active { transform: translateX(0); }

.auth-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.auth-drawer-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
}

.auth-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.auth-drawer-close svg { stroke: var(--black); opacity: 0.6; }

.auth-form {
  padding: 24px;
  flex: 1;
}

.auth-sub {
  font-size: 13px;
  color: #86868b;
  margin-bottom: 20px;
}

.auth-field {
  margin-bottom: 14px;
}

.auth-field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 4px;
}

.auth-field input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  color: var(--black);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-field input:focus {
  border-color: #0071e3;
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.auth-pass-wrap {
  position: relative;
}

.auth-pass-wrap input {
  padding-right: 40px;
}

.auth-eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
}

.auth-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.auth-remember {
  font-size: 12px;
  color: #6e6e73;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.auth-remember input {
  width: 14px;
  height: 14px;
  accent-color: #0071e3;
}

.auth-forgot {
  font-size: 12px;
  color: #0071e3;
  text-decoration: none;
}
.auth-forgot:hover { text-decoration: underline; }

.auth-submit {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 980px;
  background: #0071e3;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.25s, transform 0.2s;
}
.auth-submit:hover { background: #0077ed; transform: scale(1.02); }

.auth-divider {
  text-align: center;
  margin: 18px 0;
  position: relative;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.auth-divider span {
  position: relative;
  background: var(--white);
  padding: 0 12px;
  font-size: 12px;
  color: #a1a1a6;
}

.auth-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px;
  border-radius: 980px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: var(--black);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, border-color 0.2s;
}
.auth-social-btn:hover { background: #f5f5f7; border-color: rgba(0, 0, 0, 0.2); }

.auth-switch {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #86868b;
}

.auth-switch a {
  color: #0071e3;
  text-decoration: none;
  font-weight: 500;
}
.auth-switch a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .auth-drawer { width: 100%; }
}

/* ─── FLY TO CART ─── */
.fly-img {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  border-radius: 12px;
  background: #f5f5f7;
  overflow: hidden;
  opacity: 0;
  display: none;
}

.fly-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fly-img.flying {
  display: block;
  opacity: 1;
  transition: all 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Buy button feedback */
.store-btn.added {
  background: #34C759 !important;
  pointer-events: none;
}

@media (max-width: 768px) {
  .cart-drawer { width: 100%; }
}

/* ─── CHECKOUT PAGE ─── */
.checkout-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 24px 60px;
}

.checkout-header {
  margin-bottom: 32px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: flex-start;
}

.checkout-block {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
}

.checkout-block-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 20px;
}

.checkout-step {
  width: 28px;
  height: 28px;
  background: #0071e3;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

/* Payment options */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-option {
  cursor: pointer;
}

.payment-option input { display: none; }

.payment-option-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  transition: border-color 0.2s, background 0.2s;
}

.payment-option.selected .payment-option-inner {
  border-color: #0071e3;
  background: rgba(0, 113, 227, 0.04);
}

.payment-option-inner svg {
  flex-shrink: 0;
  stroke: #86868b;
}

.payment-option.selected .payment-option-inner svg {
  stroke: #0071e3;
}

.payment-option-inner h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 1px;
}

.payment-option-inner p {
  font-size: 12px;
  color: #86868b;
}

/* Order Summary */
.checkout-summary {
  background: #f5f5f7;
  border-radius: 16px;
  padding: 24px;
  position: sticky;
  top: 68px;
}

.checkout-summary h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 16px;
}

.checkout-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.checkout-item-img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  flex-shrink: 0;
}

.checkout-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.checkout-item-info {
  flex: 1;
  min-width: 0;
}

.checkout-item-info h4 {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkout-item-info span {
  font-size: 12px;
  color: #86868b;
}

.checkout-item-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  flex-shrink: 0;
}

.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  color: #6e6e73;
}

.checkout-free {
  color: #34C759;
  font-weight: 500;
}

.checkout-total-row {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 4px;
  padding-top: 14px;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
}

.checkout-place-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 980px;
  background: #0071e3;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: inherit;
  margin-top: 16px;
  transition: background 0.25s, transform 0.2s;
}
.checkout-place-btn:hover { background: #0077ed; transform: scale(1.02); }

.checkout-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: #a1a1a6;
  margin-top: 12px;
}

/* Order Success Modal */
.order-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.order-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.order-modal {
  background: #fff;
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  transform: scale(0.9);
  transition: transform 0.3s;
}
.order-modal-overlay.active .order-modal {
  transform: scale(1);
}

.order-success-icon {
  margin-bottom: 20px;
}

.order-modal h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.order-modal p {
  font-size: 14px;
  color: #6e6e73;
  line-height: 1.5;
  margin-bottom: 24px;
}

.order-modal-btn {
  display: inline-flex;
  padding: 12px 32px;
  border-radius: 980px;
  background: #0071e3;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.25s;
}
.order-modal-btn:hover { background: #0077ed; }

/* Form with icons */
.input-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-wrap svg {
  position: absolute;
  left: 12px;
  z-index: 1;
  flex-shrink: 0;
}

.input-icon-wrap input,
.input-icon-wrap textarea {
  padding-left: 36px !important;
}

.textarea-wrap {
  align-items: flex-start;
}

.textarea-wrap svg {
  top: 14px;
}

.form-row-3 {
  grid-template-columns: 1fr 1fr 1fr !important;
}

.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--black);
  background: #fff;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a1a1a6' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group select:focus {
  border-color: #0071e3;
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.form-optional {
  font-weight: 400;
  color: #a1a1a6;
  font-size: 12px;
}

/* Coupon section */
.coupon-section {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 12px;
}

.coupon-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 4px 4px 4px 12px;
}

.coupon-input-wrap input {
  border: none;
  outline: none;
  font-size: 13px;
  font-family: inherit;
  color: var(--black);
  flex: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: transparent;
}

.coupon-input-wrap input::placeholder {
  text-transform: none;
  letter-spacing: 0;
  color: #a1a1a6;
}

.coupon-input-wrap button {
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--black);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.coupon-input-wrap button:hover { background: #333; }

.coupon-applied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(0, 113, 227, 0.06);
  border: 1px solid rgba(0, 113, 227, 0.2);
  border-radius: 10px;
}

.coupon-applied span {
  font-size: 13px;
  font-weight: 500;
  color: #0071e3;
}

.coupon-applied button {
  background: none;
  border: none;
  color: #a1a1a6;
  font-size: 14px;
  cursor: pointer;
  padding: 2px 4px;
}
.coupon-applied button:hover { color: #ff3b30; }

.coupon-error {
  font-size: 12px;
  color: #ff3b30;
  margin-top: 6px;
  padding: 0 4px;
}

.coupon-list {
  margin-top: 12px;
}

.coupon-list-title {
  font-size: 11px;
  font-weight: 500;
  color: #a1a1a6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.coupon-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 1px dashed rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  margin-bottom: 6px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.coupon-tag:hover {
  border-color: #0071e3;
  background: rgba(0, 113, 227, 0.02);
}

.coupon-tag-left strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.04em;
  margin-bottom: 1px;
}

.coupon-tag-left span {
  font-size: 11px;
  color: #86868b;
}

.coupon-tag button {
  padding: 4px 12px;
  border-radius: 6px;
  background: transparent;
  border: 1px solid #0071e3;
  color: #0071e3;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
}
.coupon-tag button:hover {
  background: #0071e3;
  color: #fff;
}

/* Progress steps */
.checkout-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.progress-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e8e8ed;
  color: #a1a1a6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
}

.progress-step.active .progress-dot {
  background: #0071e3;
  color: #fff;
}

.progress-step span {
  font-size: 11px;
  color: #a1a1a6;
  font-weight: 500;
}

.progress-step.active span {
  color: #0071e3;
}

.progress-line {
  width: 60px;
  height: 2px;
  background: #e8e8ed;
  margin: 0 8px;
  margin-bottom: 20px;
  transition: background 0.3s;
}

.progress-line.active {
  background: #0071e3;
}

/* Payment icon box */
.payment-icon-box {
  width: 40px;
  height: 40px;
  background: #f5f5f7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.payment-option.selected .payment-icon-box {
  background: rgba(0, 113, 227, 0.08);
}

.payment-option-inner {
  position: relative;
}

.payment-check {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.2s;
}

.payment-option.selected .payment-check {
  opacity: 1;
}

/* Trust badges */
.checkout-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #6e6e73;
}

/* Savings row */
.checkout-savings-row {
  color: #34C759;
}

.checkout-savings {
  font-weight: 600;
  color: #34C759;
}

/* Button spinner */
.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.checkout-place-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Success modal animation */
.success-ring {
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  animation: drawRing 0.6s 0.2s ease forwards;
}

.success-check {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawCheck 0.4s 0.7s ease forwards;
}

@keyframes drawRing {
  to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.order-success-anim {
  margin-bottom: 20px;
}

.order-modal-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.order-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #6e6e73;
}

@media (max-width: 768px) {
  .checkout-section { padding: 60px 16px 40px; }
  .checkout-grid { grid-template-columns: 1fr; gap: 20px; }
  .checkout-block { padding: 20px; }
  .checkout-summary { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .checkout-progress { gap: 0; }
  .progress-line { width: 30px; }
  .checkout-trust { gap: 14px; }
}

/* ─── CONTACT PAGE ─── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.contact-card {
  padding: 28px 24px;
  background: #f5f5f7;
  border-radius: 14px;
  transition: transform 0.3s;
}
.contact-card:hover { transform: translateY(-3px); }

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 113, 227, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.contact-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.contact-card a,
.contact-card p {
  display: block;
  font-size: 13px;
  color: #6e6e73;
  text-decoration: none;
  line-height: 1.6;
}

.contact-card a:hover { color: #0071e3; }

/* Contact form */
.contact-form {
  margin-top: 28px;
  background: #f5f5f7;
  padding: 36px;
  border-radius: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 10px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 4px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  color: var(--black);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0071e3;
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a1a1a6;
}

.form-group input:disabled {
  background: #f0f0f3;
  color: #6e6e73;
  cursor: not-allowed;
}

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

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 980px;
  background: #0071e3;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.25s, transform 0.2s;
}
.form-submit:hover { background: #0077ed; transform: scale(1.03); }

/* Social grid */
.contact-social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.contact-social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 12px;
  background: #f5f5f7;
  border-radius: 14px;
  text-decoration: none;
  color: #6e6e73;
  transition: transform 0.3s, box-shadow 0.3s, color 0.2s;
}

.contact-social-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  color: #0071e3;
}

.contact-social-item span {
  font-size: 12px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 18px; }
  .contact-social-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── ANIMATIONS ─── */
@keyframes scaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroTextIn {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroImageIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes divaGlow {
  0% {
    filter:
      drop-shadow(0 0 40px rgba(255, 170, 60, 0.5))
      drop-shadow(0 0 80px rgba(255, 140, 30, 0.3))
      drop-shadow(0 0 120px rgba(255, 120, 20, 0.15));
  }
  100% {
    filter:
      drop-shadow(0 0 50px rgba(255, 180, 70, 0.6))
      drop-shadow(0 0 100px rgba(255, 150, 40, 0.35))
      drop-shadow(0 0 150px rgba(255, 130, 30, 0.2));
  }
}

@keyframes divaGlowBg {
  0% { opacity: 0.8; }
  100% { opacity: 1; }
}

@keyframes divaSurface {
  0% { opacity: 0.7; transform: scaleX(1); }
  100% { opacity: 1; transform: scaleX(1.1); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  /* Nav */
  .nav-link { display: none; }
  .nav-inner { gap: 10px; justify-content: flex-start; }
  .nav-hamburger { display: flex; order: 1; }
  .nav-logo { order: 2; }
  .nav-search { order: 3; flex: 1; min-width: 0; max-width: none; }
  .nav-user { order: 4; }
  .nav-cart { order: 5; }

  /* Diva Light — reduce height */
  .diva-hero { min-height: auto; padding-bottom: 40px; }
  .diva-img { width: clamp(180px, 55vw, 280px); margin-top: 30px; }

  /* Speaker hero */
  .speaker-hero-content {
    padding: 55px 14px 0;
    align-items: flex-start;
    text-align: left;
    width: 55%;
  }
  .speaker-hero-title-light { display: block; }
  .speaker-hero-title { font-size: clamp(18px, 5vw, 26px); margin-bottom: 2px; }
  .speaker-hero-sub { font-size: clamp(11px, 3vw, 14px); margin-bottom: 8px; }
  .speaker-hero-ctas { gap: 10px; }
  .speaker-btn-primary,
  .speaker-btn-outline { padding: 7px 16px; font-size: 12px; min-width: auto; }

  /* Promo grid */
  .promo-grid { grid-template-columns: 1fr; }

  /* Mantra box */
  .mantra-card { min-height: 380px; }
  .mantra-text {
    top: auto;
    bottom: clamp(75px, 4%, 30px);
    transform: none;
    max-width: 40%;
    padding-left: 14px;
  }
  .mantra-eyebrow { font-size: 9px; margin-bottom: 4px; }
  .mantra-title { font-size: 20px; margin-bottom: 2px; }
  .mantra-sub { font-size: 12px; margin-bottom: 8px; }
  .mantra-ctas { gap: 6px; flex-direction: column; width: 100%; }
  .mantra-ctas .speaker-btn-primary,
  .mantra-ctas .speaker-btn-outline { padding: 8px 0; font-size: 12px; min-width: auto; width: 100%; text-align: center; }

  /* Toran light — already top, no change */
  .toran-card { min-height: 380px; }

  /* Head light — move text to top */
  .headlight-card { min-height: 380px; }
  .headlight-text {
    top: clamp(24px, 6%, 40px);
    transform: none;
    max-width: 65%;
  }
  .headlight-ctas .diva-btn-primary,
  .headlight-ctas .diva-btn-outline { padding: 6px 14px; font-size: 11px; min-width: auto; }

  /* Water overflow alarm — already top center */
  .alarm-card { min-height: 380px; }
  .alarm-text { max-width: 100%; text-align: left; padding: 0 0 0 14px; }
  .alarm-title { margin-bottom: 3px; }
  .alarm-ctas { justify-content: flex-start; flex-direction: column; gap: 6px; align-items: flex-start; }
  .alarm-ctas .speaker-btn-primary,
  .alarm-ctas .speaker-btn-outline { width: auto; }

  /* Blog */
  .blog-section { padding: 40px 16px; }
  .blog-grid { grid-template-columns: 1fr; gap: 16px; }
  .blog-heading { font-size: 24px; }

  /* Reels — horizontal scroll */
  .reels-section { padding: 40px 16px; }
  .reels-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .reels-grid::-webkit-scrollbar { display: none; }
  .reel-card { flex: 0 0 200px; min-width: 200px; }
  .reels-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .reels-arrow svg { stroke: var(--black); opacity: 0.7; }
  .reels-arrow-left { left: 4px; }
  .reels-arrow-right { right: 4px; }

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


.auth-error {
    display: block;
    color: #ff453a;
    font-size: 12px;
    margin-top: 4px;
}
.auth-error--general {
    margin-bottom: 12px;
    font-size: 13px;
}
input.input-error {
    border-color: #ff453a !important;
    outline-color: #ff453a !important;
}