
/* ==========================================================================
   MASTER THOUGHTFUL BUTTON & INTERACTION SYSTEM (v37000)
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-main: #f1f2f4;
  --bg-surface: #ffffff;
  --bg-subtle: #e8eaee;
  --border-subtle: #e0e2e7;
  --border-dark: #18181b;
  
  --text-main: #09090b;
  --text-muted: #52525b;
  --text-light: #71717a;
  
  --accent-emerald: #047857;
  --accent-rose: #e11d48;
  
  --font-editorial: 'Syne', -apple-system, sans-serif;
  --font-heading: 'Outfit', 'Syne', -apple-system, sans-serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  
  --container-max: 1360px;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: calc(74px + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 860px) {
  body { padding-bottom: 40px; }
}

/* ==========================================================================
   THOUGHTFUL BUTTON INTERACTION CORE
   ========================================================================== */
.btn-pro-action {
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease !important;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.btn-pro-action:active {
  transform: scale(0.95) !important;
}


/* ==========================================================================
   ULTRA-CLEAN LUXURY WHITE HEADER
   ========================================================================== */

/* TOP BAR REMOVED */
.ssense-top-bar {
  display: none !important;
}

/* MASTER HEADER */
.ssense-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
}

.sh-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

@media (max-width: 640px) {
  .sh-inner { padding: 0 14px; height: 58px; }
}

.sh-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-editorial);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-main);
  line-height: 1;
}

.sh-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

@media (max-width: 960px) {
  .sh-nav { display: none; }
}

.sh-nav-btn {
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #52525b;
  padding: 10px 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.sh-nav-btn:hover {
  color: #09090b;
}

.sh-nav-btn.active {
  color: #09090b;
  font-weight: 800;
}

.sh-nav-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #09090b;
  border-radius: 2px;
}

.sh-nav-match-btn {
  color: #09090b;
  font-weight: 800;
}

.snm-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #047857;
  display: inline-block;
  animation: pulseGreen 2s infinite;
}
@keyframes pulseGreen {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.sh-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.sh-action-btn {
  background: #fafafa;
  border: 1px solid #e4e4e7;
  color: #09090b;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 0 16px;
  height: 38px;
  border-radius: 999px;
  position: relative;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.sh-action-btn:hover {
  background: #ffffff;
  border-color: #09090b;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

@media (max-width: 640px) {
  .sh-btn-text { display: none; }
  .sh-action-btn { padding: 0; width: 38px; height: 38px; justify-content: center; border-radius: 50%; }
}

.sh-counter-pill {
  background: #09090b;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}

@media (max-width: 768px) {
  .sh-inner {
    padding: 0 14px;
    height: 56px;
    gap: 8px;
  }
  .brand-name {
    font-size: 18px;
    letter-spacing: 0.02em;
  }
  .brand-sub {
    font-size: 11px;
  }
  .sh-actions {
    gap: 6px;
  }
  .sh-btn-text {
    display: none !important;
  }
  /* Hide duplicate header actions on mobile since they are in the bottom dock */
  .sh-action-btn:not(:first-child) {
    display: none !important;
  }
  .sh-action-btn {
    padding: 0 10px !important;
    height: 36px !important;
    min-width: auto !important;
    border-radius: 20px !important;
    background: #f4f4f5 !important;
    border: 1px solid #e4e4e7 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
  }
  .sh-size-chip-tag {
    display: inline-block !important;
    font-family: var(--font-heading);
    font-size: 11px !important;
    font-weight: 800 !important;
    color: #09090b !important;
  }
  .sh-action-btn svg {
    width: 15px;
    height: 15px;
  }
}

/* MAIN CONTAINER */
.ssense-main {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 16px 20px 40px 20px;
}

@media (max-width: 640px) {
  .ssense-main { padding: 12px 14px 30px 14px; }
}

.ssense-screen { display: none; }
.ssense-screen.active { display: block; }

/* 0. STORIES SECTION */
.stories-bar-section { margin-bottom: 24px; width: 100%; max-width: 100%; overflow: hidden; }
.stories-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 2px;
  max-width: 100%;
}
.stories-scroll::-webkit-scrollbar { display: none; }

.story-bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  flex-shrink: 0;
}

.sb-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  padding: 2.5px;
  background: #09090b;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.story-bubble:hover .sb-ring { transform: scale(1.08); }
.sb-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
}
.sb-ring-subtle { background: #71717a; }
.sb-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
}

/* 1. HERO BANNER */
.hero-storefront-banner {
  background: radial-gradient(circle at 85% 30%, #1f1f23 0%, #09090b 70%), #09090b;
  color: #ffffff;
  border-radius: 20px;
  padding: 36px 36px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

@media (max-width: 900px) {
  .hero-storefront-banner {
    padding: 24px 20px;
    margin-bottom: 20px;
    border-radius: 16px;
  }
}

.hsb-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 32px;
}

@media (max-width: 860px) {
  .hsb-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.hsb-content {
  display: flex;
  flex-direction: column;
}

.hsb-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #27272a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  width: fit-content;
}
.hsb-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hsb-title {
  font-family: var(--font-editorial);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

@media (max-width: 640px) {
  .hsb-title { font-size: 22px; }
}

.hsb-subtitle {
  font-size: 13.5px;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 16px;
}

.hsb-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.htp-pill {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  background: #27272a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 11px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.hsb-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hsb-btn-primary {
  background: #ffffff;
  color: #09090b;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 13px 24px;
  border-radius: 999px;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(255,255,255,0.18);
  cursor: pointer;
  transition: all 0.2s ease;
}
.hsb-btn-primary:hover {
  transform: translateY(-2px);
  background: #f4f4f5;
  box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

.hsb-btn-secondary {
  background: #27272a;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.hsb-btn-secondary:hover {
  background: #3f3f46;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* HERO VISUAL SHOWCASE (RIGHT COLUMN) - FLATTENED CONTAINER */
.hsb-visual-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  perspective: 1000px;
}

.hvs-card-preview {
  position: relative;
  width: 100%;
  max-width: 320px;
  background: transparent;
  border: none;
  border-radius: 16px;
  padding: 0;
  box-shadow: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hsb-visual-showcase:hover .hvs-card-preview {
  transform: translateY(-4px);
  box-shadow: none;
  border-color: transparent;
}

.hvs-main-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 14px;
  background: #27272a;
  display: block;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}

.hvs-badge-hit { position: absolute; top: 12px; left: 12px; background: #09090b; color: #ffffff; font-family: var(--font-heading); font-size: 11px; font-weight: 800; padding: 5px 10px; border-radius: 6px; z-index: 5; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }

.hvs-meta-tag {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 10px;
  gap: 6px;
}

.hvs-brand {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.hvs-name {
  font-size: 12px;
  color: #e4e4e7;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hvs-price {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
}

.hvs-floating-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  background: #27272a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 9px;
  border-radius: 4px;
  margin-top: 8px;
}

.hfc-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
}

/* 2. UNIVERSE POSTERS */
.universe-showcase-section { margin-bottom: 30px; }
.usc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .usc-grid { grid-template-columns: 1fr; gap: 12px; }
}

.usc-card {
  position: relative;
  height: 190px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #09090b;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.usc-card:hover { transform: translateY(-3px); }

.usc-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.usc-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.usc-card:hover .usc-bg-img img { transform: scale(1.05); }

.usc-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(9,9,11,0.45) 0%, rgba(9,9,11,0.92) 100%);
  color: #ffffff;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.usc-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.95;
}
.usc-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  margin: 2px 0 4px 0;
}
.usc-link {
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  opacity: 0.9;
}

/* 3. BRAND PILLS */
.brand-pills-section {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-surface);
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.bps-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--text-main);
  white-space: nowrap;
  flex-shrink: 0;
}

