/* =========================================================
   KarlyCollection — Layout
   هدر/ناوبری، هیرو، دسته‌بندی‌ها، درباره، فوتر + کل ریسپانسیو
   (باید بعد از components.css لود شود تا override ها درست اعمال شوند)
   ========================================================= */

/* ---------- بنر شناور بالای سایت ---------- */
.top-banner {
  position: fixed;
  top: 0; inset-inline: 0;
  z-index: 200;
  height: var(--banner-h, 40px);
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-brand);
  color: #fff;
  overflow: hidden;
}
.top-banner[hidden] { display: none; }
body.has-banner { padding-top: var(--banner-h, 40px); }
.top-banner-link {
  flex: 1; display: flex; align-items: center; justify-content: center;
  height: 100%; padding: 0 40px; color: #fff; font-size: 13px; font-weight: 600;
  text-align: center; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.top-banner-close {
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: #fff; opacity: 0.75; cursor: pointer;
  display: flex; align-items: center; justify-content: center; padding: 4px;
}
.top-banner-close:hover { opacity: 1; }
@media (max-width: 600px) {
  .top-banner { height: var(--banner-h-mobile, 34px); }
  body.has-banner { padding-top: var(--banner-h-mobile, 34px); }
  .top-banner-link { font-size: 11.5px; padding: 0 32px; }
}

/* ---------- هدر ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  border-radius: 0;
  border-width: 0 0 1px;
  transition: top .2s var(--ease);
}
/* وقتی بنر شناور فعاله، هدر باید زیر بنر بچسبه نه زیرش گم بشه (بنر z-index بالاتر داره) */
body.has-banner .site-header { top: var(--banner-h, 40px); }
@media (max-width: 600px) {
  body.has-banner .site-header { top: var(--banner-h-mobile, 34px); }
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo {
  border-radius: 13px;
  object-fit: contain;
  background: #ffffff;
  padding: 5px;
  box-shadow: var(--shadow-sm);
}
.brand-name-group { display: flex; flex-direction: column; line-height: 1.3; }
.brand-name { font-size: 20px; font-weight: 700; color: var(--color-primary); }
.brand-name-fa { font-size: 12px; font-weight: 500; color: var(--color-text-muted); }

.main-nav ul { display: flex; gap: 28px; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-muted);
  position: relative;
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.nav-link i { font-size: 13px; }
.nav-link:hover, .nav-link.active { color: var(--color-primary); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0; left: 0;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform .25s var(--ease);
}
.nav-link:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 4px; }
.icon-sun, .icon-moon { position: absolute; transition: opacity .2s var(--ease), transform .3s var(--ease); }
.icon-moon { opacity: 0; transform: rotate(-60deg); }
[data-theme="dark"] .icon-sun { opacity: 0; transform: rotate(60deg); }
[data-theme="dark"] .icon-moon { opacity: 1; transform: rotate(0); }
.icon-sun { opacity: 1; transform: rotate(0); }

.cart-btn { position: relative; }
.cart-count {
  position: absolute;
  top: 2px; left: 2px;
  min-width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
}

.hamburger { display: none; flex-direction: column; gap: 5px; }
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- هیرو ---------- */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-slides {
  position: absolute; inset: 0;
  display: flex;
  direction: ltr;
  width: 100%; height: 100%;
  transition: transform .45s var(--ease);
  will-change: transform;
  touch-action: pan-y;
}
.hero-slides.dragging { transition: none; }
.hero-img {
  flex: 0 0 100%;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  user-select: none;
  -webkit-user-drag: none;
}
.hero-placeholder { position: absolute; inset: 0; }
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(var(--color-accent-rgb), .36), rgba(var(--color-primary-rgb), .3) 55%, rgba(43, 23, 48, .22));
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 620px; color: #fff; }
.hero-eyebrow { font-weight: 600; font-size: 15px; opacity: .9; margin-bottom: 12px; }
.hero-title { font-size: clamp(30px, 5vw, 52px); font-weight: 700; line-height: 1.3; margin-bottom: 18px; }
.hero-subtitle { font-size: 17px; opacity: .92; margin-bottom: 28px; max-width: 520px; }

.hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(var(--glass-blur-sm));
  -webkit-backdrop-filter: blur(var(--glass-blur-sm));
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.hero-nav:hover { background: rgba(255, 255, 255, .3); }
.hero-nav:active { transform: translateY(-50%) scale(.92); }
.hero-prev { left: 18px; }
.hero-next { right: 18px; }

.hero-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex; gap: 8px;
}
.hero-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  border: none;
  padding: 0;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.hero-dot.active { background: #fff; transform: scale(1.25); }

/* ---------- دسته‌بندی‌ها ---------- */
.categories { padding: 70px 0; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* ---------- کاتالوگ محصولات (بخش سکشن؛ کارت‌ها و فیلتر در components.css) ---------- */
.products { padding: 70px 0 90px; background: var(--color-bg-alt); }
.products-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 24px; }
@media (min-width: 900px) { .products-layout { grid-template-columns: 260px minmax(0, 1fr); align-items: start; } }

/* ---------- محصولات جدید: کشویی افقی، حس «تازه» ---------- */
.new-arrivals { padding: 70px 0; }
.new-arrivals-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary-light) transparent;
}
.new-arrivals-track .product-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
}
@media (min-width: 640px) { .new-arrivals-track .product-card { flex-basis: 230px; } }

/* ---------- پرطرفدارها: نشان اعتماد اجتماعی ---------- */
.bestsellers {
  padding: 70px 0;
  background: radial-gradient(circle at 85% 15%, rgba(255, 184, 77, .12), transparent 55%), var(--color-bg-alt);
}
.bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (min-width: 640px) { .bestsellers-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
@media (min-width: 1000px) { .bestsellers-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700;
  color: #b8791f;
  margin-top: 2px;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
}
.trust-badge i.fa-fire { color: var(--color-gold); }
.trust-badge .stars { display: inline-flex; gap: 1px; color: var(--color-gold); font-size: 11px; }
.trust-badge .stars i.is-empty { color: var(--color-border); }

.bestseller-top {
  border: 1.5px solid var(--color-gold);
  box-shadow: 0 6px 22px rgba(255, 184, 77, .28);
}
.bestseller-rank-badge {
  position: absolute; top: 10px; right: 10px; left: auto; z-index: 2;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd27a, #b8791f);
  color: #fff; font-weight: 700; font-size: 11px;
  opacity: .65;
  box-shadow: 0 3px 10px rgba(184, 121, 31, .4);
}

/* ---------- تخفیف‌های امروز/هفته: حس فوریت ---------- */
.deals-section {
  padding: 70px 0;
  background: radial-gradient(circle at 15% 20%, rgba(var(--color-accent-rgb), .14), transparent 55%),
    linear-gradient(160deg, rgba(var(--color-primary-rgb), .1), transparent 60%);
  position: relative;
}
.deals-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}
@media (min-width: 700px) {
  .deals-header { flex-direction: row; justify-content: space-between; align-items: flex-end; text-align: right; }
  .deals-heading { text-align: right; margin-bottom: 0; }
}
.deals-countdown {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}
.countdown-label { font-size: 12px; font-weight: 600; color: var(--color-text-muted); }
.countdown-timer { display: flex; align-items: center; gap: 6px; direction: ltr; }
.countdown-unit { display: flex; flex-direction: column; align-items: center; min-width: 40px; }
.countdown-unit strong { font-size: 20px; font-weight: 700; color: var(--color-primary); line-height: 1.2; }
.countdown-unit small { font-size: 10px; color: var(--color-text-muted); }
.countdown-sep { font-size: 18px; font-weight: 700; color: var(--color-text-muted); }

