@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: rgb(57 64 115);
  --section-border: #d2d2d7;
  --page-max: 1280px;
  --page-pad: 24px;
}

/* ─── 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) !important;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: var(--page-max);
  width: 100%;
  padding: 0 var(--page-pad);
}

.nav-logo img {
  height: 55px;
  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: 15px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  transition: opacity 0.3s;
}
.nav-link:hover { opacity: 1; }

.nav-search {
  display: flex;
  align-items: center;
  position: relative;
  background: #fff;
  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: 20px;
  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: 22px;
  height: 22px;
  fill: #fff;
  /*opacity: 0.8;*/
  transition: opacity 0.3s;
  cursor: pointer;
  color: #fff;
}
.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); }
.header_nav{
    display: flex;
    align-items: center;
    gap: 22px;
}
.header_main {
    display: flex;
    gap: 16px;
}

/* ─── 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: #fff;
  /*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%;
  max-width: none;
  margin: 106px 0 0;
  overflow: hidden;
  background: #f5f5f7;
  border-radius: 0;
}

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

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  position: relative;
  aspect-ratio: 2100 / 1024;
}

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

.carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.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: 24px; }
.carousel-next { right: 24px; }
@media (min-width: 1400px) {
  .carousel-prev { left: 40px; }
  .carousel-next { right: 40px; }
}

.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) {
  :root { --page-pad: 16px; }
  .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; }
  .hero-carousel {margin: 84px auto 0;}
  .nav-logo img {height: 44px;}
}


/* ─── SCROLL-TRIGGERED ANIMATIONS ─── */
.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 1fr 1fr;
  gap: 12px;
  padding: 12px var(--page-pad);
  max-width: var(--page-max);
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

/* ─── PROMO CARDS (shared) ─── */
.mantra-card,
.toran-card,
.headlight-card,
.alarm-card {
  position: relative;
  overflow: hidden; 
  border-radius: 20px;
  background: #f5f5f7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mantra-card:hover,
.toran-card:hover,
.headlight-card:hover,
.alarm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
}

.mantra-card::after,
.toran-card::after,
.headlight-card::after,
.alarm-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 2;
}

.mantra-bg,
.headlight-bg,
.alarm-bg,
.toran-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.45s ease;
  will-change: transform;
}

.mantra-bg,
.headlight-bg,
.alarm-bg {
  object-position: right center;
}

.toran-bg {
  object-position: center bottom;
}

.mantra-card:hover .mantra-bg,
.toran-card:hover .toran-bg,
.headlight-card:hover .headlight-bg,
.alarm-card:hover .alarm-bg {
  transform: scale(1.02);
  filter: brightness(1.03) saturate(1.08);
}

.card-link {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}

/* ─── BLOG SECTION ─── */
.blog-section {
  padding: 60px var(--page-pad);
  max-width: var(--page-max);
  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 var(--page-pad);
  max-width: var(--page-max);
  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: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.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-col-contact a.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
  padding: 3px 0;
}

.footer-contact-icon {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gray-text);
  transition: color 0.2s;
}

.footer-col-contact a.footer-contact-item:hover .footer-contact-icon {
  color: #0071e3;
}

.footer-col-contact a.footer-contact-item span {
  flex: 1;
  min-width: 0;
}

.footer-contact-address span {
  font-size: 11.5px;
  line-height: 1.5;
}

.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 — main image + right thumbnails */
.pd-gallery {
  position: sticky;
  top: 68px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
}

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

.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;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  width: 78px;
  max-height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
}

.pd-thumb {
  width: 78px;
  height: 78px;
  border-radius: 10px;
  background: #f5f5f7;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
  padding: 4px;
  flex-shrink: 0;
}
.pd-thumb:hover { transform: scale(1.03); }

