/* =============================================
   Глиняный сон — Tilda-style landing
   ============================================= */

:root {
  --bg: #ebe4d8;
  --bg-2: #e0d6c6;
  --bg-warm: #f2ece2;
  --clay: #c9a88a;
  --sage: #a8b5a0;
  --terracotta: #c4785e;
  --dark: #1e1c1a;
  --dark-2: #2a2826;
  --text: #1e1c1a;
  --muted: #7a7068;
  --line: rgba(30, 28, 26, 0.12);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Geologica', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --header: 70px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  position: relative;
}

/* ========== AMBIENT BACKGROUND ========== */

.t-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 15% 10%, rgba(201, 168, 138, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 25%, rgba(168, 181, 160, 0.28) 0%, transparent 50%),
    radial-gradient(ellipse 60% 45% at 50% 85%, rgba(196, 120, 94, 0.18) 0%, transparent 55%),
    linear-gradient(175deg, #f4efe6 0%, #ebe4d8 35%, #e3d9cb 70%, #ddd2c2 100%);
}

.t-bg__grain {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: multiply;
}

.t-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbDrift 18s ease-in-out infinite;
}

.t-bg__orb--1 {
  width: 520px;
  height: 520px;
  top: -8%;
  left: -6%;
  background: rgba(201, 168, 138, 0.45);
}

.t-bg__orb--2 {
  width: 420px;
  height: 420px;
  top: 38%;
  right: -10%;
  background: rgba(168, 181, 160, 0.38);
  animation-delay: -6s;
}

.t-bg__orb--3 {
  width: 380px;
  height: 380px;
  bottom: 5%;
  left: 28%;
  background: rgba(196, 120, 94, 0.22);
  animation-delay: -12s;
}

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 25px) scale(0.95); }
}

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

/* Animations */
.t-anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.t-anim.show {
  opacity: 1;
  transform: translateY(0);
}

/* ========== HEADER ========== */

.t-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  height: var(--header);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  transition: background 0.4s;
}

.t-header.solid {
  background: rgba(244, 239, 230, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.t-header__menu {
  justify-self: start;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.t-header__menu:hover { border-color: var(--text); }

.t-header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.t-header__logo svg { width: 26px; height: 26px; }

.t-header__logo span {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
}

.t-header__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.t-header__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-header__icon svg { width: 18px; height: 18px; }

.t-header__cart { position: relative; }

.t-header__cart em {
  position: absolute;
  top: 0;
  right: -2px;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
}

/* ========== MENU OVERLAY ========== */

.t-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--dark);
  color: #e8e6e4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.t-menu.open { opacity: 1; visibility: visible; }

.t-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.t-menu__link {
  font-family: var(--serif);
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 400;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.3s;
}

.t-menu.open .t-menu__link { opacity: 1; transform: none; }
.t-menu.open .t-menu__link:nth-child(1) { transition-delay: 0.08s; }
.t-menu.open .t-menu__link:nth-child(2) { transition-delay: 0.12s; }
.t-menu.open .t-menu__link:nth-child(3) { transition-delay: 0.16s; }
.t-menu.open .t-menu__link:nth-child(4) { transition-delay: 0.2s; }
.t-menu.open .t-menu__link:nth-child(5) { transition-delay: 0.24s; }
.t-menu.open .t-menu__link:nth-child(6) { transition-delay: 0.28s; }

.t-menu__link:hover { color: #c4b8a8; }

.t-menu__bottom {
  position: absolute;
  bottom: 48px;
  display: flex;
  gap: 32px;
  font-size: 13px;
  opacity: 0.5;
}

.t-menu__bottom a:hover { opacity: 1; }

/* ========== COVER HERO ========== */

.t-cover {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--header) 40px 60px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255, 252, 247, 0.7) 0%, transparent 70%);
}

.t-cover__floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.t-cover__float {
  position: absolute;
  margin: 0;
  animation: coverFloat 7s ease-in-out infinite;
}