.deals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (min-width: 640px) { .deals-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
@media (min-width: 1000px) { .deals-grid { grid-template-columns: repeat(4, 1fr); } }

.stock-progress { margin-top: 8px; }
.stock-progress-bar {
  height: 7px;
  border-radius: 999px;
  background: var(--color-bg-alt);
  overflow: hidden;
}
.stock-progress-bar span {
  display: block; height: 100%;
  position: relative;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  border-radius: 999px;
  overflow: hidden;
}
.stock-progress-bar span::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .55) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: stock-progress-shine 2.2s linear infinite;
}
@keyframes stock-progress-shine {
  from { background-position: 150% 0; }
  to { background-position: -50% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .stock-progress-bar span::after { animation: none; }
}
.stock-progress-label { font-size: 11px; color: var(--color-text-muted); margin-top: 4px; display: block; }

/* ---------- پیشنهاد کارلی به سخت‌پسندها: ادیتوریال ویژه، کاملاً واکنش‌گرا به تم ----------
   قبلاً از --color-black هاردکد استفاده می‌شد که در هر دو تم تیره‌ست (رنگ فوتر)، پس این
   سکشن مستقل از تم انتخابی همیشه تاریک به‌نظر می‌رسید و کنتراست درستی با بقیه‌ی سایت نداشت. */
.picky-picks { padding: 80px 0; background: var(--color-bg-alt); }
.picky-heading .section-eyebrow { color: var(--color-primary); }
.picky-heading h2 { color: var(--color-text); }
.picky-heading p { color: var(--color-text-muted); }
.picky-picks-list {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary-light) transparent;
}
.picky-pick-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
}
@media (min-width: 640px) { .picky-pick-card { flex-basis: 280px; } }
.picky-pick-media { position: relative; aspect-ratio: 3/4; background: var(--color-bg-alt); }
.picky-pick-media img { width: 100%; height: 100%; object-fit: cover; }
.picky-pick-body { padding: 16px; }
.picky-pick-name { font-size: 15px; font-weight: 700; color: var(--color-text); margin-bottom: 6px; }
.picky-pick-quote { font-size: 12.5px; color: var(--color-text-muted); line-height: 1.8; margin-bottom: 10px; }
.picky-pick-price { font-size: 14px; font-weight: 700; color: var(--color-primary); }