.bps-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  min-width: 0;
  flex: 1;
}
.bps-scroll::-webkit-scrollbar { display: none; }

.bps-pill {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.bps-pill:hover { border-color: #09090b; }
.bps-pill.active {
  background: var(--text-main);
  color: #ffffff;
  border-color: var(--text-main);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.bps-count {
  font-size: 11px;
  opacity: 0.75;
  font-weight: 700;
}

/* 4. VAULT */
.vault-section { margin-bottom: 36px; }
.vault-box { background: transparent; border: none; padding: 0; box-shadow: none; }

.vault-3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 18px;
}
@media (max-width: 768px) {
  .vault-3-grid { grid-template-columns: 1fr !important; gap: 14px; }
}

.vb-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 18px;
  gap: 16px;
}
@media (max-width: 640px) {
  .vb-header { flex-direction: column; align-items: flex-start; }
}

.vb-tag {
  background: #fef3c7;
  border: 1px solid #fde68a;
  color: #92400e;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 6px;
}
.vb-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
}
.vb-sub { font-size: 13px; color: var(--text-muted); }

.vb-timer {
  background: #09090b;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vb-timer-label {
  font-size: 11px;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #e4e4e7;
}
.vb-timer-digits {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
}

/* 3D TINDER MATCHER */
.match-screen-wrap {
  max-width: 440px;
  margin: 0 auto;
  padding: 8px 0 24px 0;
  text-align: center;
}

.match-top-bar { margin-bottom: 14px; }
.mtb-tag {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  display: inline-block;
  margin-bottom: 6px;
}
.mtb-title {
  font-family: var(--font-editorial);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
}
.mtb-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.match-stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

