/* ===== Custom Properties ===== */
:root {
  --bg: #fefcf9;
  --bg-light: #f5f0e8;
  --bg-card: #ffffff;
  --gold: #b08d57;
  --gold-light: #c9a872;
  --gold-dark: #96753e;
  --text: #3d3229;
  --text-muted: #9a8e82;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
  --header-h: 72px;
  --gold-gradient: linear-gradient(135deg, #b08d57, #d4b896, #b08d57);
  --gold-glow: 0 0 30px rgba(176, 141, 87, 0.15);
  --card-shadow: 0 4px 24px rgba(61, 50, 41, 0.08);
  --card-shadow-hover: 0 20px 60px rgba(61, 50, 41, 0.12), 0 0 40px rgba(176, 141, 87, 0.08);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

/* ===== Utility ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Section header with lines */
.section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.section-header__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.section-header__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176, 141, 87, 0.3), transparent);
}

/* Button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 100px;
  transition: all var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 20px rgba(176, 141, 87, 0.25);
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.8rem;
  border-radius: 100px;
}

.btn--hero {
  padding: 16px 44px;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition);
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(254, 252, 249, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: -1;
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176, 141, 87, 0.2), transparent);
}

.header.is-scrolled {
  box-shadow: 0 4px 30px rgba(61, 50, 41, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header__logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.6rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.15em;
}

.header__logo-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.header__nav-list {
  display: flex;
  gap: 2.5rem;
}

.header__nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.header__nav-link:hover {
  color: var(--gold);
}

.header__nav-link:hover::after {
  width: 100%;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  padding: 4px 0;
}

.header__burger span {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
  transform-origin: center;
}

.header__burger span:nth-child(2) {
  width: 70%;
  margin-left: auto;
}

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

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

.hero__pattern {
  width: 100%;
  height: 100%;
  opacity: 1;
}

/* Floating dice */
.hero__dice {
  position: absolute;
  opacity: 0;
  animation: floatDice 8s ease-in-out infinite;
}

.hero__dice--1 {
  width: 100px;
  top: 15%;
  right: 12%;
  animation-delay: 0s;
  animation-duration: 10s;
}

.hero__dice--2 {
  width: 70px;
  bottom: 20%;
  left: 10%;
  animation-delay: 3s;
  animation-duration: 12s;
}

.hero__dice--3 {
  width: 50px;
  top: 60%;
  right: 25%;
  animation-delay: 5s;
  animation-duration: 9s;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 0;
}

.hero__badge {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid rgba(176, 141, 87, 0.25);
  border-radius: 100px;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  background: rgba(176, 141, 87, 0.05);
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(4rem, 15vw, 12rem);
  line-height: 0.9;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
  gap: 0.02em;
}

.hero__title-line {
  display: inline-block;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.15em;
  animation: titleReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  opacity: 0;
  transform: translateY(40px);
}

.hero__title-line:nth-child(1) { animation-delay: 0.1s; }
.hero__title-line:nth-child(2) { animation-delay: 0.2s; }
.hero__title-line:nth-child(3) { animation-delay: 0.3s; }
.hero__title-line:nth-child(4) { animation-delay: 0.4s; }

.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 1.25rem;
  color: var(--gold);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero__divider span {
  width: 40px;
  height: 1px;
  background: var(--gold-gradient);
}

.hero__subtitle {
  font-size: clamp(0.9rem, 2.5vw, 1.5rem);
  color: var(--text-muted);
  margin-bottom: 3rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 300;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(176, 141, 87, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero__scroll-hint span {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 3px;
  animation: scrollHint 1.8s ease-in-out infinite;
}

/* ===== About ===== */
.about {
  padding: 7rem 0;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(176, 141, 87, 0.3));
}

.about__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about__label-text {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.about__label-line {
  width: 30px;
  height: 1px;
  background: rgba(176, 141, 87, 0.3);
}

.about__heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about__heading em {
  font-style: italic;
  color: var(--gold);
}

.about__text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid rgba(176, 141, 87, 0.1);
  border-radius: var(--radius-xl);
  background: rgba(176, 141, 87, 0.02);
}

.about__stat {
  text-align: center;
}

.about__stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.about__stat-unit {
  font-size: 1.5rem;
}

.about__stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.25rem;
  display: block;
}

.about__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(176, 141, 87, 0.15);
}

/* ===== Catalog ===== */
.catalog {
  padding: 5rem 0 7rem;
  position: relative;
}

.catalog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176, 141, 87, 0.15), transparent);
}

.catalog__category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  margin-top: 3.5rem;
}

.catalog__category-header:first-of-type {
  margin-top: 0;
}

.catalog__category-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
}

