/* ===== ALOTECH COSMETICS - STYLES ===== */
/* Pixel-perfect replica of rembeauty.com */

@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

@font-face {
  font-family: 'GTStandard-M';
  src: url('https://cdn.shopify.com/shop-assets/static_uploads/shoplift/GTStandard-MRegular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --color-body: #E7E7E7;
  --color-text: #202020;
  --color-white: #ffffff;
  --color-black: #202020;
  --color-btn-bg: #202020;
  --color-btn-text: #ffffff;
  --color-card-bg: #ffffff;
  --color-announcement: #d9d3e6;
  --color-border: #e0e0e0;
  --font-main: 'Space Grotesk', 'Helvetica Neue', Helvetica, sans-serif;
  --font-heading: 'GTStandard-M', 'Space Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --radius-card: 6px;
  --radius-btn: 100px;
  --transition: 0.25s ease;
}

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

body {
  background-color: var(--color-body);
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition);
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Prevent iOS auto-zoom on input focus (requires >= 16px) */
@media screen and (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="search"],
  input[type="url"],
  input[type="number"],
  textarea,
  select {
    font-size: 16px !important;
  }
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background-color: var(--color-announcement);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(32,32,32,0.1);
}

.announcement-bar__track {
  display: flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.announcement-bar__item {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-main);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--color-white);
  border-bottom: 1px solid rgba(32,32,32,0.08);
  transition: background var(--transition);
}

.site-header.transparent {
  background: transparent;
  border-bottom: none;
  position: fixed;
  top: 0;
  width: 100%;
}

.site-header.transparent .nav__link,
.site-header.transparent .header-icons__link {
  color: var(--color-white);
}

.site-header.transparent .site-logo__text {
  color: var(--color-white);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 72px;
  max-width: 1600px;
  margin: 0 auto;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.site-logo__img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.site-logo__text {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-text);
}

/* Navigation */
.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav__list {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav__link {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-main);
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding-bottom: 2px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--transition);
}

.nav__link:hover::after {
  width: 100%;
  opacity: 1;
}

.nav__link:hover {
  opacity: 1;
}

/* Dropdown */
.nav__item {
  position: relative;
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  border-radius: 8px;
  padding: 16px 0;
  min-width: 180px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 300;
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav__dropdown-link {
  display: block;
  padding: 10px 24px;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text);
}

.nav__dropdown-link:hover {
  background: var(--color-body);
  opacity: 1;
}

/* Header Icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.header-icons__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--color-text);
  transition: opacity var(--transition);
}

.header-icons__link svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.cart-count {
  position: relative;
}

.cart-count__badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(30%, -30%);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 680px;
  color: var(--color-white);
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.85;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  font-weight: 400;
}

.hero__subtitle {
  font-size: 14px;
  letter-spacing: 0.05em;
  opacity: 0.9;
  margin-bottom: 36px;
  line-height: 1.6;
  max-width: 400px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-main);
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-btn-bg);
  color: var(--color-btn-text);
  border-color: var(--color-btn-bg);
}

.btn--primary:hover {
  background: transparent;
  color: var(--color-btn-bg);
  opacity: 1;
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-black);
  opacity: 1;
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}

.btn--outline-dark:hover {
  background: var(--color-text);
  color: var(--color-white);
  opacity: 1;
}

.btn--full {
  width: 100%;
  padding: 20px;
  font-size: 13px;
  height: 57px;
}

/* ===== SECTION HEADERS ===== */
.section {
  padding: 80px 32px;
  max-width: 1600px;
  margin: 0 auto;
}