.match-cat-chips {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

.mcc-chip {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.mcc-chip.active {
  background: var(--text-main);
  color: #ffffff;
  border-color: var(--text-main);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.match-deck-container {
  width: 100%;
  height: 460px;
  position: relative;
  margin: 14px 0 20px 0;
  perspective: 1000px;
}

.match-deck-arena {
  width: 100%;
  height: 100%;
  position: relative;
}

.tinder-card-3d {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.tinder-card-3d.dragging { cursor: grabbing; transition: none; }
.tinder-card-3d.card-top { z-index: 5; }
.tinder-card-3d.card-next {
  z-index: 4;
  transform: scale(0.95) translateY(14px);
  opacity: 0.85;
}
.tinder-card-3d.card-back {
  z-index: 3;
  transform: scale(0.90) translateY(28px);
  opacity: 0.6;
}

.tc3-img-box {
  width: 100%;
  height: 66%;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}
.tc3-img-box img { width: 100%; height: 100%; object-fit: cover; }

.tc3-stamp {
  position: absolute;
  top: 20px;
  padding: 6px 14px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 10;
}
.tc3-stamp-like {
  right: 20px;
  border: 2px solid #047857;
  color: #047857;
  transform: rotate(10deg);
}
.tc3-stamp-pass {
  left: 20px;
  border: 2px solid #e11d48;
  color: #e11d48;
  transform: rotate(-10deg);
}

.tc3-info {
  padding: 14px 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}
.tc3-brand {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
}
.tc3-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin: 2px 0 4px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tc3-sizes {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.tc3-size-chip {
  font-size: 11px;
  font-weight: 700;
  color: #3f3f46;
  background: var(--bg-surface);
  padding: 2px 6px;
  border-radius: 4px;
}
.tc3-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid var(--border-subtle);
}
.tc3-price {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--text-main);
}
.tc3-quick-btn {
  background: var(--text-main);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
}

/* REFINED THOUGHTFUL MATCH BUTTONS WITH TOOLTIPS */
.match-actions-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.mab-btn {
  position: relative;
  border-radius: 50%;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.15s ease;
}
.mab-btn:hover {
  transform: translateY(-2px) scale(1.05);
}

.mab-tooltip {
  position: absolute;
  bottom: -22px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  pointer-events: none;
}

.mab-rewind {
  width: 44px;
  height: 44px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
}
.mab-pass {
  width: 56px;
  height: 56px;
  background: #ffffff;
  border: 1.5px solid #fecdd3;
  color: #e11d48;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.08);
}
.mab-super {
  width: 48px;
  height: 48px;
  background: #09090b;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.mab-like {
  width: 56px;
  height: 56px;
  background: #047857;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.22);
}

.match-hint {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}
.mh-dot { color: var(--text-light); }

@media (max-width: 768px) {
  .match-header-luxury .mhl-title {
    font-size: 20px;
    margin-bottom: 2px;
  }
  .match-header-luxury .mhl-subtitle {
    font-size: 12px;
    margin-bottom: 4px;
  }
  .match-counter-pill {
    margin-bottom: 8px;
    padding: 3px 10px;
    font-size: 11px;
  }
  .match-cat-chips {
    gap: 6px;
    margin-bottom: 6px;
  }
  .mcc-chip {
    padding: 5px 9px;
    font-size: 11px;
  }
  .match-size-strip {
    margin-bottom: 6px;
  }
  .match-deck-container {
    height: clamp(300px, 42vh, 370px);
    margin: 8px 0 12px 0;
  }
  .match-actions-bar {
    gap: 12px;
    margin-top: 4px;
    margin-bottom: 20px;
  }
  .mab-pass, .mab-like {
    width: 50px;
    height: 50px;
  }
  .mab-super {
    width: 44px;
    height: 44px;
  }
  .mab-rewind {
    width: 40px;
    height: 40px;
  }
  .match-hint {
    display: none;
  }
}

/* PRO FILTERS BAR */
.pro-filter-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 8px 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.pfs-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--text-main);
}
.pfs-chips {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}
.pfs-chips::-webkit-scrollbar { display: none; }

.pfs-sort-chips {
  display: flex;
  gap: 6px;
  margin-left: auto;
}
@media (max-width: 640px) {
  .pfs-sort-chips { width: 100%; margin-left: 0; justify-content: flex-start; }
}

.pfs-btn {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.pfs-btn:hover { border-color: #09090b; }
.pfs-btn.active {
  background: #09090b;
  color: #ffffff;
  border-color: #09090b;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

/* ACTIVE FILTERS TAGS */
.active-filters-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px dashed var(--border-subtle);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
  font-size: 13px;
}
.afb-label { font-weight: 700; color: var(--text-muted); }
.afb-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.afb-tag {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 3px 8px;
  font-weight: 700;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.afb-tag button {
  background: transparent;
  border: 0;
  color: var(--text-light);
  cursor: pointer;
  font-size: 12px;
}
.afb-tag button:hover { color: #e11d48; }
.afb-reset-btn {
  background: transparent;
  border: 0;
  color: #e11d48;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  margin-left: auto;
}

/* CATALOG STYLES */
.home-catalog-section { margin-bottom: 36px; }
.ssense-mobile-cat-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: var(--bg-surface);
  padding: 4px;
  border-radius: 10px;
  margin-bottom: 14px;
}
@media (min-width: 961px) {
  .ssense-mobile-cat-tabs { display: none; }
}

.smc-btn {
  background: transparent;
  border: 0;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  padding: 8px 4px;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.smc-btn.active {
  background: #ffffff;
  color: var(--text-main);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.ssense-catalog-toolbar {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 14px;
  margin-bottom: 22px;
}

.sct-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 14px;
  gap: 16px;
}
@media (max-width: 640px) {
  .sct-top { flex-direction: column; align-items: stretch; gap: 10px; }
}

.sct-title {
  font-family: var(--font-editorial);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-main);
}
.sct-count { font-size: 12.5px; color: var(--text-muted); }

.ssense-search-wrap {
  position: relative;
  width: 100%;
  max-width: 360px;
  display: flex;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 0 12px;
  height: 40px;
}
.ssense-search-wrap:focus-within {
  border-color: var(--text-main);
  background: #ffffff;
}

.ssw-icon { color: var(--text-muted); margin-right: 8px; }
.ssense-search-wrap input {
  border: 0;
  background: transparent;
  width: 100%;
  height: 100%;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-main);
  outline: none;
}
.ssw-clear {
  background: transparent;
  border: 0;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 12px;
}

.sct-filter-rail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}
.sct-filter-rail::-webkit-scrollbar { display: none; }

.sct-sizes-scroll {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}
.sct-sizes-scroll::-webkit-scrollbar { display: none; }

.ss-size-pill {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.ss-size-pill:hover { border-color: #09090b; }
.ss-size-pill.active {
  background: var(--text-main);
  color: #ffffff;
  border-color: var(--text-main);
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

/* PRODUCT GRID */
.ssense-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 768px) {
  .ssense-products-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (min-width: 1080px) {
  .ssense-products-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

/* PRODUCT CARD */
.ssense-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
}
.ssense-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.sc-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  position: relative;
  margin-bottom: 6px;
}
.sc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.ssense-card:hover .sc-img-wrap img { transform: scale(1.04); }

.sc-fav-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.sc-fav-btn:hover { transform: scale(1.12); }

.sc-meta {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 4px 10px 10px 10px;
}
.sc-brand {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.sc-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.35;
  height: 35px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 6px;
}
.sc-sizes-row {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
  height: 18px;
  overflow: hidden;
  margin-bottom: 6px;
}
.sc-size-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-surface);
  padding: 1px 4px;
  border-radius: 3px;
  border: 1px solid var(--border-subtle);
}
.sc-size-tag.my-size-highlight {
  background: #059669;
  color: #ffffff;
  font-weight: 800;
  border-color: #059669;
}
.sc-size-tag.sc-size-more {
  color: var(--text-muted);
  font-weight: 700;
  background: transparent;
  border: none;
}
.tc3-size-chip.my-size-chip {
  background: #059669;
  color: #ffffff;
  font-weight: 800;
  border-color: #059669;
}
.mss-btn.mss-my-size-pill {
  background: #ecfdf5;
  color: #047857;
  border-color: #a7f3d0;
  font-weight: 800;
}
.mss-btn.mss-my-size-pill.active {
  background: #059669 !important;
  color: #ffffff !important;
  border-color: #059669 !important;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.25) !important;
}
.sc-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 4px;
}
.sc-price {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
}
.sc-buy-btn {
  background: var(--text-main);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.sc-buy-btn:hover {
  background: #000000;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.ssense-load-more {
  text-align: center;
  margin-top: 30px;
}
.ssense-load-btn {
  background: var(--text-main);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.ssense-load-btn:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* SAVED SCREEN */
.ssense-page-header { margin-bottom: 24px; }
.sph-title {
  font-family: var(--font-editorial);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-main);
}
.sph-desc { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

.sph-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.sph-clear-btn {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
}
.sph-clear-btn:hover { color: #e11d48; border-color: #e11d48; }

/* EMPTY STATE BOX */
.empty-state-card {
  grid-column: 1 / -1;
  text-align: center;
  padding: 50px 20px;
  background: var(--bg-surface);
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  max-width: 480px;
  margin: 20px auto;
}
.esc-icon { font-size: 32px; margin-bottom: 10px; }
.esc-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}
.esc-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.4;
}

/* REVIEWS */
.reviews-section {
  margin: 36px 0;
  padding: 30px 22px;
  background: var(--bg-surface);
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
}
.rs-header { text-align: center; margin-bottom: 22px; }
.rs-tag {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 6px;
}
.rs-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
}
.rs-sub { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

.rs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px) {
  .rs-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

.rs-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.rs-stars { color: #f59e0b; font-size: 13px; letter-spacing: 2px; margin-bottom: 8px; }
.rs-text { font-size: 13px; color: var(--text-main); line-height: 1.5; margin-bottom: 12px; }
.rs-author { font-size: 13px; color: var(--text-muted); }
.rs-author strong { color: var(--text-main); }

/* FAQ SECTION */
.faq-section {
  margin: 36px 0;
  padding: 30px 22px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-surface);
}
.faq-q {
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-main);
}
.faq-icon {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.25s ease;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.faq-item.open .faq-a {
  padding: 0 18px 14px 18px;
  max-height: 200px;
}

/* SERVICE SCREEN */
.service-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .service-full-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
.sfg-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 22px;
}
.sfg-icon { font-size: 26px; margin-bottom: 10px; }
.sfg-card h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
}
.sfg-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* FOOTER */
.ssense-footer {
  margin-top: 50px;
  padding: 36px 0 20px 0;
  border-top: 1px solid var(--border-subtle);
}
.sf-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .sf-inner { grid-template-columns: 1fr; gap: 20px; }
}
.sf-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin: 8px 0 12px 0;
  line-height: 1.5;
  max-width: 400px;
}
.sf-status {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-emerald);
}
.sf-links-col h4 {
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--text-main);
  margin-bottom: 10px;
}
.sf-links-col a {
  display: block;
  font-size: 12.5px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.15s ease;
}
.sf-links-col a:hover { color: var(--text-main); }