.catalog__category {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--text);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.catalog__category-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(176, 141, 87, 0.2), transparent);
}

.catalog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* ===== Card ===== */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--card-shadow);
  cursor: pointer;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(176, 141, 87, 0.15), transparent 50%, rgba(176, 141, 87, 0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: opacity var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.card:hover::before {
  background: linear-gradient(135deg, rgba(176, 141, 87, 0.35), rgba(176, 141, 87, 0.1) 50%, rgba(176, 141, 87, 0.2));
}

.card__image-wrap {
  position: relative;
  overflow: hidden;
}

.card__image {
  aspect-ratio: 1;
  overflow: hidden;
  transition: transform var(--transition-slow);
}

.card__image--duo {
  aspect-ratio: auto;
  background: var(--bg-light);
  display: flex;
  align-items: stretch;
  gap: 2px;
}

.card__image--duo picture,
.product-detail__images picture {
  display: block;
  width: 50%;
}

.card__image--duo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: transform var(--transition-slow);
}

.card:hover .card__image--duo img {
  transform: scale(1.04);
}

.card:hover .card__image {
  transform: scale(1.05);
}

.card__image svg {
  width: 100%;
  height: 100%;
  transition: opacity var(--transition);
}

.card:hover .card__image svg {
  opacity: 0.9;
}


.card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  letter-spacing: 0.01em;
}

.card__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card__price {
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.card__btn {
  gap: 6px;
}

/* ===== Delivery ===== */
.delivery {
  padding: 7rem 0;
  background: var(--bg-light);
  position: relative;
}

.delivery::before,
.delivery::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176, 141, 87, 0.15), transparent);
}

.delivery::before { top: 0; }
.delivery::after { bottom: 0; }

.delivery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.delivery__card {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(176, 141, 87, 0.08);
  border-radius: var(--radius-xl);
  background: var(--bg);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.delivery__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gold-glow);
  border-color: rgba(176, 141, 87, 0.2);
}

.delivery__icon-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.delivery__icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(176, 141, 87, 0.15);
  transition: border-color var(--transition), transform var(--transition);
}

.delivery__card:hover .delivery__icon-ring {
  border-color: rgba(176, 141, 87, 0.35);
  transform: scale(1.1);
}

.delivery__icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
}

.delivery__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.delivery__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.delivery__number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(176, 141, 87, 0.04);
  line-height: 1;
  pointer-events: none;
  transition: color var(--transition);
}

.delivery__card:hover .delivery__number {
  color: rgba(176, 141, 87, 0.08);
}

/* ===== Delivery Messenger Buttons ===== */
.delivery__messengers {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

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

.delivery__msg-btn--tg {
  background: rgba(42, 171, 238, 0.1);
  color: #1a8fc9;
  border: 1px solid rgba(42, 171, 238, 0.2);
}

.delivery__msg-btn--tg:hover {
  background: #2AABEE;
  color: #fff;
  transform: translateY(-2px);
}

.delivery__msg-btn--wa {
  background: rgba(37, 211, 102, 0.1);
  color: #1da851;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.delivery__msg-btn--wa:hover {
  background: #25D366;
  color: #fff;
  transform: translateY(-2px);
}

.delivery__msg-btn--max {
  background: rgba(123, 104, 238, 0.1);
  color: #6854c9;
  border: 1px solid rgba(123, 104, 238, 0.2);
}

.delivery__msg-btn--max:hover {
  background: #7B68EE;
  color: #fff;
  transform: translateY(-2px);
}

/* ===== Contacts ===== */
.contacts {
  padding: 7rem 0;
  position: relative;
}

.contacts::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176, 141, 87, 0.15), transparent);
}

.contacts__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contacts__subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.contacts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.contacts__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(176, 141, 87, 0.1);
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  transition: all var(--transition);
}

.contacts__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
  border-color: rgba(176, 141, 87, 0.2);
}

