

/* Start:/local/templates/smth/styles.css?178224327634503*/
/* ════════════════════════════════════════════════════════════
   smth. brand — CSS extracted 1:1 from React source
   fonts.css + theme.css + inline styles from components
   ════════════════════════════════════════════════════════════ */

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

:root {
  /* Brand tokens (from theme.css) */
  --color-accent:       #FE5000;
  --color-accent-hover: #E04600;
  --color-ink:          #101820;
  --color-text:         #3A4048;
  --color-muted:        #5A5E63;
  --color-surface:      #F6F4EF;
  --color-border:       #E6E3DC;
  --color-sand:         #E7DECF;
  --color-stone:        #CFC3B2;
  --color-grey-price:   #9CA3AF;

  /* Radius (from theme.css) */
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-pill: 999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
html::-webkit-scrollbar { display: none; }

body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--color-text);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* from theme.css @layer base */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 6vw, 4rem);   font-weight: 800; }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── PAGE WRAPPER ─────────────────────────────────────────── */
/* paddingTop: 60 matches header height */
.page-body { padding-top: 60px; }

/* ════════════════════════════════════════════════════════════
   HEADER  (from Header.tsx inline styles)
   ════════════════════════════════════════════════════════════ */
.smth-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
  /* default: white with border */
  background: #ffffff;
  box-shadow: 0 1px 0 #E6E3DC;
}
/* Transparent variant — added by JS on homepage before scroll */
.smth-header--transparent {
  background: transparent;
  box-shadow: none;
}
/* Dark variant — mobile menu open */
.smth-header--dark {
  background: #101820;
  box-shadow: none;
}

.smth-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
}