.sf-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 18px;
  text-align: center;
  font-size: 11px;
  color: var(--text-light);
}

/* DRAWERS & MODALS */
.ssense-drawer-overlay, .ssense-modal-overlay, .story-viewer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 9, 11, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
}

.ssense-slide-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: #ffffff;
  z-index: 2010;
  box-shadow: -8px 0 32px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.ssense-slide-drawer.open { right: 0; }

@media (max-width: 600px) {
  .ssense-slide-drawer {
    top: auto;
    bottom: -100%;
    right: 0;
    max-width: 100%;
    height: 88vh;
    border-radius: 18px 18px 0 0;
    transition: bottom 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .ssense-slide-drawer.open { bottom: 0; }
}

.ssd-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ssd-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-main);
}

.ssd-close-btn {
  background: var(--bg-surface);
  border: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ssd-close-btn:hover { background: #09090b; color: #ffffff; }

.ssd-body {
  padding: 20px;
  overflow-y: auto;
  flex-grow: 1;
}

.ssd-product-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--bg-surface);
  border-radius: 10px;
  margin-bottom: 18px;
}

.ssd-prod-img {
  width: 74px;
  height: 74px;
  border-radius: 6px;
  object-fit: cover;
  background: #ffffff;
}

.ssd-prod-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ssd-prod-brand {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.ssd-prod-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-main);
  margin: 1px 0 3px 0;
}

.ssd-prod-price {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
}

.ssd-trust-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}
.stt-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-emerald);
}

.ssd-size-section { margin-bottom: 18px; }
.ssd-size-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.ssd-section-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
}
.ssd-size-guide-btn {
  background: transparent;
  border: 0;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}
.ssd-size-guide-btn:hover { color: var(--text-main); }

.ssd-size-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.ssd-chip {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.ssd-chip.active {
  background: var(--text-main);
  color: #ffffff;
  border-color: var(--text-main);
}

.ssd-form-group { margin-bottom: 14px; }
.ssd-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.ssd-form-group input {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-main);
  outline: none;
}
.ssd-form-group input:focus {
  border-color: var(--text-main);
  background: #ffffff;
}

.ssd-submit-btn {
  background: #09090b;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  width: 100%;
  margin-top: 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.ssd-submit-btn:hover {
  background: #000000;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.ssd-cart-row {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px;
  background: var(--bg-surface);
  border-radius: 8px;
  margin-bottom: 8px;
}
.ssd-cart-img {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  object-fit: cover;
  background: #ffffff;
}
.ssd-cart-info { flex-grow: 1; }
.ssd-cart-title { font-size: 12.5px; font-weight: 700; color: var(--text-main); }
.ssd-cart-size { font-size: 11px; color: var(--text-muted); }
.ssd-cart-price { font-family: var(--font-heading); font-size: 13.5px; font-weight: 800; color: var(--text-main); }
.ssd-cart-remove { background: transparent; border: 0; color: var(--text-light); cursor: pointer; padding: 6px; font-size: 13px; }
.ssd-cart-remove:hover { color: #e11d48; }

.ssd-cart-total-box {
  background: var(--bg-surface);
  border-radius: 8px;
  padding: 12px;
  margin: 14px 0;
}
.ssd-ct-row {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.ssd-ct-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
  padding-top: 6px;
  border-top: 1px solid var(--border-subtle);
}

/* MODALS */
.ssense-modal-overlay, .story-viewer-overlay {
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.ssense-modal-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 22px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.smc-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #09090b;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
}

.smc-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--text-main);
}
.smc-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 4px 0 18px 0;
}

.smc-details-box {
  background: var(--bg-surface);
  border-radius: 8px;
  padding: 12px;
  text-align: left;
  margin-bottom: 18px;
  font-size: 12.5px;
}
.smc-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  color: var(--text-muted);
}
.smc-row strong { color: var(--text-main); }
.smc-total {
  border-top: 1px solid var(--border-subtle);
  padding-top: 6px;
  font-size: 13.5px;
  color: var(--text-main);
}

/* SIZE TABLE */
.size-table-wrap {
  max-height: 220px;
  overflow-y: auto;
  margin-bottom: 18px;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
}
.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  text-align: left;
}
.size-table th, .size-table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--border-subtle);
}
.size-table th {
  background: var(--bg-surface);
  font-family: var(--font-heading);
  font-weight: 700;
}