.section--full {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.section__link {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

/* ===== PRODUCT CARD ===== */
.product-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f5f5;
}

/* Ensure product image anchor fills the media container */
.product-card__media > a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.product-card__media > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__media > a img {
  transform: scale(1.04);
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__img {
  transform: scale(1.04);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-white);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.product-card__info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card__name {
  font-family: var(--font-main);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.3;
}

.product-card__variant {
  font-size: 12px;
  color: #666;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}

.product-card__swatches {
  display: flex;
  gap: 6px;
  margin-top: 2px;
}

.swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
}

.swatch:hover, .swatch.active {
  border-color: var(--color-text);
}

.product-card__price {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.product-card__footer {
  padding: 0 16px 16px;
}

.product-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 57px;
  background: var(--color-btn-bg);
  color: var(--color-btn-text);
  border-radius: var(--radius-btn);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
  border: 1.5px solid var(--color-btn-bg);
  cursor: pointer;
}

.product-card__btn:hover {
  background: transparent;
  color: var(--color-btn-bg);
}

/* ===== FEATURE BAND ===== */
.feature-band {
  background: var(--color-text);
  color: var(--color-white);
  overflow: hidden;
  padding: 16px 0;
}

.feature-band__track {
  display: flex;
  gap: 48px;
  animation: marquee 20s linear infinite;
  width: max-content;
  white-space: nowrap;
}

.feature-band__item {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.02em;
  font-weight: 400;
}

/* ===== SPLIT SECTION (About/Vision) ===== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.split-section__media {
  overflow: hidden;
}

.split-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-section__content {
  background: var(--color-text);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}

.split-section__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.7;
}

.split-section__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
}

.split-section__text {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 40px;
  max-width: 480px;
}

/* ===== CATEGORIES STRIP ===== */
.categories-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 32px 80px;
  max-width: 1600px;
  margin: 0 auto;
}

.category-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}

.category-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover .category-card__img {
  transform: scale(1.05);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 50%);
}

.category-card__label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ===== INSTAGRAM / SHOP THE FEED ===== */
.shop-feed {
  padding: 60px 32px;
  max-width: 1600px;
  margin: 0 auto;
}

.shop-feed__header {
  text-align: center;
  margin-bottom: 32px;
}

.shop-feed__handle {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0.6;
}

.shop-feed__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.feed-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 4px;
}

.feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feed-item:hover img {
  transform: scale(1.08);
}

/* ===== BADGES BAR ===== */
.badges-bar {
  padding: 40px 32px;
  max-width: 1600px;
  margin: 0 auto;
}

.badges-list {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.badge-item__icon {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--color-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-item__icon svg {
  width: 24px;
  height: 24px;
}

.badge-item__label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-text);
  color: var(--color-white);
  padding: 80px 32px 40px;
}

.footer__inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer__newsletter-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.footer__newsletter-text {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.75;
  margin-bottom: 24px;
  max-width: 360px;
}

.footer__form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-btn);
  overflow: hidden;
  max-width: 380px;
}

.footer__input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 20px;
  color: var(--color-white);
  font-size: 13px;
  outline: none;
}

.footer__input::placeholder {
  color: rgba(255,255,255,0.5);
}

.footer__submit {
  padding: 14px 24px;
  background: var(--color-white);
  color: var(--color-text);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 100px;
  margin: 4px;
  cursor: pointer;
  border: none;
  font-family: var(--font-main);
  transition: background var(--transition);
}

.footer__submit:hover {
  background: rgba(255,255,255,0.85);
}

.footer__terms {
  font-size: 11px;
  opacity: 0.5;
  margin-top: 12px;
}

.footer__col-title {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0.6;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 14px;
  color: var(--color-white);
  opacity: 0.75;
  transition: opacity var(--transition);
  text-transform: capitalize;
  letter-spacing: 0.02em;
}

.footer__link:hover {
  opacity: 1;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__legal-link {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer__legal-link:hover {
  color: var(--color-white);
  opacity: 1;
}

.footer__copyright {
  font-size: 12px;
  opacity: 0.45;
}

/* ===== CART DRAWER ===== */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  height: 100vh;
  background: var(--color-white);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 40px rgba(0,0,0,0.15);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--color-border);
}

.cart-drawer__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
}

.cart-drawer__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}

.cart-drawer__close:hover {
  background: var(--color-body);
}

.cart-drawer__close svg {
  width: 18px;
  height: 18px;
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 28px;
}
.cart-drawer__body ::-webkit-scrollbar { height: 4px; }
.cart-drawer__body ::-webkit-scrollbar-track { background: #f0f0f0; border-radius: 4px; }
.cart-drawer__body ::-webkit-scrollbar-thumb { background: #c0c0c0; border-radius: 4px; }

.cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 300px;
  gap: 16px;
  text-align: center;
}

.cart-drawer__empty-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
}