.t-cover__float img {
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(30, 28, 26, 0.12);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.t-cover__float--1 { top: 12%; left: 6%; width: 180px; height: 240px; animation-delay: 0s; }
.t-cover__float--2 { top: 18%; right: 8%; width: 150px; height: 200px; animation-delay: 1.2s; }
.t-cover__float--3 { bottom: 22%; left: 10%; width: 130px; height: 175px; animation-delay: 0.6s; }
.t-cover__float--4 { top: 50%; right: 5%; width: 155px; height: 205px; animation-delay: 1.8s; }
.t-cover__float--5 { bottom: 14%; right: 20%; width: 140px; height: 185px; animation-delay: 0.3s; }

@keyframes coverFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.t-cover__center {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
}

.t-cover__sub {
  font-family: var(--serif);
  font-size: clamp(17px, 2.2vw, 22px);
  font-style: italic;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.35;
}

.t-cover__title {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.92;
  margin-bottom: 20px;
}

.t-cover__title span {
  display: block;
  font-size: clamp(72px, 14vw, 160px);
  letter-spacing: -0.02em;
}

.t-cover__title span:last-child {
  font-style: italic;
  color: var(--muted);
}

.t-cover__desc {
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.5;
}

.t-cover__btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--text);
  transition: color 0.3s, border-color 0.3s;
}

.t-cover__btn:hover {
  color: var(--muted);
  border-color: var(--muted);
}

/* ========== SCALLOP ========== */

.t-scallop {
  color: rgba(224, 214, 198, 0.85);
  line-height: 0;
  margin-top: -1px;
}

.t-scallop svg { width: 100%; height: 32px; display: block; }

.t-scallop--flip { transform: scaleY(-1); color: var(--bg); }

/* ========== HEADLINE ========== */

.t-headline {
  padding: 80px 40px 60px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(224, 214, 198, 0.75) 0%, rgba(235, 228, 216, 0.55) 100%);
  border-top: 1px solid rgba(201, 168, 138, 0.2);
}

.t-headline__small {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.t-headline__big {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 32px;
}

.t-headline__big em { font-style: italic; }

.t-headline__link {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
}

/* ========== MARQUEE ========== */

.t-marquee {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255, 252, 247, 0.45);
}

.t-marquee__inner {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
}

.t-marquee__inner span:nth-child(even) { color: var(--text); opacity: 0.3; }

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

/* ========== FAMOUS ========== */

.t-famous {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: end;
}

.t-famous h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
}

.t-famous__star {
  display: block;
  font-size: 48px;
  margin-top: 16px;
  opacity: 0.3;
}

.t-famous__cta {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
  white-space: nowrap;
}

/* ========== VALUES ========== */

.t-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.35);
}

.t-values__item {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  transition: background 0.4s var(--ease);
}

.t-values__item:hover {
  background: rgba(201, 168, 138, 0.1);
}

.t-values__item:last-child { border-right: none; }

.t-values__item h4 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.t-values__item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ========== CATALOG ========== */

.t-catalog {
  padding: 80px 40px 100px;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}

.t-catalog::before {
  content: '';
  position: absolute;
  inset: 40px 0;
  background-image: radial-gradient(circle, rgba(201, 168, 138, 0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
}

.t-catalog__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

.t-catalog__title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.05;
}

.t-catalog__all {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
  flex-shrink: 0;
}

.t-catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 28px;
}

.t-product {
  cursor: pointer;
}

.t-product__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 18px;
  background: linear-gradient(145deg, rgba(255, 252, 247, 0.9), rgba(224, 214, 198, 0.6));
  box-shadow: 0 4px 24px rgba(30, 28, 26, 0.06);
}

.t-product__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.t-product:hover .t-product__img img {
  transform: scale(1.04);
}

.t-product h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 8px;
}

.t-product p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.t-catalog__bottom {
  text-align: center;
  margin-top: 80px;
}