/* STORIES VIEWER */
.svm-container {
  background: #000000;
  color: #ffffff;
  width: 100%;
  max-width: 380px;
  height: 560px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.svm-progress-bar {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  z-index: 10;
  overflow: hidden;
}

.svm-progress-fill {
  height: 100%;
  width: 0%;
  background: #ffffff;
  transform: scaleX(0); transform-origin: left; transition: transform 0.1s linear;
}

.svm-close-btn {
  position: absolute;
  top: 22px;
  right: 14px;
  background: rgba(0, 0, 0, 0.5);
  border: 0;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svm-image-wrap {
  width: 100%;
  height: 70%;
}
.svm-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svm-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  background: #000000;
}
.svm-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
}
.svm-desc {
  font-size: 12.5px;
  color: #f4f4f5;
  margin: 4px 0 10px 0;
}

/* FLOATING TELEGRAM BUTTON WITH BREATHING EFFECT */
.floating-concierge-btn {
  position: fixed;
  bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  right: 16px;
  background: #0088cc;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 20px rgba(0, 136, 204, 0.35);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  z-index: 990;
  transition: transform 0.15s ease;
}
.floating-concierge-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 136, 204, 0.45);
}
.fcb-pulse {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 999px;
  border: 1.5px solid #0088cc;
  animation: pulsePulse 2.5s infinite;
  pointer-events: none;
}
@keyframes pulsePulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.15); opacity: 0; }
}

@media (max-width: 600px) {
  .floating-concierge-btn {
    bottom: calc(68px + env(safe-area-inset-bottom, 0px));
    right: 12px;
    padding: 8px 10px;
  }
  .fcb-label { display: none; }
}

/* ZOOM MODAL */
.ssense-zoom-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}
.szc-close { position: absolute; top: 10px; right: 10px; }
.szc-img-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg-surface);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
}
.szc-img-box img { width: 100%; height: 100%; object-fit: cover; }
.szc-meta { text-align: left; }
.szc-brand {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}
.szc-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin: 2px 0 4px 0;
}
.szc-price {
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 14px;
}

/* TRUST SECTION */
.trust-section { padding: 10px 0 30px 0; }
.ssense-service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px) {
  .ssense-service-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}
.ssg-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 18px;
}
.ssg-num {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 8px;
}
.ssg-title {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}
.ssg-text {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* BOTTOM DOCK WITH PRODUCIBILITY BADGES */
.ssense-bottom-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(58px + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
}
@media (min-width: 961px) {
  .ssense-bottom-dock { display: none; }
}

.sbd-btn {
  flex: 1 1 0;
  min-width: 0;
  background: transparent;
  border: 0;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  padding: 4px 2px;
  position: relative;
}

.sbd-btn span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.sbd-btn.active {
  color: var(--text-main);
  font-weight: 800;
}

.sbd-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sbd-badge-dot {
  position: absolute;
  top: -2px;
  right: -4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #047857;
}

.sbd-badge-count {
  position: absolute;
  top: -5px;
  right: -8px;
  background: #09090b;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  min-width: 14px;
  height: 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* ==========================================================================
   DEDICATED FULL PRODUCT PAGE EXPERIENCE (#screen-product)
   ========================================================================== */
.product-page-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 8px 0 40px 0;
}

.pp-back-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.pp-back-btn {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.pp-back-btn:hover {
  background: #09090b;
  color: #ffffff;
  border-color: #09090b;
}

.pp-top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pp-share-btn, .pp-fav-btn {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.pp-share-btn:hover, .pp-fav-btn:hover {
  border-color: #09090b;
}
.pp-fav-btn.active {
  color: #e11d48;
  border-color: #fecdd3;
  background: #fff1f2;
}

.pp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 48px;
}
@media (max-width: 860px) {
  .pp-grid { grid-template-columns: 1fr; gap: 20px; }
}

.pp-gallery-box {
  position: sticky;
  top: 80px;
}
@media (max-width: 860px) {
  .pp-gallery-box { position: static; }
}

.pp-main-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  cursor: pointer;
}
.pp-main-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pp-main-image-wrap:hover img {
  transform: scale(1.04);
}

.pp-zoom-hint {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0,0,0,0.75);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(8px);
}

.pp-badge-stock {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(5, 150, 105, 0.25);
  color: #065f46;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.pp-info-box {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
@media (max-width: 640px) {
  .pp-info-box { padding: 18px; border-radius: 14px; }
}

.pp-brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.pp-brand {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--text-light);
  text-transform: uppercase;
}
.pp-sku {
  font-size: 11px;
  font-family: monospace;
  color: var(--text-light);
}

.pp-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-main);
  margin-bottom: 16px;
}
@media (max-width: 640px) {
  .pp-title { font-size: 20px; }
}

.pp-price-card {
  background: var(--bg-main);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 22px;
}

.pp-price-main {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.pp-price-current {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-main);
}
.pp-price-old {
  font-size: 16px;
  color: var(--text-light);
  text-decoration: line-through;
}
.pp-discount-tag {
  background: #fee2e2;
  color: #b91c1c;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
}

.pp-trust-pill {
  font-size: 13px;
  font-weight: 700;
  color: #047857;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ptp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #047857;
}

.pp-size-section {
  margin-bottom: 24px;
}
.pp-size-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.pp-section-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  color: var(--text-main);
}
.pp-size-guide-link {
  background: transparent;
  border: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: underline;
  cursor: pointer;
}

.pp-sizes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pp-size-btn {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 58px;
}
.pp-size-btn span.cm-sub {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 2px;
}
.pp-size-btn:hover {
  border-color: #09090b;
}
.pp-size-btn.active {
  background: #09090b;
  color: #ffffff;
  border-color: #09090b;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.pp-size-btn.active span.cm-sub {
  color: #e4e4e7;
}

.pp-actions-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.pp-btn-buy {
  background: #09090b;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 15px 24px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
}
.pp-btn-buy:hover {
  background: #18181b;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.pp-actions-subrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pp-btn-cart {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  padding: 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}
.pp-btn-cart:hover {
  border-color: #09090b;
  background: #fafafa;
}

.pp-btn-telegram {
  background: #0088cc;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  padding: 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,136,204,0.2);
}
.pp-btn-telegram:hover {
  background: #0077b5;
  transform: translateY(-1px);
}

.pp-benefits-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 18px;
}
.ppb-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.ppb-icon {
  font-size: 18px;
  line-height: 1;
}
.ppb-item strong {
  display: block;
  font-size: 12px;
  color: var(--text-main);
  margin-bottom: 2px;
}
.ppb-item p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.35;
}