.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; flex-direction: column; }
  .pd-thumbs {
    flex-direction: row;
    width: 100%;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .pd-thumb { width: 64px; height: 64px; }
  .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;
  text-decoration: none;
  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 heroTextIn {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* ─── 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; }

  /* Promo grid */
  .promo-grid { grid-template-columns: 1fr; }
  .mantra-card,
  .toran-card,
  .headlight-card,
  .alarm-card { min-height: 380px; }

  /* 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;
}

/* Product Information full-width section (holds DB additional_information) */
.pda-info-section {
  max-width: var(--page-max);
  margin: 8px auto 40px;
  padding: 0 var(--page-pad);
}

/* ── Bulk Order button (replaces Wishlist) ── */
.pda-bulk-order {
  background: #fff3cd;
  border-color: #f0c24b;
  color: #0f1111;
  font-weight: 600;
}
.pda-bulk-order:hover {
  background: #ffe69c;
  border-color: #d4a017;
  color: #0f1111;
}
.pda-bulk-order svg { color: #d4a017; }
.pda-bulk-order:hover svg { color: #b88a0a; }

/* ── Related products (5-col desktop → 1-col mobile) ── */
.pda-related-section {
  max-width: var(--page-max);
  margin: 12px auto 60px;
  padding: 0 var(--page-pad);
}
.pda-related-head {
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid #e7e7e7;
}
.pda-related-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #007185;
  margin-bottom: 6px;
}
.pda-related-title {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  color: #0f1111;
  letter-spacing: -0.02em;
  margin: 0;
}
.pda-related-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.pda-related-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.pda-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: #d5d9d9;
}
.pda-related-img {
  aspect-ratio: 1 / 1;
  background: #f7f8f8;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pda-related-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}
.pda-related-card:hover .pda-related-img img { transform: scale(1.04); }
.pda-related-body { padding: 12px 14px 14px; }
.pda-related-cat {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #007185;
  display: block;
  margin-bottom: 4px;
}
.pda-related-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #0f1111;
  margin: 0 0 8px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pda-related-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.pda-related-now {
  font-size: 15px;
  font-weight: 700;
  color: #0f1111;
}
.pda-related-old {
  font-size: 12px;
  color: #a1a1a6;
  text-decoration: line-through;
}

@media (max-width: 1024px) {
  .pda-related-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .pda-related-grid { grid-template-columns: 1fr; }
  .pda-related-section { margin-bottom: 40px; }
}

/* ======================================================================
   Product Information panels (.pdxi-*) — reusable, Amazon-style
   Used inside products.additional_information HTML.
====================================================================== */
.pdxi { max-width: 100%; font-size: 14px; color: #0f1111; line-height: 1.5; }
.pdxi * { box-sizing: border-box; }

.pdxi-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f1111;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}

.pdxi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.pdxi-col { display: flex; flex-direction: column; gap: 12px; }

.pdxi-panel {
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.pdxi-panel-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f7f8f8;
  border: none;
  border-bottom: 1px solid #e7e7e7;
  font-size: 14px;
  font-weight: 700;
  color: #0f1111;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.15s;
}
.pdxi-panel-head:hover { background: #eff0f0; }
.pdxi-chevron {
  display: inline-block;
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}
.pdxi-panel.is-collapsed .pdxi-panel-head { border-bottom-color: transparent; }
.pdxi-panel.is-collapsed .pdxi-chevron { transform: rotate(-90deg); }
.pdxi-panel.is-collapsed .pdxi-body { display: none; }

.pdxi-body { padding: 6px 16px 14px; }

.pdxi-table { width: 100%; border-collapse: collapse; }
.pdxi-table tr { border-bottom: 1px solid #f0f2f2; }
.pdxi-table tr:last-child { border-bottom: none; }
.pdxi-table th,
.pdxi-table td {
  padding: 7px 0;
  vertical-align: top;
  text-align: left;
  font-size: 12.5px;
  line-height: 1.4;
}
.pdxi-table th {
  width: 44%;
  font-weight: 700;
  color: #0f1111;
  padding-right: 10px;
}
.pdxi-table td { color: #0f1111; font-weight: 400; }
.pdxi-table td a { color: #007185; text-decoration: none; }
.pdxi-table td a:hover { color: #c7511f; text-decoration: underline; }

.pdxi-banner {
  margin: 0 0 18px;
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
}
.pdxi-banner img { display: block; width: 100%; height: auto; }

.pdxi-story { margin: 0 0 22px; }
.pdxi-story h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0f1111;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.pdxi-story p { font-size: 14px; color: #0f1111; line-height: 1.6; margin: 0; }
.pdxi-story strong { font-weight: 700; }

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

/* ======================================================================
   Product Description — generic reusable styles
   (used inside products.content for any product)
====================================================================== */
.pd-about { font-size: 14px; color: #0f1111; line-height: 1.5; }
.pd-about * { box-sizing: border-box; }

.pd-about-head {
  font-size: 20px;
  font-weight: 700;
  color: #0f1111;
  letter-spacing: -0.01em;
  margin: 20px 0 10px;
  padding-top: 16px;
  border-top: 1px solid #e7e7e7;
}
.pd-about-list {
  list-style: disc;
  padding-left: 22px;
  margin: 0;
}
.pd-about-list li {
  margin-bottom: 10px;
  color: #0f1111;
  line-height: 1.55;
}
.pd-about-list li::marker { color: #0f1111; }
.pd-about-list strong { font-weight: 700; }

/* Specs key-value table (same reusable style) */
.pd-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 18px;
}
.pd-specs-table tr { border-bottom: 1px solid #f0f2f2; }
.pd-specs-table tr:last-child { border-bottom: none; }
.pd-specs-table th,
.pd-specs-table td {
  padding: 8px 0;
  vertical-align: top;
  text-align: left;
  font-size: 14px;
  line-height: 1.45;
}
.pd-specs-table th {
  width: 38%;
  font-weight: 700;
  color: #0f1111;
  padding-right: 14px;
}
.pd-specs-table td { color: #0f1111; font-weight: 400; }

/* ======================================================================
   Water Overflow Alarm — inline specs + about bullets
   (rendered from products.content for this product)
====================================================================== */
.pdx-wfa { font-size: 14px; color: #0f1111; line-height: 1.5; }
.pdx-wfa * { box-sizing: border-box; }

.pdx-wfa-specs {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 18px;
}
.pdx-wfa-specs tr { border-bottom: 1px solid #f0f2f2; }
.pdx-wfa-specs tr:last-child { border-bottom: none; }
.pdx-wfa-specs th,
.pdx-wfa-specs td {
  padding: 8px 0;
  vertical-align: top;
  text-align: left;
  font-size: 14px;
  line-height: 1.45;
}
.pdx-wfa-specs th {
  width: 38%;
  font-weight: 700;
  color: #0f1111;
  padding-right: 14px;
}
.pdx-wfa-specs td {
  color: #0f1111;
  font-weight: 400;
}

.pdx-wfa-about-head {
  font-size: 20px;
  font-weight: 700;
  color: #0f1111;
  letter-spacing: -0.01em;
  margin: 20px 0 10px;
  padding-top: 16px;
  border-top: 1px solid #e7e7e7;
}
.pdx-wfa-about-list {
  list-style: disc;
  padding-left: 22px;
  margin: 0;
}
.pdx-wfa-about-list li {
  margin-bottom: 8px;
  color: #0f1111;
  line-height: 1.55;
}
.pdx-wfa-about-list li::marker { color: #0f1111; }

/* =====================================================================
   AMAZON-STYLE PRODUCT DETAIL PAGE
   Prefix: .pda-*   (pd-amazon)
===================================================================== */

/* Breadcrumb */
.pda-breadcrumb {
  background: #fff;
  border-bottom: 1px solid #e3e6e6;
  padding: 60px 0 10px;
}
.pda-breadcrumb-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 10px var(--page-pad);
  font-size: 12px;
  color: #565959;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.pda-breadcrumb-inner a {
  color: #007185;
  text-decoration: none;
}
.pda-breadcrumb-inner a:hover {
  color: #c7511f;
  text-decoration: underline;
}
.pda-bc-sep { color: #a1a1a6; font-size: 13px; }
.pda-bc-current { color: #1d1d1f; font-weight: 500; }

/* Hero — 3-column grid */
.pda-hero {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 20px var(--page-pad) 40px;
  display: grid;
  grid-template-columns: minmax(320px, 560px) 1fr 320px;
  gap: 28px;
  align-items: flex-start;
}

/* ── GALLERY ── */
.pda-gallery {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  position: sticky;
  top: 68px;
}

.pda-thumbs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  min-height: 0;
  scrollbar-width: none;         /* Firefox */
  -ms-overflow-style: none;      /* IE/Edge legacy */
}
.pda-thumbs::-webkit-scrollbar { width: 0; height: 0; display: none; }

.pda-thumb {
  width: 100%;
  height: 72px;
  border: 1px solid #d5d9d9;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
  background: #fff;
  padding: 2px;
}
.pda-thumb:hover {
  border-color: #e77600;
  box-shadow: 0 0 0 2px rgba(231, 118, 0, 0.3);
}
.pda-thumb.active {
  border-color: #e77600;
  box-shadow: 0 0 0 2px rgba(231, 118, 0, 0.35);
}
.pda-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Video thumb — play overlay */
.pda-video-thumb { position: relative; }
.pda-video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 6px;
  pointer-events: none;
}
.pda-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.pda-play-overlay svg {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}

/* Main area video player */
.pda-main-img video#pdMainVideo {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  background: #000;
  border-radius: 8px;
  cursor: default;
}

.pda-main-img {
  position: relative;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: zoom-in;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pda-main-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.25s ease;
}
.pda-main-img:hover img {
  transform: scale(1.04);
}

.pda-zoom-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 980px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
  backdrop-filter: blur(4px);
}
.pda-main-img:hover .pda-zoom-btn { opacity: 1; }

/* ── INFO COLUMN ── */
.pda-info {
  min-width: 0;
  font-size: 14px;
  color: #0f1111;
  line-height: 1.45;
}

.pda-brand-row {
  font-size: 13px;
  color: #565959;
  margin-bottom: 6px;
}
.pda-brand a {
  color: #007185;
  text-decoration: none;
  font-weight: 500;
}
.pda-brand a:hover { color: #c7511f; text-decoration: underline; }

.pda-title {
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #0f1111;
  margin: 0 0 4px;
}

.pda-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #565959;
  line-height: 1.45;
  margin: 0 0 6px;
}

.pda-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.pda-stars {
  font-size: 16px;
  color: #de7921;
  letter-spacing: 1px;
}
.pda-rv-link {
  font-size: 13px;
  color: #007185;
  text-decoration: none;
}
.pda-rv-link:hover { color: #c7511f; text-decoration: underline; }

.pda-divider {
  height: 1px;
  background: #e7e7e7;
  margin: 14px 0;
}

/* Price block */
.pda-price-block {
  position: relative;
}
.pda-discount-badge {
  display: inline-block;
  background: #cc0c39;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 8px;
  vertical-align: middle;
}
.pda-price-main {
  display: inline-flex;
  align-items: baseline;
  vertical-align: middle;
  color: #0f1111;
}
.pda-price-curr {
  font-size: 14px;
  font-weight: 500;
  align-self: flex-start;
  margin-right: 2px;
  top: 0.4em;
  position: relative;
}
.pda-price-val {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
.pda-mrp-row {
  margin-top: 6px;
  font-size: 13px;
  color: #565959;
}
.pda-mrp-label { margin-right: 4px; }
.pda-mrp { color: #565959; }
.pda-save {
  margin-left: 8px;
  color: #0f1111;
  font-weight: 500;
}
.pda-tax-note {
  font-size: 12px;
  color: #565959;
  margin-top: 4px;
}

/* About this item */
.pda-about {
  font-size: 14px;
}
.pda-about-heading {
  font-size: 16px;
  font-weight: 700;
  color: #0f1111;
  margin: 0 0 10px;
}
.pda-about-body {
  color: #0f1111;
  line-height: 1.6;
}
.pda-about-body ul {
  padding-left: 20px;
  margin: 0;
}
.pda-about-body li {
  margin-bottom: 6px;
  list-style: disc;
}
.pda-about-body p {
  margin: 0 0 8px;
}

/* Feature grid (trust strip in info) */
.pda-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 16px 0;
  background: #fff;
}
.pda-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 10px 4px;
  font-size: 11px;
  color: #565959;
  line-height: 1.4;
}
.pda-feature-item strong { color: #0f1111; font-size: 12px; font-weight: 600; }

/* ── BUY BOX ── */
.pda-buybox {
  background: #fff;
  border: 1px solid #d5d9d9;
  border-radius: 10px;
  padding: 18px;
  position: sticky;
  top: 68px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: #0f1111;
}

.pda-buybox-price {
  display: flex;
  align-items: baseline;
  color: #0f1111;
}
.pda-buybox-price sup {
  font-size: 28px;
  font-weight: 300;
  /*top: 0.5em;*/
  position: relative;
  margin-right: 2px;
}
.pda-buybox-price span {
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pda-buybox-delivery {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.4;
  color: #0f1111;
}
.pda-buybox-delivery svg { flex-shrink: 0; margin-top: 2px; }
.pda-buybox-delivery strong { font-weight: 700; }

.pda-buybox-stock .pda-stock-in {
  color: #007600;
  font-size: 16px;
  font-weight: 500;
}

.pda-buybox-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pda-buybox-qty .pda-qty-label {
  font-size: 13px;
  color: #0f1111;
  font-weight: 500;
}
.pda-buybox-qty .pd-qty {
  display: flex;
  border: 1px solid #d5d9d9;
  border-radius: 8px;
  overflow: hidden;
  background: #f0f2f2;
}
.pda-buybox-qty .pd-qty-btn {
  width: 30px;
  height: 30px;
  background: #f0f2f2;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #0f1111;
  transition: background 0.15s;
}
.pda-buybox-qty .pd-qty-btn:hover { background: #e3e6e6; }
.pda-buybox-qty .pd-qty-val {
  width: 40px;
  text-align: center;
  font-size: 13px;
  line-height: 30px;
  background: #fff;
  border-left: 1px solid #d5d9d9;
  border-right: 1px solid #d5d9d9;
}

.pda-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
  font-family: inherit;
}

/* Add to Cart — transparent (outlined) */
.pda-btn-cart {
  background: transparent;
  color: #1d1d1f;
  border: 1.5px solid #1d1d1f;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.pda-btn-cart:hover {
  background: #1d1d1f;
  color: #fff;
  border-color: #1d1d1f;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.pda-btn-cart:active { transform: translateY(0); box-shadow: none; }

/* Buy Now — dark solid */
.pda-btn-buy {
  background: #1d1d1f;
  color: #fff;
  border: 1.5px solid #1d1d1f;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.pda-btn-buy:hover {
  background: #000;
  color: #fff;
  border-color: #000;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.pda-btn-buy:active { transform: translateY(0); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); }

.pda-buybox-secure {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #565959;
}
.pda-buybox-secure a {
  color: #007185;
  text-decoration: none;
}
.pda-buybox-secure a:hover { color: #c7511f; text-decoration: underline; }

.pda-buybox-meta {
  padding-top: 12px;
  border-top: 1px solid #e7e7e7;
  font-size: 12px;
  line-height: 1.6;
}
.pda-buybox-meta > div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.pda-buybox-meta span { color: #565959; }
.pda-buybox-meta strong {
  color: #0f1111;
  font-weight: 500;
  text-align: right;
}

.pda-wishlist {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 12px;
  border: 1px solid #d5d9d9;
  border-radius: 8px;
  background: #fff;
  color: #0f1111;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.pda-wishlist:hover { text-decoration: none; }
.pda-wishlist:hover {
  background: #f7fafa;
  border-color: #c7511f;
  color: #c7511f;
}
.pda-wishlist svg { color: #565959; transition: color 0.15s; }
.pda-wishlist:hover svg { color: #c7511f; }

/* Responsive */
@media (max-width: 1100px) {
  .pda-hero {
    grid-template-columns: minmax(280px, 400px) 1fr;
    gap: 20px;
  }
  .pda-buybox {
    grid-column: 1 / -1;
    position: static;
    max-width: 400px;
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  .pda-breadcrumb { padding-top: 54px; }
  .pda-breadcrumb-inner { font-size: 11px; gap: 4px; }
  .pda-hero {
    grid-template-columns: 1fr;
    padding: 14px var(--page-pad) 24px;
    gap: 16px;
  }
  .pda-gallery {
    grid-template-columns: 64px 1fr;
    position: static;
  }
  .pda-thumb { height: 64px; }
  .pda-buybox {
    position: static;
    max-width: 100%;
    padding: 14px;
  }
  .pda-title { font-size: 16px; line-height: 1.3; }
  .pda-subtitle { font-size: 13px; }
  .pda-price-val { font-size: 26px; }
  .pda-discount-badge { font-size: 15px; padding: 2px 7px; }
  .pda-feature-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 12px 0; }
  .pda-about-heading { font-size: 15px; }
  .pda-zoom-btn { opacity: 1; }
  .pda-buybox-price span { font-size: 24px; }
  .pda-btn { padding: 12px 14px; font-size: 15px; } /* larger tap target */
  .pda-info-section { margin-bottom: 28px; }
}

@media (max-width: 480px) {
  .pda-breadcrumb-inner { font-size: 10.5px; }
      .pda-breadcrumb {
        padding-top: 70px;
    }
  .pda-gallery {
    grid-template-columns: 58px 1fr;
    gap: 8px;
  }
  .pda-thumb { height: 58px; padding: 1px; }
  .pda-thumb img { object-fit: contain; }
  .pda-info { font-size: 13.5px; order: 3;}
  .pda-title { font-size: 15px; }
  .pda-price-val { font-size: 22px; }
  .pda-price-curr { font-size: 12px; }
  .pda-buybox { padding: 12px; gap: 10px; }
  .pda-buybox-meta { font-size: 11px; }
  .pda-feature-item { padding: 8px 2px; font-size: 10.5px; }
  .pda-feature-item strong { font-size: 11px; }
  .pda-about-body li { font-size: 13px; }
  .pd-about *{
      list-style: inside;
  }
}

@media (max-width: 360px) {
  .pda-feature-grid { grid-template-columns: 1fr 1fr; }
  .pda-gallery { grid-template-columns: 50px 1fr; }
  .pda-thumb { height: 50px; }
}

/* ─── TRUST & REVIEWS SECTION ─── */
.trust-section {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 70px var(--page-pad);
  position: relative;
}

/* Header */
.trust-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.trust-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0071e3;
  margin-bottom: 12px;
  padding: 4px 14px;
  background: rgba(0, 113, 227, 0.08);
  border-radius: 980px;
}

.trust-heading {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 10px;
}

.trust-sub {
  font-size: clamp(14px, 1.3vw, 16px);
  color: var(--gray-text);
  line-height: 1.5;
}

/* Platform cards row */
.trust-platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.trust-platform-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s, border-color 0.25s;
}
.trust-platform-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.trust-platform-glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 120%;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.35s;
}
.trust-platform-card:hover .trust-platform-glow { opacity: 0.6; }

.trust-google .trust-platform-glow { background: radial-gradient(circle, #4285F4 0%, transparent 70%); }
.trust-google:hover { border-color: rgba(66, 133, 244, 0.3); }

.trust-amazon .trust-platform-glow { background: radial-gradient(circle, #FF9900 0%, transparent 70%); }
.trust-amazon:hover { border-color: rgba(255, 153, 0, 0.35); }

.trust-indiamart .trust-platform-glow { background: radial-gradient(circle, #F7941D 0%, transparent 70%); }
.trust-indiamart:hover { border-color: rgba(46, 49, 146, 0.3); }

.trust-platform-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.trust-platform-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-platform-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
}

.trust-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #34C759;
  background: rgba(52, 199, 89, 0.1);
  padding: 4px 10px;
  border-radius: 980px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.trust-verified svg { color: #34C759; }

.trust-rating-block {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.trust-rating-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.04em;
  line-height: 1;
}

.trust-rating-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-stars {
  color: #F5A623;
  letter-spacing: 2px;
  font-size: 16px;
  line-height: 1;
}

.trust-stars .star-half { color: rgba(245, 166, 35, 0.4); }

.trust-stars-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #34C759;
  letter-spacing: normal;
}

.trust-rating-count {
  font-size: 12px;
  color: var(--gray-text);
  font-weight: 500;
}

.trust-platform-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 2;
  transition: color 0.2s;
}
.trust-platform-card:hover .trust-platform-cta { color: #0071e3; }
.trust-platform-cta svg { transition: transform 0.25s; }
.trust-platform-card:hover .trust-platform-cta svg { transform: translate(2px, -2px); }

/* Reviews grid */
.trust-reviews-heading {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--black);
  text-align: center;
  margin-bottom: 24px;
}

.trust-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.trust-review-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.trust-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.trust-review-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 980px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  align-self: flex-start;
}
.trust-review-source-google {
  background: rgba(66, 133, 244, 0.08);
  color: #1a73e8;
}
.trust-review-source-amazon {
  background: rgba(255, 153, 0, 0.1);
  color: #b45d00;
}
.trust-review-source-indiamart {
  background: rgba(247, 148, 29, 0.1);
  color: #c96a00;
}

.trust-review-stars {
  color: #F5A623;
  letter-spacing: 2px;
  font-size: 15px;
}
.trust-review-stars .star-half { color: rgba(245, 166, 35, 0.4); }

.trust-review-text {
  font-size: 14px;
  color: #4a4a4f;
  line-height: 1.6;
  flex: 1;
}

.trust-review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.trust-review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-review-author strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
}

.trust-review-author span {
  font-size: 11px;
  color: var(--gray-text);
}

/* Bottom CTA */
.trust-actions {
  display: flex;
  justify-content: center;
}

.trust-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 980px;
  background: #fff;
  color: var(--black);
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}
.trust-action-btn:hover {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
  transform: scale(1.03);
}
.invalid-feedback {
    font-size: 10px;
    color: red;
}

/* ─── LARGE SCREEN — full-width sections ─── */
@media (min-width: 1440px) {
  :root {
    --page-max: 90%;
  }
  .nav-inner{
      justify-content: space-between;
  }
  .hero-carousel {
    max-width: var(--page-max);
  }
  .promo-grid {
    max-width:var(--page-max);
  }
  .blog-section {
    max-width: var(--page-max);
  }
  .reels-section {
    max-width: var(--page-max);
  }
  .trust-section {
    max-width: var(--page-max);
  }
  .footer-inner {
    max-width: var(--page-max);
  }
  .about-section{
     max-width: var(--page-max);  
  }
  .clients-section{
      max-width: var(--page-max);
  }
  .store-section{
      max-width: var(--page-max);
  }
  .checkout-section{
      max-width: var(--page-max);
  }
  .blog-all-section{
     max-width: var(--page-max); 
     padding-top: 50px;
  }
  .user-section{
     max-width: var(--page-max);  
  }

}

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

@media (max-width: 768px) {
  .trust-section { padding: 44px 16px; }
  .trust-reviews-grid { grid-template-columns: 1fr; gap: 14px; }
  .trust-rating-num { font-size: 36px; }
  .trust-platform-card { padding: 20px; }
  .trust-action-btn { padding: 12px 22px; font-size: 13px; }
}

.cart-badge {
  display: none;
}

.cart-badge.show {
  display: flex;
}
.error-text{
    color: red;
    font-size: 12px;
}

/* ============================================================
   TOP ANNOUNCEMENT BAR
   ============================================================ */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: #0d1e38;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.top-bar.is-hidden {
  transform: translateY(-100%);
}
.top-bar__inner {
  max-width: var(--page-max);
  width: 100%;
  padding: 0 var(--page-pad);
  text-align: center;
}
.top-bar__text {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 100%;
}

/* Push the existing fixed navbar below the top-bar; animate top transitions */
nav {
  top: 36px !important;
  transition: top 0.42s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s;
}
/* When top-bar hides, navbar slides up to fill its space (sibling selector) */
.top-bar.is-hidden ~ nav { top: 0 !important; }

@media (max-width: 700px) {
  .top-bar { height: 32px; }
  .top-bar__text { font-size: 11px; letter-spacing: 0.04em; }
  nav { top: 32px !important; }
}

/* ============================================================
   NAV SEARCH ICON BUTTON (right side of navbar)
   ============================================================ */
.nav-search-btn {
  cursor: pointer;
  color: #fff;
}
.nav-search-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  transition: opacity 0.3s, transform 0.3s;
}
.nav-search-btn:hover svg {
  opacity: 1;
  transform: scale(1.08);
}
.nav-search-btn:focus-visible {
  outline: 2px solid rgba(255,255,255,0.6);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Hide any legacy inline search form inside nav links section
   (the active form now lives inside .nav-search-overlay) */
.header_nav > .form-search { display: none !important; }

/* ============================================================
   NAV SEARCH OVERLAY (drops down from top)
   ============================================================ */
.nav-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: rgba(7, 17, 31, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 28px var(--page-pad);
  transform: translateY(-100%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.32s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  opacity: 0;
  pointer-events: none;
}
.nav-search-overlay.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav-search-overlay__inner {
  max-width: 720px;
  width: 100%;
}
.nav-search-overlay .form-search {
  width: 100%;
  margin: 0;
}
.nav-search-overlay .nav-search {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 980px;
  padding: 0 18px;
  height: 56px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}
.nav-search-overlay .nav-search-icon {
  width: 18px;
  height: 18px;
  fill: #86868b;
  flex-shrink: 0;
}
.nav-search-overlay .nav-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  font-family: inherit;
  color: #1d1d1f;
  padding: 0 14px;
  height: 100%;
}
.nav-search-overlay .nav-search-input::placeholder {
  color: #86868b;
  opacity: 0.85;
}
.nav-search-close {
  background: transparent;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: #86868b;
  cursor: pointer;
  padding: 0 4px;
  margin-left: 6px;
  transition: color 0.2s, transform 0.2s;
}
.nav-search-close:hover {
  color: #1d1d1f;
  transform: scale(1.1);
}

@media (max-width: 700px) {
  .nav-search-overlay { padding: 22px 16px; min-height: 96px; }
  .nav-search-overlay .nav-search { height: 48px; padding: 0 14px; }
  .nav-search-overlay .nav-search-input { font-size: 14px; }
}

/* ============================================================
   FOOTER v2 — Dark navy, 4-column "big footer"
   (new .ft-* namespace; legacy .footer-* rules above are inert)
   ============================================================ */
footer.ft {
  background: #0d1e38;
  color: #ffffff;
  padding: 80px 0 0;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
  border-top: none;
}
.ft-container {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  position: relative;
}
.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1.1fr 1.1fr 1.3fr;
  gap: 48px;
  padding-bottom: 64px;
}

/* ── Column 1: Brand ── */
.ft-col-brand .ft-logo {
  display: inline-block;
  margin-bottom: 20px;
}
.ft-col-brand .ft-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.ft-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0 0 22px;
  max-width: 360px;
}
.ft-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ft-meta-line {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin: 0;
}
.ft-meta-line strong {
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  margin-right: 4px;
}
.ft-meta-line a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.2s;
}
.ft-meta-line a:hover { color: #5b8dee; }
.ft-meta-address span { display: inline; }

/* ── Column headings (Quick Links, Policies, Newsletter) ── */
.ft-heading {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}

/* ── Lists (Quick Links, Policies) ── */
.ft-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ft-list li { margin: 0; }
.ft-list a {
  display: inline-block;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.25s, transform 0.25s;
  line-height: 1.5;
}
.ft-list a:hover {
  color: #5b8dee;
  transform: translateX(3px);
}

/* ── Newsletter subscribe ── */
.ft-subscribe {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 0 6px 0 16px;
  height: 50px;
  margin-bottom: 12px;
  transition: border-color 0.25s, background 0.25s;
}
.ft-subscribe:focus-within {
  border-color: rgba(91,141,238,0.6);
  background: rgba(255,255,255,0.10);
}
.ft-subscribe-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 14px;
  font-family: inherit;
  height: 100%;
  padding: 0;
}
.ft-subscribe-input::placeholder {
  color: rgba(255,255,255,0.55);
}
.ft-subscribe-btn {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: #1a54c8;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s;
}
.ft-subscribe-btn:hover {
  background: #2d6fe8;
  transform: translateX(2px);
}
.ft-subscribe-btn:disabled,
.ft-subscribe-btn.is-loading {
  cursor: wait;
  opacity: 0.92;
  transform: none;
}
.ft-subscribe-btn.is-loading svg { display: none; }
.ft-subscribe-btn.is-loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: ftBtnSpin 0.7s linear infinite;
}
@keyframes ftBtnSpin {
  to { transform: rotate(360deg); }
}
.ft-subscribe-input:disabled {
  cursor: wait;
  opacity: 0.7;
}
.ft-subscribe-note {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 22px;
  line-height: 1.5;
}

/* ── Social icons ── */
.ft-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ft-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}
.ft-social a:hover {
  background: rgba(91,141,238,0.18);
  border-color: rgba(91,141,238,0.7);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ── Back-to-top button ── */
.ft-totop {
  position: absolute;
  right: var(--page-pad);
  bottom: 88px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  color: #0d1e38;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
  transition: background 0.25s, transform 0.25s, color 0.25s;
  z-index: 2;
}
.ft-totop:hover {
  background: #1a54c8;
  color: #ffffff;
  transform: translateY(-4px);
}

/* ── Bottom copyright bar ── */
.ft-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 24px 0 28px;
  text-align: center;
}
.ft-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin: 0;
  letter-spacing: 0.02em;
}

/* ── Responsive ── */
@media (max-width: 1000px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
    padding-bottom: 56px;
  }
  .ft-col-brand { grid-column: 1 / -1; }
  .ft-totop { bottom: 80px; }
}

@media (max-width: 600px) {
  footer.ft { padding-top: 56px; margin-top: 56px; }
  .ft-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 48px;
  }
  .ft-col-brand { grid-column: auto; }
  .ft-heading { font-size: 16px; margin-bottom: 16px; }
  .ft-tagline { max-width: none; }
  .ft-subscribe { height: 46px; }
  .ft-subscribe-btn { width: 34px; height: 34px; }
  .ft-totop {
    position: static;
    margin: 0 auto 28px;
    display: flex;
  }
  .ft-bottom { padding: 20px 0 24px; }
  .ft-copyright { font-size: 12px; }
}

/* ============================================================
   FLOATING WHATSAPP STICKY BUTTON (global)
   ============================================================ */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(37,211,102,0.40), 0 4px 10px rgba(0,0,0,0.18);
  z-index: 1500;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease;
  animation: waPulse 2.4s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 14px 34px rgba(37,211,102,0.55), 0 6px 14px rgba(0,0,0,0.22);
}
.wa-float:active { transform: scale(0.96); }
.wa-float svg { display: block; }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(37,211,102,0.40), 0 0 0 0 rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 10px 28px rgba(37,211,102,0.40), 0 0 0 14px rgba(37,211,102,0); }
}

@media (max-width: 600px) {
  .wa-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
  .wa-float svg { width: 26px; height: 26px; }
}

/* ============================================================
   PRODUCT DETAIL — Polish (boAt-inspired, iota data only)
   Appended at end — overrides existing .pda-* via cascade order
   ============================================================ */

/* Inline prev/next arrows on main image */
.pda-main-img { position: relative; }
.pda-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.92);
  color: #1d1d1f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  opacity: 0;
  transition: opacity 0.25s, background 0.2s, transform 0.2s;
  z-index: 4;
}
.pda-main-img:hover .pda-nav-arrow { opacity: 1; }
.pda-nav-arrow:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.08);
}
.pda-nav-prev { left: 14px; }
.pda-nav-next { right: 14px; }

@media (max-width: 768px) {
  .pda-nav-arrow {
    opacity: 1;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.85);
  }
  .pda-nav-prev { left: 8px; }
  .pda-nav-next { right: 8px; }
}

/* Info head — title + share button row */
.pda-info-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}
.pda-info-head-text {
  flex: 1;
  min-width: 0;
}
.pda-share-btn {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #565959;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.pda-share-btn:hover {
  background: #f5f7fa;
  color: #1a54c8;
  border-color: #c8d4ea;
  transform: translateY(-1px);
}

/* Button polish — taller, more rounded, distinct colors */
.pda-btn {
  height: 48px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.pda-btn-cart {
  background: #1d1d1f;
  color: #ffffff;
}
.pda-btn-cart:hover {
  background: #2d2d31;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}
.pda-btn-buy {
  background: #1a54c8;
  color: #ffffff;
}
.pda-btn-buy:hover {
  background: #2d6fe8;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(26,84,200,0.32);
}

/* Sticky buybox on big screens */
@media (min-width: 1024px) {
  .pda-buybox {
    position: sticky;
    top: 130px;
    align-self: flex-start;
  }
}

@media (max-width: 600px) {
  .pda-btn { height: 46px; font-size: 14px; }
  .pda-info-head { gap: 10px; }
  .pda-share-btn { width: 34px; height: 34px; }
}

/* ============================================================
   PRODUCT DETAIL — 2-Column Layout (boAt-style)
   Gallery (left, sticky) | Info-Top + Buybox + Info-Bottom (right, stacked)
   Buybox sits between price and About — action buttons visible above the fold.
   ============================================================ */
@media (min-width: 901px) {
  .pda-hero {
    grid-template-columns: 1.1fr 1fr !important;
    grid-template-areas:
      "gallery info-top"
      "gallery buybox"
      "gallery info-bottom" !important;
    gap: 40px !important;
    align-items: start !important;
  }
  .pda-hero > .pda-gallery     { grid-area: gallery; }
  .pda-hero > .pda-info-top    { grid-area: info-top; }
  .pda-hero > .pda-buybox      { grid-area: buybox; }
  .pda-hero > .pda-info-bottom { grid-area: info-bottom; }

  /* Gallery: stays sticky on left; account for top-bar(36) + nav(70) + padding */
  .pda-gallery {
    position: sticky;
    top: 124px;
  }

  /* Buybox: in 2-col layout, lives inside right column flow — NOT sticky.
     Overrides our earlier sticky rule for desktop. */
  .pda-buybox {
    position: static !important;
    top: auto !important;
    align-self: stretch;
  }

  /* Info-top: tighter bottom spacing since buybox is right below */
  .pda-info-top {
    margin-bottom: 0;
  }
  /* Info-bottom: tighter top spacing since buybox is right above */
  .pda-info-bottom {
    margin-top: 0;
  }
}

/* Larger gap on bigger screens for breathing room */
@media (min-width: 1280px) {
  .pda-hero {
    gap: 56px !important;
  }
}

/* Tablet / small desktop — keep gallery sticky but use 1fr 1fr ratio */
@media (min-width: 901px) and (max-width: 1100px) {
  .pda-hero {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }
}

/* Mobile / small tablet: stack vertically — gallery, info-top, buybox, info-bottom */
@media (max-width: 900px) {
  .pda-hero {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "gallery"
      "info-top"
      "buybox"
      "info-bottom" !important;
  }
  .pda-hero > .pda-gallery     { grid-area: gallery; }
  .pda-hero > .pda-info-top    { grid-area: info-top; }
  .pda-hero > .pda-buybox      { grid-area: buybox; }
  .pda-hero > .pda-info-bottom { grid-area: info-bottom; }

  .pda-gallery {
    position: static;
    top: auto;
  }
}

/* ============================================================
   PRODUCT DETAIL — Compact Buybox + Tighter Spacing
   Removes duplicate price, tightens gaps, lighter card visual
   ============================================================ */

/* 1. Hide trailing divider in info-top (it sits right above buybox card) */
.pda-info-top > .pda-divider:last-child {
  display: none;
}

/* 2. Hide duplicate price inside buybox — already shown in info-top above */
.pda-buybox > .pda-buybox-price {
  display: none !important;
}

/* 3. Tighter row-gap between info-top, buybox, info-bottom on desktop */
@media (min-width: 901px) {
  .pda-hero {
    row-gap: 14px !important;
  }
}

/* 4. Compact buybox card — smaller padding, gap, subtle border */
.pda-buybox {
  padding: 16px 18px !important;
  gap: 9px !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

/* 5. Tighter internals — delivery, stock, qty */
.pda-buybox-delivery {
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 1.45;
}
.pda-buybox-stock {
  margin: 0;
  padding: 0;
}
.pda-buybox-stock .pda-stock-in {
  font-size: 14.5px;
  font-weight: 500;
}
.pda-buybox-qty {
  margin: 2px 0 4px;
}

/* 6. Buttons — keep polish, no extra margin */
.pda-buybox > .pda-btn-cart,
.pda-buybox > .pda-btn-buy {
  margin: 0;
}

/* 7. Secure transaction — smaller, tighter */
.pda-buybox-secure {
  font-size: 12px;
  margin-top: 2px;
  padding: 0;
}

/* 8. Compact meta — single column label/value rows with space-between */
.pda-buybox-meta {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  margin-top: 6px !important;
  padding-top: 12px !important;
  border-top: 1px solid #f0f1f3 !important;
  font-size: 12px !important;
  line-height: 1.4;
}
.pda-buybox-meta > div {
  display: flex !important;
  justify-content: space-between !important;
  align-items: baseline;
  gap: 12px;
}
.pda-buybox-meta > div > span {
  color: #6b7280;
  font-size: 12px;
  flex-shrink: 0;
}
.pda-buybox-meta > div > strong {
  color: #1d1d1f;
  font-weight: 600;
  font-size: 12.5px;
  text-align: right;
}

/* 9. Bulk Order link — compact pill */
.pda-bulk-order {
  margin-top: 8px;
  font-size: 13px;
  padding: 10px 14px;
}

/* ============================================================
   POPULAR PRODUCTS — homepage card grid (boAt / Portronics style)
   ============================================================ */
.pop-products {
  background: #ffffff;
  padding: 64px 0 32px;
}
.pop-products__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}
.pop-products__heading {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1d1d1f;
  margin: 0 0 32px;
}
.pop-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pop-products__card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.pop-products__card:hover {
  transform: translateY(-4px);
}
.pop-products__img {
  background: #f5f5f7;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 24px;
  transition: box-shadow 0.32s ease;
}
.pop-products__card:hover .pop-products__img {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.pop-products__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}
.pop-products__card:hover .pop-products__img img {
  transform: scale(1.04);
}
.pop-products__name {
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1f;
  text-align: center;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.35;
}

/* Responsive */
@media (max-width: 1100px) {
  .pop-products__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .pop-products { padding: 48px 0 24px; }
  .pop-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .pop-products__heading {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .pop-products__img {
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 12px;
  }
  .pop-products__name { font-size: 14px; }
}
@media (max-width: 380px) {
  .pop-products__grid { gap: 12px; }
  .pop-products__img { padding: 14px; }
}