.cart-drawer__empty-text {
  font-size: 14px;
  opacity: 0.6;
}

.cart-drawer__footer {
  padding: 24px 28px;
  border-top: 1px solid var(--color-border);
}

.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 600;
}

/* ===== OVERLAY ===== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-white);
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 32px 40px;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav__link {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: var(--color-text);
}

/* ===== PAGE: COLLECTIONS ===== */
.collection-page {
  padding: 60px 32px 80px;
  max-width: 1600px;
  margin: 0 auto;
}

.collection-page__header {
  margin-bottom: 48px;
}

.collection-page__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 400;
  line-height: 1.0;
}

.collection-page__desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 560px;
  margin-top: 16px;
  opacity: 0.75;
}

.filter-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 10px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--color-text);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-main);
  font-weight: 500;
  background: transparent;
  color: var(--color-text);
}

.filter-pill.active, .filter-pill:hover {
  background: var(--color-text);
  color: var(--color-white);
}

/* ===== PAGE: PRODUCT DETAIL ===== */
.product-detail {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: calc(100vh - 72px);
}

.product-gallery {
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  overflow: hidden;
  background: #f5f5f5;
}

.product-gallery__main {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__thumbs {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-gallery__thumb {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}

.product-gallery__thumb.active {
  border-color: var(--color-text);
}

.product-info {
  padding: 60px 60px 80px;
  overflow-y: auto;
}

.product-info__breadcrumb {
  font-size: 12px;
  opacity: 0.5;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.product-info__name {
  font-family: var(--font-heading);
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 8px;
}

.product-info__variant {
  font-size: 14px;
  opacity: 0.6;
  margin-bottom: 20px;
}

.product-info__price {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 32px;
}

.product-info__label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.product-info__swatches {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.swatch-lg {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}

.swatch-lg:hover, .swatch-lg.active {
  border-color: var(--color-text);
}

.product-info__atc {
  margin-bottom: 24px;
}

.product-info__description {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.8;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.product-accordion {
  margin-top: 24px;
  border-top: 1px solid var(--color-border);
}

.accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-main);
  color: var(--color-text);
}

.accordion-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  transition: transform var(--transition);
}

.accordion-btn.open svg {
  transform: rotate(45deg);
}

.accordion-content {
  display: none;
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.75;
}

.accordion-content.open {
  display: block;
}

/* ===== PAGE: FAQ ===== */
.faq-page {
  padding: 60px 32px 100px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 40px;
  opacity: 0.5;
}

.faq-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0;
}

.faq-tab {
  padding: 12px 24px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  color: rgba(32,32,32,0.5);
  transition: all var(--transition);
}

.faq-tab.active, .faq-tab:hover {
  color: var(--color-text);
  border-bottom-color: var(--color-text);
}

.faq-section-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 16px;
  margin-top: 56px;
}

.faq-section-title:first-child {
  margin-top: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-main);
  color: var(--color-text);
  font-weight: 500;
}

.faq-question svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform var(--transition);
}

.faq-question.open svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.75;
}

.faq-answer.open {
  display: block;
}

/* ===== PAGE: CONTACT ===== */
.contact-page {
  padding: 80px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info__title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 32px;
}

.contact-info__item {
  margin-bottom: 24px;
}

.contact-info__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.5;
  margin-bottom: 6px;
}

.contact-info__value {
  font-size: 15px;
  line-height: 1.5;
}

.contact-form__title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--color-text);
  transition: border-color var(--transition);
  font-family: var(--font-main);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-text);
}

.form-textarea {
  height: 140px;
  resize: vertical;
}

/* ===== PAGE: ABOUT ===== */
.about-hero {
  height: 70vh;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 80px;
  overflow: hidden;
}

.about-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.about-hero__content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
}