.pp-cross-section {
  margin-top: 20px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 32px;
}
.pp-cross-header {
  margin-bottom: 20px;
}
.pp-cross-tag {
  background: #09090b;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 6px;
}
.pp-cross-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
}
.pp-cross-desc {
  font-size: 12.5px;
  color: var(--text-muted);
}
.pp-cross-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px;
}
@media (max-width: 768px) {
  .pp-cross-grid { grid-template-columns: 1fr !important; }
}

/* ==========================================================================
   MATCHER SIZE FILTER STRIP
   ========================================================================== */
.match-size-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.mss-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
}
.mss-scroll {
  display: flex;
  gap: 5px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 2px;
}
.mss-scroll::-webkit-scrollbar { display: none; }
.mss-btn {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}
.mss-btn.active {
  background: #09090b;
  color: #ffffff;
  border-color: #09090b;
}

/* ==========================================================================
   QUICK CITIES IN CHECKOUT
   ========================================================================== */
.ssd-quick-cities {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.sqc-btn {
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.1s ease;
}
.sqc-btn:hover, .sqc-btn.active {
  background: #09090b;
  color: #ffffff;
  border-color: #09090b;
}

/* ==========================================================================
   LIVE SOCIAL PROOF TOAST
   ========================================================================== */
.social-proof-toast {
  position: fixed;
  bottom: 80px;
  left: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 950;
  cursor: pointer;
  max-width: 320px;
  animation: slideToastIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
}
@media (max-width: 640px) {
  .social-proof-toast {
    bottom: 74px;
    left: 12px;
    right: 12px;
    max-width: none;
  }
}
@keyframes slideToastIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.spt-icon {
  width: 32px;
  height: 32px;
  background: #fef3c7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.spt-content {
  flex: 1;
  min-width: 0;
}
.spt-title {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.spt-desc {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.spt-close {
  background: transparent;
  border: 0;
  color: var(--text-light);
  font-size: 12px;
  cursor: pointer;
  padding: 4px;
}

/* ==========================================================================
   APP TOAST CONTAINER
   ========================================================================== */
.app-toast-container {
  position: fixed;
  top: 76px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2000;
  pointer-events: none;
}
.app-toast-msg {
  background: #09090b;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  animation: appToastAnim 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}
@keyframes appToastAnim {
  from { transform: translateY(-10px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

/* ==========================================================================
   PRODUCT BADGES (LUXURY NATURAL DEMAND TAGS)
   ========================================================================== */
.sc-badge-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border-radius: 6px;
  z-index: 4;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.sc-badge-hit {
  background: #09090b;
  color: #ffffff;
}
.sc-badge-new {
  background: #ffffff;
  color: #047857;
  border: 1px solid #10b981;
}
.sc-badge-limited {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* ==========================================================================
   COPY SKU BUTTON
   ========================================================================== */
.pp-sku-box {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pp-copy-sku-btn {
  background: #f4f4f5;
  border: 1px solid #e4e4e7;
  color: #52525b;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.pp-copy-sku-btn:hover {
  background: #09090b;
  color: #ffffff;
  border-color: #09090b;
}

/* ==========================================================================
   QUICK NOVA POSHTA WAREHOUSES
   ========================================================================== */
.ssd-quick-warehouses {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.sqw-chip {
  background: #f4f4f5;
  border: 1px solid #e4e4e7;
  color: #3f3f46;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.sqw-chip:hover, .sqw-chip.active {
  background: #09090b;
  color: #ffffff;
  border-color: #09090b;
}

/* ==========================================================================
   MOBILE STICKY BOTTOM PURCHASE BAR
   ========================================================================== */
.pp-mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid #e4e4e7;
  padding: 10px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 1100;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  body.in-product-view .ssense-bottom-dock {
    display: none !important;
  }
  body.in-product-view .pp-mobile-sticky-bar {
    display: flex !important;
  }
  .pp-mobile-sticky-bar.visible {
    display: flex;
  }
}
.pmsb-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.pmsb-title {
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 700;
  color: #09090b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 170px;
}
.pmsb-price-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 1px;
}
.pmsb-price {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #047857;
}
.pmsb-size-chip {
  background: #f4f4f5;
  color: #18181b;
  border: 1px solid #e4e4e7;
  font-size: 11px;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 4px;
}
.pmsb-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.pmsb-btn-cart {
  background: #f4f4f5;
  color: #18181b;
  border: 1px solid #e4e4e7;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}
.pmsb-btn-cart:active {
  background: #e4e4e7;
  transform: scale(0.96);
}
.pmsb-btn {
  background: #09090b;
  color: #ffffff;
  border: none;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  padding: 11px 20px;
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pmsb-btn:active {
  transform: scale(0.97);
}

/* ==========================================================================
   LIVE SYNC INDICATOR (REAL-TIME GOOGLE SHEETS PIPELINE)
   ========================================================================== */
.sct-title-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.live-sync-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f4f4f5;
  border: 1px solid #e4e4e7;
  padding: 3px 8px;
  border-radius: 999px;
  margin-top: 4px;
}
.lsi-dot {
  width: 6.5px;
  height: 6.5px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  display: inline-block;
  animation: lsiPulse 2s infinite ease-in-out;
}
.lsi-dot.syncing {
  background: #f59e0b;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.lsi-dot.error {
  background: #ef4444;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
@keyframes lsiPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}
.lsi-text {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: #52525b;
  letter-spacing: 0.02em;
}
.lsi-refresh-btn {
  background: transparent;
  border: none;
  color: #52525b;
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.lsi-refresh-btn:hover {
  color: #09090b;
  background: #e4e4e7;
}
.lsi-refresh-btn.spinning svg {
  animation: lsiSpin 0.8s linear infinite;
}
@keyframes lsiSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   RELEASE #96: SMART NOVA POSHTA AUTOCOMPLETE & SEARCH DROPDOWNS
   ========================================================================== */
.ssd-autocomplete-group {
  position: relative;
}
.ssd-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.ssd-sub-hint {
  font-size: 11px;
  font-weight: 700;
  color: #991b1b;
  background: #fef2f2;
  padding: 2px 6px;
  border-radius: 4px;
}
.ssd-input-wrap {
  position: relative;
  width: 100%;
}
.ssd-dropdown-panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  max-height: 220px;
  overflow-y: auto;
  z-index: 1050;
  padding: 4px;
}
.ssd-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #18181b;
  cursor: pointer;
  transition: all 0.15s ease;
}
.ssd-dropdown-item:hover, .ssd-dropdown-item.active {
  background: #f4f4f5;
  color: #09090b;
}
.sdi-icon {
  margin-right: 8px;
  font-size: 14px;
}
.sdi-sub {
  font-size: 11px;
  color: #52525b;
  font-weight: 500;
}
.sdi-badge {
  font-size: 11px;
  font-weight: 700;
  background: #e4e4e7;
  padding: 2px 6px;
  border-radius: 4px;
  color: #52525b;
}

/* WAREHOUSE FILTER TABS */
.ssd-wh-filter-tabs {
  display: flex;
  gap: 4px;
}
.sw-tab {
  background: #f4f4f5;
  border: 1px solid transparent;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #52525b;
  cursor: pointer;
  transition: all 0.15s ease;
}
.sw-tab.active {
  background: #18181b;
  color: #ffffff;
  border-color: #18181b;
}

/* ==========================================================================
   SMART CROSS-SELL BUMPING (AOV & CRO BOOST)
   ========================================================================== */
.ssd-cross-sell-section {
  margin-top: 14px;
  margin-bottom: 14px;
  background: #fafafa;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  padding: 12px;
}
.scs-header {
  margin-bottom: 10px;
}
.scs-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #92400e;
  background: #fef3c7;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 3px;
}
.scs-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: #09090b;
}
.scs-items-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.scs-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 8px;
  padding: 9px 12px;
  cursor: pointer;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}
.scs-card:hover {
  border-color: #a1a1aa;
  transform: translateY(-1px);
}
.scs-card.active {
  border-color: #09090b;
  background: #fdfdfd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.scs-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.scs-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid #a1a1aa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: transparent;
  transition: all 0.15s ease;
  flex-shrink: 0;
}
.scs-card.active .scs-checkbox {
  background: #09090b;
  border-color: #09090b;
  color: #ffffff;
}
.scs-emoji {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}
.scs-info {
  display: flex;
  flex-direction: column;
}
.scs-name {
  font-size: 12.5px;
  font-weight: 700;
  color: #09090b;
  line-height: 1.25;
}
.scs-desc {
  font-size: 11px;
  color: #52525b;
  margin-top: 1px;
}
.scs-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: 8px;
  flex-shrink: 0;
}
.scs-price {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: #047857;
}
.scs-old-price {
  font-size: 11px;
  color: #52525b;
  text-decoration: line-through;
}

/* ==========================================================================
   LIVE ORDER SUMMARY BREAKDOWN
   ========================================================================== */
.ssd-order-summary-box {
  background: #f4f4f5;
  border: 1px solid #e4e4e7;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sos-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #52525b;
}
.sos-row strong {
  color: #09090b;
  font-weight: 700;
}
.sos-free-tag {
  color: #047857;
  font-weight: 700;
}
.sos-zero-tag {
  color: #09090b;
  font-weight: 700;
}
.sos-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed #d4d4d8;
  padding-top: 8px;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 800;
  color: #09090b;
}
.sos-total-val {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: #09090b;
}

/* ==========================================================================
   PRODUCT CARD SIZES ROW
   ========================================================================== */
.sc-sizes-row {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin: 3px 0 6px 0;
  min-height: 18px;
}
.sc-size-tag {
  font-size: 11px;
  font-weight: 700;
  color: #52525b;
  background: #f4f4f5;
  padding: 1px 4px;
  border-radius: 3px;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   VIP VAULT & SWISS PRECISION DIGITAL COUNTDOWN TIMER
   ========================================================================== */
.vault-section {
  max-width: var(--container-max);
  margin: 28px auto;
  padding: 0 20px;
}
@media (max-width: 640px) {
  .vault-section { padding: 0 14px; margin: 20px auto; }
}
.vault-box { background: transparent; border: none; padding: 0; box-shadow: none; }
@media (max-width: 640px) {
  .vault-box { background: transparent; border: none; padding: 0; box-shadow: none; }
}
.vb-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f4f4f5;
  padding-bottom: 16px;
}
.vb-title-col {
  flex: 1;
  min-width: 260px;
}
.vb-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #92400e;
  background: #fef3c7;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 6px;
}
.vb-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #09090b;
  letter-spacing: -0.01em;
}
@media (max-width: 640px) {
  .vb-title { font-size: 17px; }
}
.vb-sub {
  font-size: 13px;
  color: #52525b;
  margin-top: 3px;
}

/* LUXURY DIGITAL TIMER */
.vb-timer-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: #09090b;
  border: 1px solid #27272a;
  border-radius: 12px;
  padding: 8px 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media (max-width: 640px) {
  .vb-timer-box { align-items: flex-start; width: 100%; }
}
.vb-timer-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #e4e4e7;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 4px;
}
.vbt-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  animation: lsiPulse 2s infinite;
}
.vb-timer-blocks {
  display: flex;
  align-items: center;
  gap: 4px;
}
.vbt-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #18181b;
  border: 1px solid #27272a;
  border-radius: 6px;
  min-width: 38px;
  padding: 3px 6px;
}
.vbt-num {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.vbt-lbl { font-size: 11px; font-weight: 800; color: #ffffff; letter-spacing: 0.02em; margin-top: 2px; }
.vbt-colon {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #f59e0b;
  padding: 0 1px;
  margin-top: -6px;
}

/* SENSE CATALOG TOOLBAR DESC & BADGE */
.sct-sub-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.sct-desc {
  font-size: 12.5px;
  color: #52525b;
  font-weight: 500;
}

/* ==========================================================================
   INSTAGRAM / TIKTOK FULLSCREEN STORIES SYSTEM & MODAL VIEWER
   ========================================================================== */
.sb-ring {
  background: linear-gradient(135deg, #09090b 0%, #d97706 50%, #09090b 100%) !important;
  padding: 2.5px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  animation: sbRingGlow 3s ease-in-out infinite alternate;
}
@keyframes sbRingGlow {
  0% { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2); }
  100% { box-shadow: 0 4px 20px rgba(217, 119, 6, 0.25); }
}
.story-bubble.viewed .sb-ring {
  background: #3f3f46 !important;
  box-shadow: none !important;
  animation: none !important;
}

.story-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.story-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.story-viewer-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 88vh;
  max-height: 740px;
  background: #09090b;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75);
  user-select: none;
  -webkit-user-select: none;
  display: flex;
  flex-direction: column;
}
@media (max-width: 640px) {
  .story-viewer-card {
    width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
    box-shadow: none;
    border: 0;
  }
}

/* PROGRESS BARS */
.story-progress-container {
  position: absolute;
  top: 12px;
  left: 14px;
  right: 14px;
  z-index: 20;
  display: flex;
  gap: 4px;
}
.sp-bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  overflow: hidden;
}
.sp-fill {
  height: 100%;
  width: 0%;
  background: #ffffff;
  border-radius: 999px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.05s linear;
}