/* ---------- درباره برند ---------- */
.about { padding: 80px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 800px) { .about-inner { grid-template-columns: 1fr 1fr; } }
.about-media { position: relative; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { font-size: 30px; font-weight: 700; margin-bottom: 14px; }
.about-text p { color: var(--color-text-muted); margin-bottom: 12px; }
.about-text p:first-of-type { color: var(--color-text); font-weight: 500; }

/* ---------- فوتر ---------- */
.site-footer { background: var(--color-black); color: #e9e3e7; padding: 60px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 700px) { .footer-inner { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); } }
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { color: #a89ba3; font-size: 14px; }
.footer-links h3, .footer-contact h3, .footer-address h3 {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; margin-bottom: 14px; color: #fff;
}
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact a {
  display: inline-flex; align-items: center; gap: 8px;
  color: #a89ba3; font-size: 14px; transition: color .2s var(--ease);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--color-primary-light); }
.footer-links i, .footer-contact i, .footer-address i { width: 16px; text-align: center; font-size: 13px; }
.social-links li { display: flex; }
.social-links a i { font-size: 16px; }
.footer-address-text { color: #a89ba3; font-size: 14px; line-height: 1.9; margin-bottom: 16px; }
.footer-hours { display: flex; flex-direction: column; gap: 8px; }
.footer-hours li { display: flex; justify-content: space-between; gap: 10px; font-size: 13px; color: #a89ba3; }
.footer-hours li span:first-child { display: inline-flex; align-items: center; gap: 6px; }
.footer-hours li i { font-size: 11px; }
.footer-hours li span:last-child { color: #e9e3e7; font-weight: 600; }
.footer-bottom { text-align: center; padding: 20px 0; font-size: 13px; color: #83757e; }

/* ---------- ریسپانسیو: هدر موبایل ---------- */
@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    right: 0; left: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
    z-index: 99;
  }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 8px 20px 16px; }
  .main-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--color-border); }
  .main-nav li:last-child a { border-bottom: none; }
  .hamburger { display: flex; }

  .header-inner { gap: 10px; }
  .brand { gap: 8px; }
  .brand-logo { width: 38px; height: 38px; padding: 4px; }
  .brand-name-group { line-height: 1.15; }
  .brand-name { font-size: 17px; }
  .brand-name-fa { font-size: 11px; }

  .hero-img { object-position: 20% top; }
  .hero-nav { top: auto; bottom: 14px; transform: none; width: 30px; height: 30px; }
  .hero-nav:active { transform: scale(.92); }
  .hero-nav svg { width: 14px; height: 14px; }
  .hero-prev { left: 12px; }
  .hero-next { right: 12px; }
  .hero-dots { bottom: 20px; }

  .product-badges { top: 8px; left: 8px; gap: 4px; max-width: calc(100% - 16px); }
  .badge-pill { font-size: 10px; padding: 3px 8px; }
  .trust-badge { font-size: 10.5px; gap: 4px; }
  .trust-badge .stars { font-size: 9.5px; }
  .bestseller-rank-badge { width: 18px; height: 18px; font-size: 9px; opacity: .55; top: 6px; right: 6px; left: auto; }
}

@media (min-width: 861px) {
  .main-nav { display: block; }
}

/* ---------- ریسپانسیو: گوشی‌های باریک (تا ۳۲۰ پیکسل) ---------- */
@media (max-width: 420px) {
  .container { padding: 0 14px; }

  .header-inner { gap: 6px; }
  .brand { gap: 6px; }
  .brand-logo { width: 30px; height: 30px; padding: 3px; }
  .brand-name-group { line-height: 1.1; }
  .brand-name { font-size: 14px; }
  .brand-name-fa { font-size: 9px; }
  .header-actions { gap: 0; }
  .icon-btn { width: 36px; height: 36px; }
  .icon-btn svg { width: 19px; height: 19px; }

  .hero { min-height: 460px; }
  .hero-content { max-width: 100%; }
  .hero-title { font-size: 26px; margin-bottom: 12px; }
  .hero-subtitle { font-size: 14px; margin-bottom: 20px; }
  .btn { padding: 12px 20px; font-size: 14px; }
  .hero-nav { width: 26px; height: 26px; bottom: 12px; }
  .hero-nav svg { width: 12px; height: 12px; }
  .hero-prev { left: 8px; }
  .hero-next { right: 8px; }
  .hero-dots { bottom: 17px; gap: 6px; }
  .hero-dot { width: 7px; height: 7px; }

  .product-badges { top: 6px; left: 6px; gap: 4px; max-width: calc(100% - 12px); }
  .badge-pill { font-size: 9px; padding: 3px 7px; }
  .trust-badge { font-size: 10px; gap: 3px; }
  .trust-badge .stars { font-size: 9px; }
  .bestseller-rank-badge { width: 16px; height: 16px; font-size: 8px; opacity: .5; top: 5px; right: 5px; left: auto; }

  .section-heading h2 { font-size: 24px; }

  .category-grid { grid-template-columns: 1fr; }
  .product-grid { gap: 12px; }
  .product-info { padding: 10px 10px 12px; gap: 6px; }
  .product-name { font-size: 13px; }
  .product-price { font-size: 13px; }
  .add-to-cart-btn { font-size: 12px; padding: 8px; }
  .badge-pill { font-size: 10px; padding: 3px 9px; }
  .stock-status { font-size: 11px; }
  .out-of-stock-overlay { font-size: 13px; }
  .media-color-swatch { width: 14px; height: 14px; border-radius: 4px; }
  .product-category-icon { width: 24px; height: 24px; font-size: 11px; }

  .product-detail { padding: 20px 0 60px; }
  .pd-name { font-size: 21px; margin: 6px 0 10px; }
  .pd-price { font-size: 18px; margin-bottom: 18px; }
  .color-swatch { width: 30px; height: 30px; }
  .size-option { min-width: 40px; padding: 8px 10px; font-size: 13px; }

  .about-text h2 { font-size: 24px; }

  .cart-header, .cart-body, .cart-footer { padding-inline: 14px; }

  .modal { padding: 22px 16px; }
  #checkout-title { font-size: 19px; }

  .footer-inner { gap: 26px; }
  .footer-address-text { font-size: 13px; }

  .search-panel-inner { padding: 10px 0; gap: 8px; }
  .search-panel-inner input { font-size: 14px; }
  .search-result-media { width: 42px; height: 52px; }
  .search-result-name { font-size: 13px; }

  .form-row { grid-template-columns: 1fr; }
  .account-dropdown { min-width: 220px; }
  .size-form, .profile-form, .track-form { padding: 18px; }
}

/* ---------- ریسپانسیو: زیر ۳۲۰ پیکسل (گوشی‌های خیلی باریک / تاشو) ---------- */
@media (max-width: 340px) {
  .container { padding: 0 10px; }

  .header-inner { gap: 4px; }
  .brand { gap: 5px; }
  .brand-logo { width: 30px; height: 30px; padding: 3px; }
  .brand-name { font-size: 13px; }
  .brand-name-fa { display: none; }
  .header-actions { gap: 0; }
  .icon-btn { width: 32px; height: 32px; }
  .icon-btn svg { width: 17px; height: 17px; }
  .cart-count { min-width: 15px; height: 15px; font-size: 9px; }

  .hero { min-height: 400px; }
  .hero-eyebrow { font-size: 12px; margin-bottom: 8px; }
  .hero-title { font-size: 20px; margin-bottom: 10px; line-height: 1.35; }
  .hero-subtitle { font-size: 12.5px; margin-bottom: 16px; }
  .btn { padding: 10px 16px; font-size: 13px; }

  .section-heading { margin-bottom: 28px; }
  .section-heading h2 { font-size: 20px; }
  .section-heading p { font-size: 13px; }

  .categories { padding: 44px 0; }
  .category-grid { gap: 10px; }
  .category-overlay { padding: 12px; }
  .category-overlay h3 { font-size: 15px; }

  .products { padding: 44px 0 56px; }
  .filter-bar { gap: 6px; margin-bottom: 22px; }
  .filter-btn { padding: 7px 14px; font-size: 12.5px; }
  .product-grid { gap: 8px; }
  .product-info { padding: 8px 8px 10px; gap: 4px; }
  .product-name { font-size: 12px; }
  .product-price { font-size: 12px; }
  .product-price .old-price { font-size: 11px; }
  .add-to-cart-btn { font-size: 11px; padding: 7px; gap: 4px; }
  .add-to-cart-btn svg { width: 13px; height: 13px; }
  .product-badges { top: 6px; left: 6px; gap: 4px; max-width: calc(100% - 12px); }
  .badge-pill { font-size: 9px; padding: 3px 7px; }
  .trust-badge { font-size: 9.5px; gap: 3px; }
  .trust-badge .stars { font-size: 8.5px; }
  .bestseller-rank-badge { width: 15px; height: 15px; font-size: 7.5px; opacity: .5; top: 5px; right: 5px; left: auto; }
  .stock-status { font-size: 10px; }
  .media-color-swatches { bottom: 6px; left: 6px; gap: 4px; }
  .media-color-swatch { width: 12px; height: 12px; border-radius: 3px; }
  .product-category-icon { bottom: 6px; right: 6px; width: 20px; height: 20px; font-size: 9px; }

  .about { padding: 48px 0; }
  .about-text h2 { font-size: 20px; }
  .about-text p { font-size: 13px; }

  .footer-inner { gap: 20px; padding-bottom: 28px; }
  .footer-links h3, .footer-contact h3, .footer-address h3 { font-size: 14px; }
  .footer-links a, .footer-contact a { font-size: 13px; }
  .footer-address-text { font-size: 12.5px; }
  .footer-hours li { font-size: 12px; }

  .cart-item-media { width: 56px; height: 70px; }
  .cart-item-name { font-size: 13px; }
  .cart-item-price { font-size: 12px; }

  .modal { padding: 18px 12px; }
  #checkout-title { font-size: 17px; }
  .modal-subtitle { font-size: 12.5px; margin: 6px 0 16px; }
  .form-group input, .form-group textarea { padding: 10px 12px; font-size: 13px; }
}