.t-catalog__bottom p {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 40px);
  line-height: 1.25;
  margin-bottom: 28px;
}

.t-catalog__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Buttons */
.t-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: all 0.3s var(--ease);
}

.t-btn--line {
  border: 1px solid var(--text);
}

.t-btn--line:hover {
  background: var(--text);
  color: var(--bg);
}

.t-btn--fill {
  background: var(--dark);
  color: #e8e6e4;
}

.t-btn--fill:hover {
  background: #3a3836;
}

.t-btn--wide { width: 100%; }

/* ========== MOODBOARD ========== */

.t-moodboard {
  padding: 60px 40px 100px;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(168, 181, 160, 0.12) 0%, transparent 50%, rgba(201, 168, 138, 0.1) 100%);
  border-radius: 4px;
}

.t-moodboard__title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 40px;
}

.t-moodboard__main {
  margin-bottom: 16px;
  overflow: hidden;
}

.t-moodboard__main img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
}

.t-moodboard__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.t-moodboard__row figure {
  overflow: hidden;
  aspect-ratio: 1;
}

.t-moodboard__row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.t-moodboard__row figure:hover img { transform: scale(1.05); }

/* ========== ABOUT ========== */

.t-about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
  background:
    linear-gradient(160deg, rgba(224, 214, 198, 0.65) 0%, rgba(244, 239, 230, 0.4) 100%);
  border-top: 1px solid rgba(201, 168, 138, 0.25);
  border-bottom: 1px solid rgba(201, 168, 138, 0.25);
}

.t-about__label {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 380px;
}

.t-about__name {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.02;
  margin-bottom: 28px;
}

.t-about__text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.t-about__photo {
  position: sticky;
  top: calc(var(--header) + 24px);
}

.t-about__photo img {
  width: 100%;
  border-radius: 2px;
}

/* ========== CREATE ========== */

.t-create {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
  background:
    radial-gradient(ellipse 80% 70% at 20% 50%, rgba(196, 120, 94, 0.1) 0%, transparent 60%),
    rgba(255, 252, 247, 0.55);
  border: 1px solid rgba(201, 168, 138, 0.2);
  border-radius: 4px;
}

.t-create h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 12px;
}

.t-create > .t-create__left > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

.t-create__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.t-field input,
.t-field textarea {
  width: 100%;
  padding: 16px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  resize: vertical;
  transition: border-color 0.3s;
}

.t-field input::placeholder,
.t-field textarea::placeholder { color: var(--muted); }

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

.t-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
}

.t-check input { margin-top: 3px; accent-color: var(--dark); }

.t-check a {
  border-bottom: 1px solid var(--muted);
}

/* ========== DELIVERY (dark) ========== */

.t-delivery {
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(196, 120, 94, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(168, 181, 160, 0.1) 0%, transparent 55%),
    var(--dark);
  color: #d8d6d4;
  padding: 80px 40px 60px;
  text-align: center;
}

.t-delivery__title {
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 48px;
}

.t-delivery__img {
  max-width: 480px;
  margin: 0 auto 56px;
  overflow: hidden;
  border-radius: 2px;
}

.t-delivery__img img { width: 100%; }

.t-delivery__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 40px;
}

.t-delivery__step span {
  display: block;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  color: #8a8480;
  margin-bottom: 12px;
}

.t-delivery__step p {
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.75;
  max-width: 220px;
}

.t-delivery__arrow {
  font-size: 28px;
  opacity: 0.3;
  padding-top: 16px;
}

.t-delivery__note {
  font-size: 12px;
  opacity: 0.4;
  max-width: 440px;
  margin: 0 auto;
}

/* ========== REVIEWS ========== */