/* STORY HEADER */
.story-viewer-header {
  position: absolute;
  top: 24px;
  left: 14px;
  right: 14px;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.svh-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.svh-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.svh-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svh-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.svh-time { font-size: 12px; color: #ffffff; font-weight: 600; text-shadow: 0 1px 4px rgba(0,0,0,0.8); }
.svh-close-btn {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  cursor: pointer;
}

/* MEDIA & OVERLAY */
.story-viewer-media {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #09090b;
}
.svm-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svm-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 9, 11, 0.95) 0%, rgba(9, 9, 11, 0.5) 45%, transparent 75%),
              linear-gradient(to bottom, rgba(9, 9, 11, 0.6) 0%, transparent 25%);
  pointer-events: none;
}
.svm-content-box {
  position: relative;
  z-index: 10;
  padding: 20px 20px 84px 20px;
}
.svm-badge {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  background: #f59e0b;
  color: #09090b;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.svm-title {
  font-family: var(--font-editorial);
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 6px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.svm-desc {
  font-size: 13px;
  color: #e4e4e7;
  line-height: 1.45;
  margin-bottom: 12px;
}
.svm-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.svm-price {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
}
.svm-stock-chip {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  background: #065f46;
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 3px 8px;
  border-radius: 4px;
}

/* TAP ZONES */
.story-tap-zone {
  position: absolute;
  top: 70px;
  bottom: 80px;
  z-index: 15;
  cursor: pointer;
}
.stz-prev { left: 0; width: 35%; }
.stz-next { right: 0; width: 65%; }

/* BOTTOM ACTION */
.story-bottom-action {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 25;
}
.story-action-btn {
  width: 100%;
  background: #ffffff;
  color: #09090b;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 12px;
  border: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.story-action-btn:hover {
  background: #f4f4f5;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.25);
}





.hsb-subtitle, .vb-sub, .sct-desc, .sf-desc, .rs-text, .ssg-text, .faq-a p { max-width: 68ch; font-size: 13.5px; line-height: 1.5; }


p, .hsb-subtitle, .vb-sub, .sct-desc, .sf-desc, .rs-text, .ssg-text, .faq-a p, .ppb-item p {
  max-width: 60ch !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

/* ==========================================================================
   RELEASE #101: SMART SIZE PROFILE (SIZE-FIRST LUXURY ARCHITECTURE)
   ========================================================================== */
.sh-size-chip-tag {
  background: #ecfdf5;
  color: #047857;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid rgba(4, 120, 87, 0.25);
  margin-left: 4px;
  display: inline-flex;
  align-items: center;
}

.size-profile-quick-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  background: #fafafa;
  border: 1px solid #e4e4e7;
  border-radius: 10px;
  padding: 8px 12px;
  margin-bottom: 10px;
}

.spqb-toggle-btn {
  background: #ffffff;
  border: 1px solid #d4d4d8;
  color: #18181b;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.spqb-toggle-btn.active {
  background: #09090b;
  color: #ffffff;
  border-color: #09090b;
}

.spqb-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a1a1aa;
  transition: all 0.2s ease;
}
.spqb-toggle-btn.active .spqb-dot {
  background: #10b981;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.spqb-change-link {
  background: transparent;
  border: 0;
  font-size: 13px;
  font-weight: 700;
  color: #52525b;
  cursor: pointer;
  text-decoration: underline;
  padding: 4px;
}
.spqb-change-link:hover {
  color: #09090b;
}

/* SIZE PROFILE MODAL */
.size-profile-modal-card {
  background: #ffffff;
  border-radius: 18px;
  width: 100%;
  max-width: 480px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalScaleIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 640px) {
  .size-profile-modal-card {
    border-radius: 18px 18px 0 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 85vh;
    padding: 20px 16px calc(20px + env(safe-area-inset-bottom));
  }
}

.spm-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
  border-bottom: 1px solid #f4f4f5;
  padding-bottom: 14px;
}
.spm-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #92400e;
  background: #fef3c7;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 4px;
}
.spm-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  color: #09090b;
}
.spm-desc {
  font-size: 12.5px;
  color: #52525b;
  margin-top: 4px;
}