.contacts__card--tg { color: #1a8fc9; }
.contacts__card--wa { color: #1da851; }
.contacts__card--max { color: #6854c9; }
.contacts__card--phone { color: var(--gold); }

.contacts__card-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.contacts__card-handle {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 767px) {
  .contacts__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Footer ===== */
.footer {
  padding: 4rem 0 2.5rem;
  position: relative;
}

.footer__top {
  text-align: center;
  margin-bottom: 2rem;
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.15em;
  display: inline-block;
}

.footer__tagline {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  font-weight: 300;
}

.footer__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176, 141, 87, 0.15), transparent);
  margin-bottom: 2rem;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.footer__copy {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(176, 141, 87, 0.15);
  color: var(--text-muted);
  transition: all var(--transition);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__social-link:hover {
  color: var(--gold);
  border-color: rgba(176, 141, 87, 0.4);
  background: rgba(176, 141, 87, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(176, 141, 87, 0.1);
}

/* ===== Modal ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal[hidden] {
  display: none;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(61, 50, 41, 0.4);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.25s ease;
}

.modal__content {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(176, 141, 87, 0.15);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem 2rem;
  max-width: 420px;
  width: 100%;
  animation: modalIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.modal__accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--text-muted);
  transition: color var(--transition), transform var(--transition);
  padding: 4px;
}

.modal__close:hover {
  color: var(--text);
  transform: rotate(90deg);
}

.modal__icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.6;
}

.modal__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--text);
  margin-bottom: 0.25rem;
  padding-right: 2rem;
}

.modal__text {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.75rem;
}

.modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.modal__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.modal__btn--tg {
  background: rgba(42, 171, 238, 0.12);
  color: #1a8fc9;
  border: 1px solid rgba(42, 171, 238, 0.2);
}

.modal__btn--tg:hover {
  background: #2AABEE;
  color: #fff;
  border-color: #2AABEE;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(42, 171, 238, 0.3);
}

.modal__btn--wa {
  background: rgba(37, 211, 102, 0.12);
  color: #1da851;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.modal__btn--wa:hover {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.modal__btn--max {
  background: rgba(123, 104, 238, 0.12);
  color: #6854c9;
  border: 1px solid rgba(123, 104, 238, 0.2);
}

.modal__btn--max:hover {
  background: #7B68EE;
  color: #fff;
  border-color: #7B68EE;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(123, 104, 238, 0.3);
}

/* ===== Product Detail Modal ===== */
.product-detail {
  max-width: 520px;
  padding: 2rem 2rem 2rem;
}

.product-detail__images {
  display: flex;
  gap: 8px;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.product-detail__images img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--bg-light);
  border-radius: var(--radius);
}

.product-detail__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.product-detail__price {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.product-detail__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.product-detail__order {
  width: 100%;
  justify-content: center;
  gap: 8px;
}

/* ===== Coming Soon ===== */
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  margin-bottom: 1rem;
  border: 2px dashed rgba(176, 141, 87, 0.2);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(176, 141, 87, 0.03), rgba(176, 141, 87, 0.06));
}

.coming-soon__icon {
  width: 56px;
  height: 56px;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 1.25rem;
  animation: pulse-slow 3s ease-in-out infinite;
}

.coming-soon__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.coming-soon__text {
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 360px;
  line-height: 1.6;
}

@keyframes pulse-slow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.catalog__grid .card.fade-in:nth-child(2) { transition-delay: 0.1s; }
.catalog__grid .card.fade-in:nth-child(3) { transition-delay: 0.2s; }
.delivery__grid .delivery__card.fade-in:nth-child(2) { transition-delay: 0.15s; }
.delivery__grid .delivery__card.fade-in:nth-child(3) { transition-delay: 0.3s; }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes floatDice {
  0%, 100% {
    opacity: 0;
    transform: translateY(0) rotate(0deg);
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: translateY(-30px) rotate(15deg);
  }
  90% {
    opacity: 1;
  }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
    transition-delay: 0ms !important;
  }

  .hero__title-line {
    opacity: 1;
    transform: none;
  }

  .hero__divider {
    opacity: 1;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ===== Mobile ===== */
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(254, 252, 249, 0.98);
    backdrop-filter: blur(20px);
    padding: 3rem 24px;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header__nav.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .header__nav-list {
    flex-direction: column;
    gap: 2rem;
  }

  .header__nav-link {
    font-size: 1.5rem;
    text-transform: none;
    letter-spacing: 0.02em;
  }

  /* Burger animation */
  .header__burger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .header__burger.is-active span:nth-child(2) {
    opacity: 0;
    width: 0;
  }

  .header__burger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .about__stats {
    gap: 1.25rem;
    padding: 1.5rem 1rem;
  }

  .about__stat-number {
    font-size: 2rem;
  }

  .hero__dice--1 { right: 5%; width: 70px; }
  .hero__dice--2 { left: 5%; width: 50px; }
  .hero__dice--3 { display: none; }
}

/* ===== Tablet ===== */
@media (min-width: 768px) {
  .section-header__title {
    font-size: 2rem;
  }

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

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

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ===== Desktop ===== */
@media (min-width: 1200px) {
  .catalog__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .section-header__title {
    font-size: 2.25rem;
  }

  .section-header {
    margin-bottom: 3.5rem;
  }

  .delivery__grid {
    gap: 2rem;
  }

  .delivery__card {
    padding: 3rem 2.5rem;
  }
}