/* Logo  */
.smth-logo {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--color-ink);
  letter-spacing: -0.03em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  user-select: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.3s;
  flex-shrink: 0;
  text-decoration: none;
}
.smth-logo--white { color: #ffffff; }
.smth-logo span { color: #FE5000; } /* the dot */

/* Desktop nav */
.smth-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 32px;
  align-items: center;
}
@media (max-width: 767px) { .smth-nav { display: none; } }

.smth-nav__btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-ink);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.smth-nav__btn--white { color: #ffffff; }
.smth-nav__btn--active { border-bottom-color: #FE5000; }
.smth-nav__btn:hover { color: #FE5000; }

.smth-nav__chevron {
  transition: transform 0.2s;
  display: inline-block;
}
.smth-nav__chevron--open { transform: rotate(180deg); }

/* Header icon buttons */
.smth-header__icons {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.smth-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  position: relative;
  flex-shrink: 0;
  transition: color 0.2s;
  text-decoration: none;
}
.smth-icon-btn--white { color: #ffffff; }
.smth-icon-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* Cart / wishlist dot indicator (7×7 orange dot, top-right) */
.smth-icon-dot {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FE5000;
  display: block;
}

/* Mega-menu */
.smth-mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #E6E3DC;
  border-bottom: 1px solid #E6E3DC;
  box-shadow: 0 8px 40px rgba(16,24,32,.08);
  padding: 40px 0 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 200;
}
.smth-mega--open { opacity: 1; pointer-events: auto; }

.smth-mega__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 80px;
}
.smth-mega__col-title {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5A5E63;
  margin-bottom: 20px;
}
.smth-mega__links { display: flex; flex-direction: column; gap: 2px; }
.smth-mega__link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #101820;
  padding: 7px 0;
  text-align: left;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  text-decoration: none;
}
.smth-mega__link:hover { color: #FE5000; }
.smth-mega__link--accent { color: #FE5000; }

/* Mobile fullscreen menu */
.smth-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: #101820;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding-top: 60px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.smth-mobile-menu--open {
  pointer-events: all;
  opacity: 1;
}

.smth-mobile-menu__nav {
  padding: 32px 28px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.smth-mobile-menu__item {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 8vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.025em;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  text-align: left;
  width: 100%;
  text-decoration: none;
}
.smth-mobile-menu__item--active { color: #FE5000; }
.smth-mobile-menu__item-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FE5000;
  display: inline-block;
  flex-shrink: 0;
}
/* hidden dot for inactive items */
.smth-mobile-menu__item-dot--hidden { opacity: 0; }

/* Mobile catalog accordion */
.smth-mobile-accordion__btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 8vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.025em;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  text-align: left;
  width: 100%;
}
.smth-mobile-accordion__chevron {
  margin-left: auto;
  color: #5A5E63;
  display: flex;
}
.smth-mobile-accordion__content {
  display: none;
  padding-left: 24px;
  padding-bottom: 8px;
}
.smth-mobile-accordion__content--open { display: block; }
.smth-mobile-accordion__section-title {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5A5E63;
  margin-bottom: 8px;
  margin-top: 16px;
}
.smth-mobile-accordion__link {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  padding: 6px 0;
  text-align: left;
  width: 100%;
  min-height: 36px;
  text-decoration: none;
  transition: color 0.2s;
}
.smth-mobile-accordion__link:hover { color: #ffffff; }

.smth-mobile-menu__divider {
  margin: 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.smth-mobile-menu__secondary {
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.smth-mobile-menu__secondary-link {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  padding: 8px 0;
  transition: color 0.2s;
  text-decoration: none;
}
.smth-mobile-menu__secondary-link:hover { color: #ffffff; }

.smth-mobile-menu__footer-tag {
  margin-top: auto;
  padding: 32px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5A5E63;
}
.smth-mobile-menu__footer-tag span { color: #FE5000; }

/* Mobile burger */
.smth-burger {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  flex-shrink: 0;
  transition: color 0.2s;
}
.smth-burger--white { color: #ffffff; }
.smth-burger svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* Mobile logo centred */
.smth-header__mobile-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* ════════════════════════════════════════════════════════════
   FOOTER  (from Footer.tsx)
   ════════════════════════════════════════════════════════════ */
.smth-footer {
  background: #101820;
  color: #ffffff;
  padding-top: 64px;
  padding-bottom: 40px;
}
.smth-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
.smth-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 48px;
  margin-bottom: 64px;
}
.smth-footer__logo {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  user-select: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  margin-bottom: 16px;
  text-decoration: none;
}
.smth-footer__logo span { color: #FE5000; }
.smth-footer__tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #5A5E63;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
  line-height: 1.6;
}
.smth-footer__tagline span { color: #FE5000; }
.smth-footer__made {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #5A5E63;
  margin-top: 24px;
}
.smth-footer__made span { color: #FE5000; }
.smth-footer__socials {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.smth-footer__social-link {
  color: #5A5E63;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
  display: inline-block;
}
.smth-footer__social-link:hover { color: #FE5000; }

.smth-footer__col-title {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5A5E63;
  margin-bottom: 20px;
}
.smth-footer__col-link {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 5px 0;
  text-align: left;
  transition: color 0.2s;
  text-decoration: none;
}
.smth-footer__col-link:hover { color: #FE5000; }

.smth-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.smth-footer__copy {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #5A5E63;
}
.smth-footer__bottom-links {
  display: flex;
  gap: 16px;
}
.smth-footer__bottom-link {
  background: none;
  border: none;
  cursor: pointer;
  color: #5A5E63;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  transition: color 0.2s;
  text-decoration: none;
}
.smth-footer__bottom-link:hover { color: #FE5000; }

/* ════════════════════════════════════════════════════════════
   PRODUCT CARD  (from ShopPage → ProductCard)
   ════════════════════════════════════════════════════════════ */
.smth-card { position: relative; height: 100%; }

.smth-card__img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  background: #F6F4EF;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 16px;
  box-shadow: 0 4px 24px rgba(16,24,32,.08);
  display: block;
}
.smth-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  display: block;
}

/* Tags (top-left) */
.smth-card__tags {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 1;
}
.smth-card__tag {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  color: #ffffff;
}
.smth-card__tag--new     { background: #101820; }
.smth-card__tag--sale    { background: #FE5000; }
.smth-card__tag--limited { background: #5A5E63; }

/* Wishlist (top-right) */
.smth-card__wish {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding: 0;
}
.smth-card__wish svg { width: 18px; height: 18px; }

/* Text section */
.smth-card__body { display: block; text-decoration: none; }

.smth-card__name {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #3A4048;
  margin-bottom: 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.smth-card__price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.smth-card__price {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #101820;
}
.smth-card__price-old {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #9CA3AF;
  text-decoration: line-through;
}
.smth-card__colors {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}
.smth-card__color-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #E6E3DC;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  background: none;
}
.smth-card__color-dot--active { border: 2px solid #101820; }
.smth-card__sizes {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.smth-card__size {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #5A5E63;
  padding: 3px 6px;
  border: 1px solid #E6E3DC;
  border-radius: 4px;
}

/* ════════════════════════════════════════════════════════════
   CATALOG / SHOP PAGE  (from ShopPage)
   ════════════════════════════════════════════════════════════ */
.smth-shop { padding-top: 60px; }
.smth-shop__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 40px;
}
@media (max-width: 767px) { .smth-shop__inner { padding: 40px 16px; } }

.smth-shop__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5A5E63;
  margin-bottom: 12px;
}
.smth-shop__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #101820;
  margin-bottom: 32px;
}

/* Category chips */
.smth-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.smth-chip {
  background: transparent;
  color: #101820;
  border: 1px solid #E6E3DC;
  border-radius: 999px;
  padding: 10px 20px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}
.smth-chip--active {
  background: #101820;
  color: #ffffff;
  border-color: #101820;
  gap: 8px;
}
/* orange dot inside active chip */
.smth-chip__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FE5000;
  display: inline-block;
  flex-shrink: 0;
}

/* Filter bar (desktop: horizontal band) */
.smth-filters {
  background: #F6F4EF;
  padding: 24px 32px;
  margin-bottom: 40px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media (max-width: 767px) { .smth-filters { display: none; } }

.smth-filters__section-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5A5E63;
  margin-bottom: 12px;
}

/* Sort radio */
.smth-sort-options { display: flex; gap: 16px; }
.smth-sort-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #101820;
  white-space: nowrap;
}
.smth-sort-label input { width: 16px; height: 16px; cursor: pointer; }

/* Filter size pills */
.smth-filter-sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.smth-filter-size {
  background: transparent;
  color: #101820;
  border: 1px solid #E6E3DC;
  padding: 8px 14px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  transition: all 0.2s;
  border-radius: 999px;
}
.smth-filter-size--active {
  background: #101820;
  color: #ffffff;
  border-color: #101820;
}

/* Filter color dots */
.smth-filter-colors { display: flex; flex-wrap: wrap; gap: 12px; }
.smth-filter-color {
  width: 36px;
  height: 36px;
  border: 1px solid #E6E3DC;
  cursor: pointer;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  transition: border 0.2s;
}
.smth-filter-color--active { border: 3px solid #101820; }
.smth-filter-color__inner {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: none;
}
.smth-filter-color--active .smth-filter-color__inner { display: block; }

/* Clear filters */
.smth-clear-filters {
  background: transparent;
  border: 1px solid #E6E3DC;
  color: #101820;
  padding: 10px 20px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  transition: all 0.2s;
  border-radius: 999px;
}
.smth-clear-filters:hover { background: #F6F4EF; }

/* Count text */
.smth-shop__count {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #5A5E63;
  margin-bottom: 24px;
}

/* Mobile filters button */
.smth-filters-mobile-btn {
  background: #101820;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}
.smth-filters-mobile-badge {
  background: #FE5000;
  color: #ffffff;
  font-size: 11px;
  padding: 2px 6px;
  margin-left: 4px;
}

/* Journal grid (from ShopPage) */
.smth-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  grid-auto-flow: dense;
}
@media (max-width: 767px) {
  .smth-grid { grid-template-columns: 1fr; }
}

/* span logic: positions 0,1,5,8 in group of 10 → span 2 */
.smth-grid__item--span2 { grid-column: span 2; }
@media (max-width: 767px) { .smth-grid__item--span2 { grid-column: span 1; } }

/* Pagination */
.smth-pagination {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.smth-page-btn {
  background: transparent;
  color: #101820;
  border: 1px solid #E6E3DC;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.smth-page-btn--active {
  background: #101820;
  color: #ffffff;
  border-color: #101820;
}

/* Mobile filters fullscreen overlay */
.smth-filters-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #ffffff;
  overflow-y: auto;
  padding: 60px 20px 20px;
  display: none;
}
.smth-filters-overlay--open { display: block; }
.smth-filters-overlay__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.smth-filters-overlay__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.smth-filters-overlay__apply {
  background: #101820;
  color: #ffffff;
  border: none;
  padding: 16px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  width: 100%;
  margin-top: 24px;
}

/* ════════════════════════════════════════════════════════════
   PRODUCT PAGE  (from ProductPage.tsx)
   ════════════════════════════════════════════════════════════ */
.smth-product { padding-top: 60px; }

/* Breadcrumb */
.smth-breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #5A5E63;
}
@media (max-width: 767px) { .smth-breadcrumb { font-size: 11px; } }
.smth-breadcrumb__back {
  background: none;
  border: none;
  cursor: pointer;
  color: #5A5E63;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter', sans-serif;
  font-size: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.smth-breadcrumb__back:hover { color: #FE5000; }
.smth-breadcrumb__dot { color: #FE5000; }
.smth-breadcrumb__current { color: #101820; }

/* Main grid */
.smth-product__grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
}
@media (max-width: 767px) {
  .smth-product__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 16px;
  }
}

/* Gallery */
.smth-gallery {}
.smth-gallery__main {
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
}
.smth-gallery__embla { overflow: hidden; }
.smth-gallery__track { display: flex; }
.smth-gallery__slide {
  flex: 0 0 100%;
  min-width: 0;
}
.smth-gallery__slide-inner {
  aspect-ratio: 4/5;
  background: #F6F4EF;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}
.smth-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.smth-gallery__zoom-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.smth-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.smth-gallery__arrow--prev { left: 12px; }
.smth-gallery__arrow--next { right: 12px; }
.smth-gallery__arrow svg { width: 20px; height: 20px; stroke: #101820; fill: none; stroke-width: 2; }

/* Thumbnails (horizontal row below) */
.smth-gallery__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}
.smth-gallery__thumb {
  flex-shrink: 0;
  width: 80px;
  height: 100px;
  border-radius: 6px;
  overflow: hidden;
  /* active: 2px solid #FE5000, inactive: 2px solid transparent */
  border: 2px solid transparent;
  background: #F6F4EF;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.smth-gallery__thumb--active { border-color: #FE5000; }
.smth-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Zoom modal */
.smth-zoom-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(16,24,32,0.95);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.smth-zoom-modal--open { display: flex; }
.smth-zoom-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 301;
}
.smth-zoom-modal img { max-width: 90%; max-height: 90%; object-fit: contain; }

/* Product info panel */
.smth-product__info {
  position: sticky;
  top: 80px;
  align-self: start;
}
@media (max-width: 767px) { .smth-product__info { position: relative; top: 0; } }

.smth-product__meta {
  margin-bottom: 12px;
}
.smth-product__sku {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #9CA3AF;
  margin-bottom: 4px;
}
.smth-product__color-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5A5E63;
}
.smth-product__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #101820;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
@media (max-width: 767px) { .smth-product__name { font-size: 28px; } }

.smth-product__price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.smth-product__price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #101820;
}
.smth-product__price-old {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #9CA3AF;
  text-decoration: line-through;
}
.smth-product__discount-badge {
  background: #FE5000;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
}

.smth-product__description {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #5A5E63;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Size selector */
.smth-product__size-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.smth-product__size-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5A5E63;
}
.smth-product__size-chart-btn {
  background: none;
  border: none;
  color: #FE5000;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: underline;
}
.smth-product__sizes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.smth-size-btn {
  min-width: 52px;
  height: 52px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #E6E3DC;
  background: transparent;
  color: #101820;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.smth-size-btn--active {
  border: 2px solid #101820;
  background: #101820;
  color: #ffffff;
}
.smth-size-btn--unavailable {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Actions */
.smth-product__actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}
/* "В корзину" button */
.smth-btn-cart {
  flex: 1;
  min-height: 56px;
  border-radius: 999px;
  background: #E6E3DC; /* disabled state */
  color: #ffffff;
  border: none;
  cursor: not-allowed;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s;
}
.smth-btn-cart--ready {
  background: #101820;
  cursor: pointer;
}
.smth-btn-cart__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FE5000;
}
/* Wishlist button */
.smth-btn-wish {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #E6E3DC;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.smth-btn-wish svg { width: 20px; height: 20px; }

/* Details section (no tabs — inline) */
.smth-product__details {
  border-top: 1px solid #E6E3DC;
  padding-top: 24px;
}
.smth-product__detail-section { margin-bottom: 24px; }
.smth-product__detail-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5A5E63;
  margin-bottom: 8px;
}
.smth-product__detail-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #101820;
  line-height: 1.6;
}
.smth-product__detail-text--muted { color: #5A5E63; }

/* Care list */
.smth-care-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.smth-care-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.smth-care-item__icon {
  display: flex;
  flex-shrink: 0;
}
.smth-care-item__icon svg { width: 20px; height: 20px; stroke: #101820; fill: none; stroke-width: 1.5; }
.smth-care-item__text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #5A5E63;
}

/* Related products section */
.smth-related {
  background: #F6F4EF;
  padding: 64px 40px;
  margin-top: 40px;
}
@media (max-width: 767px) { .smth-related { padding: 48px 16px; } }
.smth-related__inner { max-width: 1280px; margin: 0 auto; }
.smth-related__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #101820;
  margin-bottom: 32px;
}
@media (max-width: 767px) { .smth-related__title { font-size: 22px; } }

/* Related carousel (Embla) */
.smth-related__embla { overflow: hidden; }
.smth-related__track { display: flex; gap: 16px; }
.smth-related__slide {
  flex: 0 0 calc(50% - 8px);
  min-width: 200px;
  cursor: pointer;
}
.smth-related__img-wrap {
  aspect-ratio: 4/5;
  background: #F6F4EF;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}
.smth-related__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.smth-related__name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #3A4048;
  margin-bottom: 4px;
}
.smth-related__price {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #101820;
}

/* Reviews */
.smth-reviews {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 40px;
}
@media (max-width: 767px) { .smth-reviews { padding: 48px 16px; } }
.smth-reviews__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #101820;
  margin-bottom: 32px;
}
.smth-review { border-bottom: 1px solid #E6E3DC; padding-bottom: 24px; margin-bottom: 24px; }
.smth-review__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.smth-review__author {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #101820;
}
.smth-review__stars { display: flex; gap: 4px; }
.smth-review__star { font-size: 16px; }
.smth-review__star--filled { color: #FE5000; }
.smth-review__star--empty  { color: #E6E3DC; }
.smth-review__meta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #9CA3AF;
  margin-bottom: 8px;
}
.smth-review__text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #5A5E63;
  line-height: 1.6;
}

/* Size chart modal */
.smth-size-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(16,24,32,0.8);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.smth-size-modal--open { display: flex; }
.smth-size-modal__box {
  background: #ffffff;
  border-radius: 10px;
  padding: 40px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
@media (max-width: 767px) { .smth-size-modal__box { padding: 24px; } }
.smth-size-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.smth-size-modal__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #101820;
  margin-bottom: 24px;
}
.smth-size-table { width: 100%; border-collapse: collapse; }
.smth-size-table th {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #101820;
  padding: 12px 8px;
  text-align: left;
  border-bottom: 2px solid #101820;
}
.smth-size-table td {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #5A5E63;
  padding: 12px 8px;
  border-bottom: 1px solid #E6E3DC;
}
.smth-size-table td:first-child { color: #101820; font-weight: 600; }

/* End */
/* /local/templates/smth/styles.css?178224327634503 */
