

/* Start:/local/templates/smth/styles.css?178224114311275*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --color-accent:  #FE5000;
  --color-hover:   #E04600;
  --color-ink:     #101820;
  --color-text:    #3A4048;
  --color-muted:   #5A5E63;
  --color-surface: #F6F4EF;
  --color-border:  #E6E3DC;
  --color-sand:    #E7DECF;
  --r-sm:  6px;
  --r-md:  10px;
  --r-pill: 999px;
  --shadow-card: 0 4px 24px rgba(16,24,32,0.08);
  --container: 1280px;
  --font-head: 'Montserrat', Arial, sans-serif;
  --font-body: 'Inter', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1024px) { .container { padding: 0 40px; } }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  height: 64px;
  display: flex;
  align-items: center;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.site-header__logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-ink);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.site-header__logo span { color: var(--color-accent); }

/* Desktop nav */
.site-header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .site-header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
.site-header__nav a {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}
.site-header__nav a:hover,
.site-header__nav a.active { color: var(--color-accent); }

/* Mega-menu */
.mega-menu {
  position: absolute;
  top: 64px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 32px 40px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  box-shadow: 0 8px 32px rgba(16,24,32,0.08);
}
.mega-menu.is-open { display: grid; }
.mega-menu__col-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 12px;
}
.mega-menu__links { display: flex; flex-direction: column; gap: 8px; }
.mega-menu__links a {
  font-size: 15px;
  color: var(--color-ink);
  transition: color 0.15s;
}
.mega-menu__links a:hover { color: var(--color-accent); }

/* Header icons */
.site-header__icons {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-icon {
  position: relative;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  color: var(--color-ink);
  transition: background 0.15s;
}
.header-icon:hover { background: var(--color-surface); }
.header-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.header-icon__badge {
  position: absolute;
  top: 4px; right: 4px;
  width: 16px; height: 16px;
  background: var(--color-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
}

/* Burger */
.header-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
@media (min-width: 1024px) { .header-burger { display: none; } }
.header-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: all 0.25s;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16,24,32,0.4);
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-drawer__panel {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: min(340px, 90vw);
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  overflow-y: auto;
}
.mobile-drawer.is-open { pointer-events: all; }
.mobile-drawer.is-open .mobile-drawer__backdrop { opacity: 1; }
.mobile-drawer.is-open .mobile-drawer__panel { transform: none; }

.mobile-drawer__close {
  align-self: flex-end;
  padding: 8px;
  color: var(--color-ink);
}
.mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 24px;
}
.mobile-drawer__nav a {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-ink);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}
.mobile-drawer__subnav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0 8px 16px;
}
.mobile-drawer__subnav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  padding: 4px 0;
  border-bottom: none;
}

/* Page body offset */
.page-body { padding-top: 64px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--color-ink);
  color: #fff;
  padding: 56px 0 32px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
}
.site-footer__logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.site-footer__logo span { color: var(--color-accent); }
.site-footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.site-footer__made {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
}
.site-footer__socials {
  display: flex;
  gap: 12px;
}
.site-footer__socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.15s;
}
.site-footer__socials a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.site-footer__col-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.site-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer__col-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.15s;
}
.site-footer__col-links a:hover { color: #fff; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.site-footer__bottom-links {
  display: flex;
  gap: 20px;
}
.site-footer__bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color 0.15s;
}
.site-footer__bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--r-pill);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover { background: var(--color-hover); }
.btn-outline {
  background: transparent;
  color: var(--color-ink);
  border: 1.5px solid var(--color-ink);
}
.btn-outline:hover {
  background: var(--color-ink);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--color-ink);
}
.btn-ghost:hover { background: var(--color-surface); }

/* ── PRODUCT CARD ── */
.product-card {
  display: flex;
  flex-direction: column;
}
.product-card__img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--color-surface);
  margin-bottom: 12px;
}
.product-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card__img-wrap:hover .product-card__img { transform: scale(1.04); }
.product-card__tags {
  position: absolute;
  top: 10px; left: 10px;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.product-card__tag {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--r-pill);
}
.tag-new { background: var(--color-ink); color: #fff; }
.tag-sale { background: var(--color-accent); color: #fff; }
.tag-limited { background: var(--color-muted); color: #fff; }
.product-card__wish {
  position: absolute;
  top: 8px; right: 8px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-ink);
  transition: all 0.2s;
}
.product-card__wish:hover,
.product-card__wish.is-active { color: var(--color-accent); }
.product-card__wish svg { width: 16px; height: 16px; }
.product-card__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: 4px;
}
.product-card__color { color: var(--color-muted); }
.product-card__prices {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.product-card__price {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-ink);
}
.product-card__price-old {
  font-size: 13px;
  color: var(--color-muted);
  text-decoration: line-through;
}
.product-card__colors {
  display: flex; gap: 4px; margin-bottom: 8px;
}
.product-card__color-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: border-color 0.15s;
}
.product-card__color-dot.active,
.product-card__color-dot:hover { border-color: var(--color-ink); }
.product-card__sizes {
  display: flex; gap: 4px; flex-wrap: wrap;
}
.product-card__size {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-muted);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 2px 6px;
}

/* ── UTILITIES ── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

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