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

/* ════════════════════════════════════════════════════════════
   HOMEPAGE — pixel-perfect port of HomePage.tsx
════════════════════════════════════════════════════════════ */

/* ── Shared helpers ── */
.hp-dot         { display:inline-block;width:8px;height:8px;border-radius:50%;background:#FE5000;flex-shrink:0; }
.hp-dot--sm     { width:7px;height:7px; }
.hp-dot--xs     { width:6px;height:6px; }
.hp-eyebrow     { font-family:'Inter',sans-serif;font-size:11px;letter-spacing:.22em;text-transform:uppercase;color:#5A5E63;margin:0 0 16px; }
.hp-section-head{ display:flex;align-items:baseline;justify-content:space-between;padding:0 16px;margin-bottom:32px; }
.hp-section-head__title { font-family:'Montserrat',sans-serif;font-weight:700;font-size:24px;color:#101820;margin:0; }
.hp-section-head__link  { display:flex;align-items:center;gap:5px;font-family:'Inter',sans-serif;font-size:13px;font-weight:500;letter-spacing:.07em;text-transform:uppercase;color:#101820;text-decoration:none;transition:color .2s; }
.hp-section-head__link:hover { color:#FE5000; }

/* Fade-in animation */
.hp-fade                 { opacity:0;transform:translateY(28px);transition:opacity .65s ease,transform .65s ease; }
.hp-fade.hp-fade--in     { opacity:1;transform:none; }

/* ── Hero ── */
.hp-hero            { position:relative;height:100svh;min-height:560px;display:flex;align-items:flex-end;overflow:hidden;background:#101820; }
.hp-hero__img       { position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.6; }
.hp-hero__inner     { position:relative;z-index:2;width:100%;max-width:1280px;margin:0 auto;padding:0 16px 64px; }
.hp-hero__h1        { font-family:'Montserrat',sans-serif;font-weight:800;color:#fff;font-size:clamp(2.2rem,6.5vw,5rem);letter-spacing:-.025em;line-height:1.1;max-width:680px;margin:0 0 32px; }
.hp-hero__dot       { display:inline-block;width:12px;height:12px;border-radius:50%;background:#FE5000;margin-left:10px;vertical-align:middle; }
.hp-hero__btn       { display:inline-flex;align-items:center;gap:10px;background:#101820;color:#fff;text-decoration:none;padding:15px 32px;border-radius:999px;font-family:'Montserrat',sans-serif;font-size:14px;font-weight:600;letter-spacing:.05em;transition:background .22s;min-height:50px; }
.hp-hero__btn:hover { background:#E04600; }

/* ── Manifest ── */
.hp-manifest        { background:#fff;padding:72px 16px;text-align:center; }
.hp-manifest__h2    { font-family:'Montserrat',sans-serif;font-weight:800;color:#101820;font-size:clamp(1.9rem,5vw,3.2rem);letter-spacing:-.025em;line-height:1.15;margin:0 0 24px; }
.hp-manifest__text  { font-family:'Inter',sans-serif;font-size:17px;color:#5A5E63;line-height:1.8;max-width:600px;margin:0 auto; }

/* ── Three banners ── */
.hp-banners         { max-width:1280px;margin:0 auto;padding:0 16px 72px; }
.hp-banners__grid   { display:flex;gap:12px; }
.hp-banner          { flex:1;position:relative;aspect-ratio:3/4;border-radius:10px;overflow:hidden;cursor:pointer;background:#F6F4EF;min-width:0;text-decoration:none; }
.hp-banner__img     { width:100%;height:100%;object-fit:cover;transition:transform .5s; }
.hp-banner:hover .hp-banner__img { transform:scale(1.04); }
.hp-banner__overlay { position:absolute;inset:0;background:linear-gradient(to top,rgba(16,24,32,.6) 0%,transparent 55%); }
.hp-banner__body    { position:absolute;bottom:0;left:0;right:0;padding:20px 20px 24px;display:flex;align-items:flex-end;justify-content:space-between; }
.hp-banner__num     { font-family:'Inter',sans-serif;font-size:10px;letter-spacing:.18em;text-transform:uppercase;color:rgba(255,255,255,.6);margin:0 0 6px; }
.hp-banner__label   { font-family:'Montserrat',sans-serif;font-weight:700;font-size:18px;color:#fff;line-height:1.2;margin:0; }
.hp-banner__arrow   { width:36px;height:36px;border-radius:50%;border:1.5px solid rgba(255,255,255,.5);display:flex;align-items:center;justify-content:center;flex-shrink:0; }

/* ── Featured / Новинки ── */
.hp-featured        { background:#F6F4EF;padding:64px 0 72px; }
.hp-featured__inner { max-width:1280px;margin:0 auto; }
.hp-products-scroll { display:flex;gap:16px;overflow-x:auto;padding:0 16px;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;scrollbar-width:none; }
.hp-products-scroll::-webkit-scrollbar { display:none; }
.hp-product-snap    { scroll-snap-align:start;flex-shrink:0;width:min(72vw,280px); }
.hp-card            { display:block;text-decoration:none;cursor:pointer; }
.hp-card__img-wrap  { aspect-ratio:4/5;border-radius:10px;overflow:hidden;background:#E7DECF;margin-bottom:14px; }
.hp-card__img       { width:100%;height:100%;object-fit:cover;transition:opacity .4s,transform .5s; }
.hp-card:hover .hp-card__img { transform:scale(1.04); }
.hp-card__img-placeholder { width:100%;height:100%; }
.hp-card__body      { display:flex;align-items:center;justify-content:space-between; }
.hp-card__name      { font-family:'Inter',sans-serif;font-size:14px;color:#3A4048;margin:0 0 3px; }
.hp-card__price     { font-family:'Montserrat',sans-serif;font-size:15px;font-weight:600;color:#101820;margin:0; }

/* ── Journal / Лукбук ── */
.hp-journal         { padding:72px 0; }
.hp-journal__inner  { max-width:1280px;margin:0 auto;padding:0 16px; }
.hp-journal__grid   { display:grid;grid-template-columns:1fr 1fr;grid-template-rows:auto auto;gap:12px; }
.hp-journal__card         { position:relative;border-radius:10px;background:#F6F4EF;overflow:visible; }
.hp-journal__card--tall   { grid-row:1/3; }
.hp-journal__img-clip     { position:absolute;inset:0;border-radius:10px;overflow:hidden; }
.hp-journal__img          { width:100%;height:100%;object-fit:cover;transition:transform .5s;cursor:pointer;display:block; }
.hp-journal__img:hover    { transform:scale(1.03); }
.hp-journal__card--tall   { min-height:420px; }
.hp-journal__card:not(.hp-journal__card--tall) { aspect-ratio:4/3; }
.hp-journal__caption      { position:absolute;bottom:0;left:0;right:0;padding:20px;background:linear-gradient(to top,rgba(16,24,32,.7),transparent);pointer-events:none; }
.hp-journal__caption-title{ font-family:'Montserrat',sans-serif;font-weight:700;font-size:17px;color:#fff;margin:0 0 4px; }
.hp-journal__caption-sub  { font-family:'Inter',sans-serif;font-size:12px;color:rgba(255,255,255,.6);margin:0; }

/* Hotspots */
.hp-hotspot         { position:absolute;transform:translate(-50%,-50%);z-index:15; }
.hp-hotspot__btn    { width:30px;height:30px;border-radius:50%;background:rgba(254,80,0,.92);border:2.5px solid rgba(255,255,255,.75);cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 12px rgba(0,0,0,.22);transition:transform .15s;padding:0; }
.hp-hotspot__btn span { color:#fff;font-size:17px;font-weight:700;line-height:1;margin-top:-1px; }
.hp-hotspot__btn--open,
.hp-hotspot__btn:hover { transform:scale(1.15); }
.hp-hotspot__popup  { display:none;position:absolute;bottom:40px;left:0;background:#fff;border-radius:10px;padding:14px 16px;box-shadow:0 4px 24px rgba(16,24,32,.18);min-width:192px;z-index:20; }
.hp-hotspot--flip .hp-hotspot__popup { left:auto;right:0; }
.hp-hotspot__popup--open { display:block; }
.hp-hotspot__name   { font-family:'Inter',sans-serif;font-size:13px;color:#3A4048;margin:0 0 3px;padding-right:16px;line-height:1.35; }
.hp-hotspot__price  { font-family:'Montserrat',sans-serif;font-weight:700;font-size:15px;color:#101820;margin:0 0 12px; }
.hp-hotspot__cta    { display:inline-flex;align-items:center;gap:7px;background:#101820;color:#fff;border-radius:999px;padding:8px 16px;text-decoration:none;font-family:'Montserrat',sans-serif;font-size:12px;font-weight:600;min-height:36px;transition:background .2s; }
.hp-hotspot__cta:hover { background:#E04600; }

/* ── Video ── */
.hp-video           { position:relative;background:#101820;overflow:hidden; }
.hp-video__wrap     { position:relative;aspect-ratio:16/9;min-height:280px; }
.hp-video__el       { position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;cursor:pointer; }
.hp-video__overlay  { position:absolute;inset:0;background:rgba(16,24,32,.45);display:flex;flex-direction:column;align-items:center;justify-content:center;padding:0 24px;text-align:center;cursor:pointer;transition:opacity .4s; }
.hp-video--playing .hp-video__overlay { opacity:0;pointer-events:none; }
.hp-video__title    { font-family:'Montserrat',sans-serif;font-weight:800;color:#fff;font-size:clamp(1.6rem,4.5vw,3rem);letter-spacing:-.02em;line-height:1.15;margin:0; }

/* ── Benefits ── */
.hp-benefits__inner { max-width:1280px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:32px; }
.hp-benefit         { border-top:2px solid #E6E3DC;padding-top:24px; }
.hp-benefit__head   { display:flex;align-items:center;gap:10px;margin-bottom:14px; }
.hp-benefit__title  { font-family:'Montserrat',sans-serif;font-weight:700;color:#101820;font-size:16px;margin:0; }
.hp-benefit__desc   { font-family:'Inter',sans-serif;font-size:14px;color:#5A5E63;line-height:1.75;margin:0; }

/* ── Reviews ── */
.hp-reviews         { background:#101820;padding:80px 0; }
.hp-reviews__inner  { max-width:1280px;margin:0 auto; }
.hp-reviews__title  { font-family:'Montserrat',sans-serif;font-weight:800;color:#fff;font-size:clamp(1.6rem,4vw,2.6rem);margin:0; }
.hp-reviews__grid   { display:grid;grid-template-columns:repeat(3,1fr);gap:20px;padding:0 16px;margin-bottom:32px; }
.hp-review          { background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:12px;padding:28px;cursor:pointer;transition:all .25s; }
.hp-review--active  { background:rgba(254,80,0,.08);border-color:rgba(254,80,0,.3); }
.hp-review__stars   { display:flex;gap:3px;margin-bottom:16px; }
.hp-review__text    { font-family:'Inter',sans-serif;font-size:15px;color:#fff;line-height:1.75;margin:0 0 20px;font-style:italic; }
.hp-review__author  { display:flex;align-items:center;gap:10px; }
.hp-review__avatar  { width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;flex-shrink:0;font-family:'Montserrat',sans-serif;font-weight:700;font-size:13px;color:#fff; }
.hp-review__name    { font-family:'Montserrat',sans-serif;font-weight:600;font-size:13px;color:#fff;margin:0; }
.hp-review__meta    { font-family:'Inter',sans-serif;font-size:11px;color:#5A5E63;margin:0; }
.hp-reviews__dots   { display:flex;gap:8px;justify-content:center; }
.hp-reviews__dot         { width:8px;height:8px;border-radius:999px;background:rgba(255,255,255,.2);border:none;cursor:pointer;padding:0;transition:all .3s; }
.hp-reviews__dot--active { width:24px;background:#FE5000; }

/* ── Subscribe ── */
.hp-subscribe       { background:#fff;padding:72px 16px;border-top:1px solid #E6E3DC;text-align:center; }
.hp-subscribe__title{ font-family:'Montserrat',sans-serif;font-weight:800;color:#101820;font-size:clamp(1.6rem,4vw,2.4rem);letter-spacing:-.02em;line-height:1.2;margin:0 0 12px; }
.hp-subscribe__desc { font-family:'Inter',sans-serif;font-size:15px;color:#5A5E63;line-height:1.7;margin:0 0 36px; }
.hp-subscribe__form { display:flex;gap:8px;max-width:440px;margin:0 auto 32px; }
.hp-subscribe__input{ flex:1;height:50px;border:1px solid #E6E3DC;border-radius:8px;padding:0 14px;font-family:'Inter',sans-serif;font-size:15px;color:#101820;outline:none;background:#fff;transition:border-color .2s; }
.hp-subscribe__input:focus { border-color:#FE5000; }
.hp-subscribe__submit { height:50px;width:50px;border-radius:8px;background:#101820;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:background .2s; }
.hp-subscribe__submit:hover { background:#E04600; }
.hp-subscribe__success { display:flex;align-items:center;gap:10px;padding:16px 24px;background:#F6F4EF;border-radius:10px;font-family:'Inter',sans-serif;font-size:15px;color:#101820;max-width:440px;margin:0 auto 32px; }
.hp-subscribe__or   { display:flex;align-items:center;gap:12px;justify-content:center;margin-bottom:20px; }
.hp-subscribe__line { flex:1;height:1px;background:#E6E3DC;max-width:80px; }
.hp-subscribe__or-text { font-family:'Inter',sans-serif;font-size:12px;color:#CFC3B2;letter-spacing:.08em; }
.hp-subscribe__tg   { display:inline-flex;align-items:center;gap:10px;background:#101820;color:#fff;padding:13px 28px;border-radius:999px;text-decoration:none;font-family:'Montserrat',sans-serif;font-size:14px;font-weight:600;letter-spacing:.04em;transition:background .2s; }
.hp-subscribe__tg:hover { background:#0088cc; }

/* ── Responsive ── */
@media(max-width:768px){
    .hp-banners__grid { flex-direction:column; }
    .hp-banner        { aspect-ratio:4/3; }
    .hp-journal__grid { grid-template-columns:1fr;grid-template-rows:auto; }
    .hp-journal__card--tall { min-height:280px;grid-row:auto; }
    .hp-journal__card:not(.hp-journal__card--tall) { aspect-ratio:4/3;position:relative; }
    .hp-reviews__grid { grid-template-columns:1fr;gap:12px; }
    .hp-video__wrap   { aspect-ratio:1/1; }
    .hp-subscribe__form { flex-direction:column; }
    .hp-subscribe__submit { width:100%;height:50px; }
}