.spm-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.spm-sec-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.spm-sec-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: #09090b;
}
.spm-current-val {
  font-size: 12px;
  font-weight: 700;
  color: #047857;
  background: #ecfdf5;
  padding: 2px 8px;
  border-radius: 6px;
}

.spm-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.spm-chip {
  background: #f4f4f5;
  border: 1px solid #e4e4e7;
  color: #18181b;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
  min-width: 44px;
  text-align: center;
}
.spm-chip:hover {
  border-color: #09090b;
}
.spm-chip.active {
  background: #09090b;
  color: #ffffff;
  border-color: #09090b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.spm-toggle-box {
  background: #f4f4f5;
  border: 1px solid #e4e4e7;
  border-radius: 10px;
  padding: 12px;
}
.spm-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.spm-checkbox-label input {
  display: none;
}
.spm-custom-check {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1.5px solid #a1a1aa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: transparent;
  flex-shrink: 0;
  background: #ffffff;
  transition: all 0.15s ease;
}
.spm-checkbox-label input:checked + .spm-custom-check {
  background: #09090b;
  border-color: #09090b;
  color: #ffffff;
}
.spm-label-text {
  display: flex;
  flex-direction: column;
}
.spm-label-text strong {
  font-size: 13px;
  color: #09090b;
}
.spm-label-text small {
  font-size: 13px;
  color: #52525b;
  margin-top: 2px;
}

.sc-my-size-badge {
  font-size: 11px;
  font-weight: 700;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid rgba(4, 120, 87, 0.2);
  padding: 1px 5px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
}