.t-reviews {
  padding: 80px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.t-reviews__title {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  margin-bottom: 40px;
}

.t-reviews__wrap { overflow: hidden; }

.t-reviews__track {
  display: flex;
  transition: transform 0.5s var(--ease);
}

.t-review {
  flex: 0 0 100%;
  padding: 36px 0;
}

.t-review p {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  line-height: 1.45;
  margin-bottom: 20px;
}

.t-review cite {
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
}

.t-reviews__nav {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.t-reviews__nav button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.3s, color 0.3s;
}

.t-reviews__nav button:hover {
  background: var(--dark);
  color: var(--bg);
  border-color: var(--dark);
}

/* ========== FOOTER ========== */

.t-footer {
  padding: 60px 40px 40px;
  border-top: 1px solid var(--line);
}

.t-footer__nav,
.t-footer__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin-bottom: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.t-footer__nav a,
.t-footer__contacts a {
  font-size: 14px;
  transition: color 0.3s;
}

.t-footer__nav a:hover,
.t-footer__contacts a:hover { color: var(--muted); }

.t-footer__shops {
  display: flex;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.t-footer__shops h5 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 10px;
}

.t-footer__shops li {
  list-style: none;
  font-size: 13px;
  color: var(--muted);
  padding: 3px 0;
}

.t-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.t-footer__legal a {
  font-size: 11px;
  color: var(--muted);
}

/* ========== CART POPUP ========== */

.t-cart-popup {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(30, 28, 26, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.t-cart-popup.open { opacity: 1; visibility: visible; }

.t-cart-popup__box {
  background: var(--bg);
  padding: 40px 36px;
  width: 90%;
  max-width: 420px;
  position: relative;
}

.t-cart-popup__close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  line-height: 1;
  opacity: 0.5;
}

.t-cart-popup__box h3 {
  font-family: var(--serif);
  font-size: 20px;
  text-align: center;
  margin-bottom: 24px;
}

.t-cart-popup__box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.t-cart-popup__box input[type="text"],
.t-cart-popup__box input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--bg);
}

/* ========== TOAST ========== */

.t-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--dark);
  color: #e8e6e4;
  padding: 14px 28px;
  font-size: 13px;
  z-index: 400;
  opacity: 0;
  transition: all 0.4s var(--ease);
  pointer-events: none;
  white-space: nowrap;
}

.t-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
  .t-catalog__grid { grid-template-columns: repeat(2, 1fr); }
  .t-values { grid-template-columns: repeat(2, 1fr); }
  .t-values__item:nth-child(2) { border-right: none; }
  .t-about { grid-template-columns: 1fr; }
  .t-about__photo { position: static; max-width: 400px; }
  .t-create { grid-template-columns: 1fr; }
  .t-delivery__steps { flex-direction: column; align-items: center; }
  .t-delivery__arrow { transform: rotate(90deg); padding: 0; }
}

@media (max-width: 768px) {
  .t-header { padding: 0 20px; }
  .t-header__logo span { display: none; }

  .t-cover__float { opacity: 0.45; transform: scale(0.75); }
  .t-cover__float--1 { left: 2%; }
  .t-cover__float--2 { right: 2%; }
  .t-cover__float--4, .t-cover__float--5 { display: none; }

  .t-famous { grid-template-columns: 1fr; }
  .t-values { grid-template-columns: 1fr; }
  .t-values__item { border-right: none; border-bottom: 1px solid var(--line); }

  .t-catalog { padding: 60px 20px; }
  .t-catalog__grid { grid-template-columns: 1fr; gap: 40px; }
  .t-catalog__top { flex-direction: column; align-items: flex-start; gap: 16px; }
  .t-catalog__btns { flex-direction: column; }

  .t-moodboard__row { grid-template-columns: 1fr 1fr; }
  .t-moodboard__row figure:last-child { display: none; }

  .t-footer__shops { flex-direction: column; gap: 32px; }
  .t-menu__bottom { flex-direction: column; align-items: center; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .t-anim { opacity: 1; transform: none; }
  .t-cover__float, .t-marquee__inner, .t-bg__orb { animation: none; }
}