.about-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 96px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.about-content {
  padding: 80px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.value-card {
  padding: 40px;
  background: var(--color-white);
  border-radius: var(--radius-card);
}

.value-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  opacity: 0.4;
  margin-bottom: 16px;
}

.value-card__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
}

.value-card__text {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.7;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  opacity: 0.5;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.breadcrumb__sep {
  opacity: 0.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .shop-feed__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .header__inner {
    padding: 0 20px;
  }

  .site-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero__content {
    padding: 0 40px;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .split-section__content {
    padding: 60px 40px;
  }

  .categories-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px 60px;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: relative;
    top: 0;
    height: 70vw;
    max-height: 600px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 20px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero__content {
    padding: 0 24px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .collection-page {
    padding: 40px 20px 60px;
  }

  .product-info {
    padding: 40px 24px 60px;
  }

  .contact-page {
    padding: 48px 20px;
  }

  .faq-page {
    padding: 48px 20px 80px;
  }

  .about-hero {
    padding: 40px 24px;
  }

  .shop-feed__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-band__item {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .cart-drawer {
    width: 100vw;
  }

  .categories-strip {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .filter-bar {
    gap: 8px;
  }

  .filter-pill {
    padding: 8px 16px;
    font-size: 11px;
  }
}

/* ===== PHONE-FIRST OPTIMIZATIONS ===== */

/* iOS safe area support (notch / home indicator) */
@supports (padding: env(safe-area-inset-bottom)) {
  .site-header {
    padding-top: env(safe-area-inset-top);
  }
  .cart-drawer,
  .mobile-menu {
    padding-bottom: calc(env(safe-area-inset-bottom) + 16px);
  }
  .site-footer {
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 430px) {
  /* ---- HEADER ---- */
  .site-header {
    position: sticky;
    top: 0;
  }
  .header__inner {
    height: 60px;
    padding: 0 16px;
  }
  .site-logo__text {
    font-size: 11px;
    letter-spacing: 0.08em;
  }
  .site-logo__img {
    height: 38px;
    width: auto;
  }
  .header-icons {
    gap: 4px;
  }
  .header-icons__link {
    width: 44px;
    height: 44px;
  }

  /* ---- ANNOUNCEMENT BAR ---- */
  .announcement-bar {
    padding: 7px 0;
  }
  .announcement-bar__item {
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  /* ---- HERO ---- */
  .hero {
    height: 100svh; /* svh = small viewport height — stays correct on iOS */
    min-height: 560px;
    align-items: flex-end;
    padding-bottom: 60px;
  }
  .hero__content {
    padding: 0 20px;
    max-width: 100%;
  }
  .hero__eyebrow {
    font-size: 10px;
    margin-bottom: 10px;
  }
  .hero__title {
    font-size: 36px;
    margin-bottom: 16px;
  }
  .hero__subtitle {
    font-size: 13px;
    margin-bottom: 28px;
  }
  .hero__actions {
    flex-direction: row;
    gap: 10px;
  }
  .hero__actions .btn {
    padding: 12px 20px;
    font-size: 11px;
    flex: 1;
    text-align: center;
    justify-content: center;
  }

  /* ---- FEATURE BAND ---- */
  .feature-band__item {
    font-size: 15px;
  }
  .feature-band {
    padding: 12px 0;
  }

  /* ---- SECTION HEADERS ---- */
  .section {
    padding: 48px 16px;
  }
  .section__header {
    margin-bottom: 24px;
  }
  .section__title {
    font-size: 26px;
  }

  /* ---- PRODUCT GRID & CARDS ---- */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .product-card__info {
    padding: 12px 10px 6px;
    gap: 5px;
  }
  .product-card__name {
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .product-card__variant {
    font-size: 10px;
  }
  .product-card__price {
    font-size: 12px;
  }
  .product-card__footer {
    padding: 0 10px 12px;
  }
  .product-card__btn {
    height: 46px;
    font-size: 11px;
    letter-spacing: 0.06em;
    padding: 12px 8px;
  }
  .swatch {
    width: 16px;
    height: 16px;
  }
  .product-card__badge {
    padding: 3px 8px;
    font-size: 9px;
    top: 8px;
    left: 8px;
  }

  /* ---- CATEGORIES ---- */
  .categories-strip,
  section > div[style*="grid-template-columns:repeat(4,1fr)"],
  section > div[style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  .category-card {
    aspect-ratio: 4 / 5;
  }
  .category-card__label {
    font-size: 18px;
    bottom: 16px;
    left: 16px;
  }

  /* ---- SPLIT SECTION ---- */
  .split-section {
    grid-template-columns: 1fr;
  }
  .split-section__media {
    height: 280px;
  }
  .split-section__img {
    height: 280px;
  }
  .split-section__content {
    padding: 48px 20px;
  }
  .split-section__title {
    font-size: 30px;
  }

  /* ---- SHOP FEED ---- */
  .shop-feed {
    padding: 48px 16px;
  }
  .shop-feed__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }

  /* ---- BADGES BAR ---- */
  .badges-bar {
    padding: 32px 16px;
  }
  .badges-list {
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
  }
  .badge-item__icon {
    width: 40px;
    height: 40px;
  }
  .badge-item__label {
    font-size: 9px;
    text-align: center;
  }

  /* ---- CART DRAWER ---- */
  .cart-drawer {
    width: 100vw;
    border-radius: 0;
  }
  .cart-drawer__header {
    padding: 20px;
  }
  .cart-drawer__body {
    padding: 20px;
  }
  .cart-drawer__footer {
    padding: 16px 20px;
  }

  /* ---- MOBILE MENU ---- */
  .mobile-menu {
    padding: 72px 24px 40px;
  }
  .mobile-nav__link {
    font-size: 24px;
  }
  .mobile-nav__list {
    gap: 20px;
  }

  /* ---- COLLECTION PAGE ---- */
  .collection-page {
    padding: 32px 16px 60px;
  }
  .collection-page__title {
    font-size: 32px;
  }
  .collection-page__desc {
    font-size: 13px;
    margin-top: 10px;
  }
  .filter-bar {
    gap: 6px;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .filter-bar::-webkit-scrollbar {
    display: none;
  }
  .filter-pill {
    flex-shrink: 0;
    padding: 8px 14px;
    font-size: 10px;
    white-space: nowrap;
  }

  /* ---- FAQ PAGE ---- */
  .faq-page {
    padding: 32px 16px 72px;
  }
  .faq-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 40px;
    gap: 0;
  }
  .faq-tabs::-webkit-scrollbar {
    display: none;
  }
  .faq-tab {
    flex-shrink: 0;
    padding: 10px 14px;
    font-size: 11px;
    white-space: nowrap;
  }
  .faq-question {
    font-size: 13px;
    padding: 16px 0;
  }
  .faq-section-title {
    font-size: 20px;
    margin-top: 40px;
  }

  /* ---- CONTACT PAGE ---- */
  .contact-page {
    padding: 32px 16px 72px;
  }
  .contact-info__title {
    font-size: 30px;
  }
  .contact-grid {
    gap: 40px;
  }
  .form-input,
  .form-textarea,
  .form-select {
    font-size: 16px; /* Prevents iOS auto-zoom on focus */
  }

  /* ---- ABOUT PAGE ---- */
  .about-hero {
    height: 60svh;
    min-height: 400px;
    padding: 24px 20px;
  }
  .about-hero__title {
    font-size: 52px;
  }
  .about-content {
    padding: 48px 16px;
  }
  .about-values {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 48px;
  }
  .value-card {
    padding: 28px 24px;
  }

  /* ---- FOOTER ---- */
  .site-footer {
    padding: 56px 16px 32px;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__newsletter-title {
    font-size: 22px;
  }
  .footer__form {
    max-width: 100%;
  }
  .footer__input {
    padding: 14px 14px;
    font-size: 14px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer__legal {
    flex-wrap: wrap;
    gap: 12px 20px;
  }
  .footer__col-title {
    margin-bottom: 14px;
  }
  .footer__links {
    gap: 10px;
  }

  /* ---- SEARCH DRAWER ---- */
  .search-drawer {
    padding: 28px 16px;
  }
  .search-drawer__input {
    font-size: 22px;
  }

  /* ---- PROMO POPUP ---- */
  .promo-popup {
    bottom: 0;
    right: 0;
    left: 0;
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    padding: 28px 20px;
  }

  /* ---- RETURNS PAGE ---- */
  .breadcrumb {
    margin-bottom: 24px;
  }

  /* ---- BUTTONS ---- */
  .btn {
    min-height: 48px; /* Minimum touch target */
  }

  /* Disable hover scale on touch (prevents stuck states) */
  .product-card:hover {
    transform: none;
    box-shadow: none;
  }
  .product-card:active {
    transform: scale(0.98);
  }
}

/* Very small phones (SE, etc.) */
@media (max-width: 375px) {
  .hero__title {
    font-size: 30px;
  }
  .product-card__btn {
    font-size: 10px;
    height: 42px;
  }
  .site-logo__text {
    display: none; /* Show only icon on tiny screens */
  }
  .header-icons {
    gap: 2px;
  }
}

/* Landscape phone */
@media (max-width: 767px) and (orientation: landscape) {
  .hero {
    height: 100svh;
    min-height: 320px;
  }
  .hero__title {
    font-size: 28px;
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
  /* Bigger tap targets for touch */
  .nav__link,
  .footer__link,
  .footer__legal-link {
    padding: 4px 0;
  }

  /* Remove hover transforms that can get stuck on touch */
  .product-card:hover {
    transform: none;
    box-shadow: none;
  }
  .category-card:hover .category-card__img {
    transform: none;
  }
  .feed-item:hover img {
    transform: none;
  }

  /* Active states for touch feedback */
  .product-card:active {
    transform: scale(0.97);
    transition: transform 0.1s ease;
  }
  .btn:active {
    transform: scale(0.97);
    transition: transform 0.1s ease;
  }
  .product-card__btn:active {
    transform: scale(0.97);
  }

  /* Smooth scrolling on iOS */
  .cart-drawer__body,
  .mobile-menu,
  .filter-bar,
  .faq-tabs {
    -webkit-overflow-scrolling: touch;
  }

  /* Prevent double-tap zoom on buttons */
  .btn, .product-card__btn, .filter-pill {
    touch-action: manipulation;
  }
}

/* Prevent body scroll when any drawer is open on mobile */
body.overflow-hidden {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* ===== SEARCH DRAWER ===== */
.search-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  z-index: 1000;
  padding: 40px 32px;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
  box-shadow: 0 4px 40px rgba(0,0,0,0.15);
}

.search-drawer.open {
  transform: translateY(0);
}

.search-drawer__inner {
  max-width: 800px;
  margin: 0 auto;
}

.search-drawer__form {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 2px solid var(--color-text);
  padding-bottom: 16px;
}

.search-drawer__input {
  flex: 1;
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-text);
  border: none;
  background: none;
  outline: none;
}

.search-drawer__input::placeholder {
  opacity: 0.35;
}

.search-drawer__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-tags {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.search-tag {
  padding: 8px 20px;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.search-tag:hover {
  background: var(--color-text);
  color: var(--color-white);
  border-color: var(--color-text);
}

/* Notification */
.notification {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--color-text);
  color: var(--color-white);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 0.05em;
  z-index: 2000;
  transition: transform 0.35s ease;
  white-space: nowrap;
}

.notification.show {
  transform: translateX(-50%) translateY(0);
}

/* Promo popup */
.promo-popup {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--color-white);
  border-radius: 16px;
  padding: 32px;
  max-width: 340px;
  z-index: 900;
  box-shadow: 0 16px 60px rgba(0,0,0,0.18);
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.5s ease;
}

.promo-popup.show {
  transform: translateY(0);
  opacity: 1;
}

.promo-popup__close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.4;
}

.promo-popup__title {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 400;
}

.promo-popup__text {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.75;
  margin-bottom: 20px;
}

.promo-popup__input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-main);
  margin-bottom: 12px;
}

/* Utility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0,0,0,0);
  overflow: hidden;
}

.page-transition {
  opacity: 0;
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.sticky-header-placeholder {
  height: 72px;
}
