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

:root {
  --red-dark: #7a1f2b;
  --red: #9c2c3a;
  --gold: #c9a227;
  --gold-light: #e6c766;
  --cream: #fbf3e3;
  --cream-2: #f6ead0;
  --text-dark: #3a1c1c;
  --text-light: #6b4a3a;
  --shadow: 0 10px 30px rgba(122, 31, 43, 0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Be Vietnam Pro', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--red-dark);
}

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

.top-banner {
  width: 100%;
  overflow: hidden;
}
.top-banner img {
  width: 100%;
  display: block;
  object-fit: cover;
}

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  position: relative;
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
  overflow: hidden;
  isolation: isolate;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 45%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s ease;
  z-index: 1;
  pointer-events: none;
}
.btn:hover::after { left: 130%; }

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow);
  animation: pulseGlowRed 1.3s ease-in-out infinite;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 34px rgba(122,31,43,0.32);
  animation-play-state: paused;
}

@keyframes pulseGlowRed {
  0%, 100% { box-shadow: 0 0 0 0 rgba(122, 31, 43, 0.65), var(--shadow); }
  50%      { box-shadow: 0 0 0 16px rgba(122, 31, 43, 0), var(--shadow); }
}

.btn-ghost {
  background: transparent;
  color: var(--red-dark);
  border-color: var(--red-dark);
  animation: pulseBorderRed 1.3s ease-in-out infinite;
}
.btn-ghost:hover {
  background: var(--red-dark);
  color: #fff;
  transform: translateY(-3px) scale(1.03);
  animation-play-state: paused;
}

@keyframes pulseBorderRed {
  0%, 100% { box-shadow: 0 0 0 0 rgba(122, 31, 43, 0.55); }
  50%      { box-shadow: 0 0 0 14px rgba(122, 31, 43, 0); }
}

.btn-outline {
  border-color: var(--gold);
  color: var(--red-dark);
  font-size: 14px;
  padding: 10px 20px;
  white-space: nowrap;
  animation: pulseBorderGold 1.1s ease-in-out infinite;
}
.btn-outline:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px) scale(1.05);
  animation-play-state: paused;
}

@keyframes pulseBorderGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.7); }
  50%      { box-shadow: 0 0 0 13px rgba(201, 162, 39, 0); }
}

.ring-icon {
  display: inline-block;
  animation: ringShake 2.6s ease-in-out infinite;
}
@keyframes ringShake {
  0%, 92%, 100% { transform: rotate(0deg); }
  93%  { transform: rotate(-16deg); }
  94%  { transform: rotate(14deg); }
  95%  { transform: rotate(-11deg); }
  96%  { transform: rotate(8deg); }
  97%  { transform: rotate(-5deg); }
  98%  { transform: rotate(0deg); }
}

.btn-small {
  padding: 9px 18px;
  font-size: 13px;
  background: var(--red-dark);
  color: #fff;
  animation: pulseGlowRedSmall 1.3s ease-in-out infinite;
}
.btn-small:hover {
  background: var(--gold);
  transform: translateY(-2px);
  animation-play-state: paused;
}

@keyframes pulseGlowRedSmall {
  0%, 100% { box-shadow: 0 0 0 0 rgba(122, 31, 43, 0.6); }
  50%      { box-shadow: 0 0 0 10px rgba(122, 31, 43, 0); }
}

.btn-full { width: 100%; text-align: center; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 243, 227, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--gold-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.header-promo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px 20px 12px;
  border-top: 1px dashed var(--gold-light);
  font-size: 13px;
}
.header-promo .tagline { margin: 0; }
.header-promo-text {
  font-weight: 700;
  color: var(--red-dark);
  font-family: 'Playfair Display', serif;
}
.header-promo-text .price-tag {
  font-size: 0.85em;
  padding: 3px 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--red-dark);
}
.brand-sub {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 4px;
}
.nav a:hover { color: var(--red-dark); }
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav a:hover::after { width: 100%; }

.hero {
  background: radial-gradient(circle at 80% 20%, var(--cream-2) 0%, var(--cream) 55%);
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.hero-text { flex: 1 1 420px; }

.tagline {
  display: inline-block;
  background: var(--red-dark);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.hero-text h1 {
  font-size: clamp(28px, 5.5vw, 44px);
  line-height: 1.25;
  margin-bottom: 20px;
}

.price-tag {
  display: inline-block;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 0.52em;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--gold) 0%, #a9811a 100%);
  padding: 6px 16px;
  border-radius: 8px;
  transform: rotate(-3deg);
  vertical-align: middle;
  box-shadow: 0 8px 20px rgba(201, 162, 39, 0.45);
  animation: priceTagPulse 1.3s ease-in-out infinite;
}

@keyframes priceTagPulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(201,162,39,0.45), 0 0 0 0 rgba(201, 162, 39, 0.6); }
  50%      { box-shadow: 0 8px 20px rgba(201,162,39,0.45), 0 0 0 10px rgba(201, 162, 39, 0); }
}

.hero-text p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 30px;
}

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

.hero-image {
  flex: 1 1 380px;
  position: relative;
  display: flex;
  justify-content: center;
}

.moon {
  position: absolute;
  top: -30px;
  right: 30px;
  width: clamp(120px, 22vw, 220px);
  height: clamp(120px, 22vw, 220px);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff7e0, var(--gold-light) 70%);
  box-shadow: 0 0 60px rgba(201, 162, 39, 0.5);
  z-index: 0;
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 4px solid #fff;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}
.section-head h2 { font-size: clamp(24px, 4.5vw, 34px); margin: 10px 0 12px; }
.section-head p { color: var(--text-light); }
.section-head.light h2 { color: #fff; }
.section-head.light .section-tag { color: var(--gold-light); }
.section-head.light p { color: var(--cream-2); }

.section-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}

.about { padding: 80px 0; }

.about-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about-image { flex: 1 1 380px; }
.about-image img {
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 4px solid #fff;
}

.about-text { flex: 1 1 420px; }
.about-text h2 { font-size: clamp(24px, 4.2vw, 32px); margin: 10px 0 18px; }
.about-text p { color: var(--text-light); margin-bottom: 22px; }

.about-list li {
  padding: 8px 0;
  font-weight: 500;
  color: var(--text-dark);
}

.products {
  padding: 24px 0 80px;
  background: var(--cream-2);
}

.product-feature {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: stretch;
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.product-gallery {
  flex: 1 1 380px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.gallery-slideshow {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  flex: 1 1 auto;
  min-height: 380px;
  max-height: 460px;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(122,31,43,0.15);
  background: var(--cream-2);
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  cursor: zoom-in;
  transition: opacity 0.6s ease, transform 6s ease;
  transform: scale(1.04);
}
.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(58, 28, 28, 0.45);
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s ease;
}
.gallery-nav:hover { background: var(--red-dark); }
.gallery-prev { left: 14px; }
.gallery-next { right: 14px; }

.gallery-zoom-hint {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 5;
  background: rgba(58, 28, 28, 0.55);
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  pointer-events: none;
}

.gallery-thumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  padding: 2px;
}

.thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.6;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.thumb:hover { opacity: 0.9; }
.thumb.active {
  border-color: var(--gold);
  opacity: 1;
}

.order-fab {
  position: fixed;
  right: 24px;
  bottom: 176px;
  z-index: 200;
  display: flex;
  align-items: center;
  transition: transform 0.25s ease;
}
.order-fab:hover { transform: scale(1.05); }

.order-fab-label {
  background: var(--red-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  padding: 13px 28px 13px 18px;
  border-radius: 999px 0 0 999px;
  margin-right: -22px;
  box-shadow: 0 8px 20px rgba(122, 31, 43, 0.35);
  animation: labelPulse 1.3s ease-in-out infinite;
}

.order-fab-icon {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold) 0%, #a9811a 100%);
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.45);
  animation: pulseGlowGoldFab 1.3s ease-in-out infinite;
  z-index: 1;
}

.order-fab:hover .order-fab-icon,
.order-fab:hover .order-fab-label {
  animation-play-state: paused;
}

@keyframes pulseGlowGoldFab {
  0%, 100% { box-shadow: 0 10px 28px rgba(201,162,39,0.45), 0 0 0 0 rgba(201, 162, 39, 0.65); }
  50%      { box-shadow: 0 10px 28px rgba(201,162,39,0.45), 0 0 0 16px rgba(201, 162, 39, 0); }
}

@keyframes labelPulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(122,31,43,0.35); }
  50%      { box-shadow: 0 8px 20px rgba(122,31,43,0.35), 0 0 0 6px rgba(122, 31, 43, 0.15); }
}

.phone-fab-wrap {
  position: fixed;
  right: 24px;
  bottom: 100px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.phone-fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: 0 10px 28px rgba(122, 31, 43, 0.35);
  animation: pulseGlowRed 1.3s ease-in-out infinite;
  transition: transform 0.25s ease;
}
.phone-fab:hover {
  transform: scale(1.1);
  animation-play-state: paused;
}

.phone-options {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.25s ease, max-height 0.3s ease;
}
.phone-options.open {
  max-height: 200px;
  opacity: 1;
}

.phone-option {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.phone-options.open .phone-option {
  transform: translateY(0);
  opacity: 1;
}
.phone-options.open .call-option { transition-delay: 0.05s; }
.phone-options.open .sms-option { transition-delay: 0.12s; }

.call-option { color: var(--red-dark); }
.sms-option { color: #0078ff; }

.messenger-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  z-index: 200;
  animation: messengerPulse 1.3s ease-in-out infinite;
  transition: transform 0.25s ease;
}
.messenger-fab:hover {
  transform: scale(1.1);
  animation-play-state: paused;
}

@keyframes messengerPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(0,0,0,0.25), 0 0 0 0 rgba(160, 51, 255, 0.6); }
  50%      { box-shadow: 0 10px 28px rgba(0,0,0,0.25), 0 0 0 16px rgba(160, 51, 255, 0); }
}

.messenger-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--text-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.messenger-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--text-dark);
}
.messenger-fab:hover .messenger-tooltip { opacity: 1; }

@media (max-width: 640px) {
  .messenger-fab { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .messenger-tooltip { display: none; }
  .phone-fab-wrap { right: 16px; bottom: 82px; }
  .phone-fab { width: 50px; height: 50px; }
  .order-fab { right: 16px; bottom: 150px; }
  .order-fab-icon { width: 50px; height: 50px; }
  .order-fab-label { display: none; }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 8, 8, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1000;
  padding: 30px;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 4px solid #fff;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lightbox-close:hover { background: var(--gold); }

.product-info { flex: 1 1 380px; min-width: 0; padding-top: 6px; }
.product-info h3 { font-size: 26px; margin-bottom: 14px; }
.product-desc { color: var(--text-light); margin-bottom: 20px; }

.product-points { margin-bottom: 28px; }
.product-points li {
  padding: 7px 0;
  font-weight: 500;
  color: var(--text-dark);
}

.product-storage {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--cream);
  border: 1px solid #eee0c8;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-dark);
}
.product-storage-icon { font-size: 20px; line-height: 1.2; }
.product-storage strong { color: var(--red-dark); }
.product-storage p { margin-top: 4px; color: var(--text-light); font-size: 13px; line-height: 1.6; }

.price { font-weight: 700; color: var(--red-dark); font-size: 18px; }
.price-lg { font-size: 28px; }
.price .unit, .price-lg .unit {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  margin-left: 4px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 14px;
}
.product-rating-stars { color: var(--gold); letter-spacing: 1px; }
.product-rating-score { font-weight: 700; color: var(--text-dark); }
.product-rating-count { color: var(--text-light); }

.hero-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}
.hero-price-row .unit { font-size: 14px; color: var(--text-light); }
.price-old {
  font-size: 16px;
  color: var(--text-light);
  text-decoration: line-through;
}

.sale-countdown {
  background: #fdf0d5;
  border: 1px solid #f0dba8;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 18px;
}
.sale-countdown-label { font-size: 13px; font-weight: 600; color: #8a5a00; }
.sale-countdown-bar {
  height: 6px;
  background: #f0dba8;
  border-radius: 999px;
  margin-top: 8px;
  overflow: hidden;
}
.sale-countdown-fill {
  height: 100%;
  background: var(--red-dark);
  border-radius: 999px;
  transition: width 1s linear;
}
.sale-countdown-time {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 800;
  color: var(--red-dark);
  font-variant-numeric: tabular-nums;
}

.combo-select { margin-bottom: 18px; }
.combo-label { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.combo-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.combo-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 6px;
  border: 1.5px solid #e5d5b8;
  border-radius: 10px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.15s ease;
}
.combo-btn:hover { border-color: var(--gold); }
.combo-btn.active {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
}
.combo-btn-off {
  font-size: 11px;
  font-weight: 700;
  color: var(--ok, #2e7d46);
}
.combo-btn.active .combo-btn-off { color: var(--gold-light); }

.buy-row {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}
.buy-row-cta { flex: 1 1 auto; margin-bottom: 0; }

.qty-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
  width: 130px;
  margin-bottom: 0;
  border: 1.5px solid #e5d5b8;
  border-radius: 10px;
  overflow: hidden;
}
.qty-stepper-btn {
  flex: 0 0 38px;
  height: 46px;
  border: none;
  background: var(--cream);
  color: var(--red-dark);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease;
}
.qty-stepper-btn:hover { background: var(--gold-light); }
.qty-stepper input {
  flex: 1 1 auto;
  min-width: 0;
  height: 46px;
  border: none;
  border-left: 1.5px solid #e5d5b8;
  border-right: 1.5px solid #e5d5b8;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  background: #fff;
  -moz-appearance: textfield;
}
.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn-lg { padding: 15px; font-size: 16px; margin-bottom: 18px; }

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 24px;
  padding-top: 18px;
  border-top: 1px solid #eee0c8;
}
.trust-badge {
  font-size: 12px;
  color: var(--text-light);
  background: var(--cream);
  border-radius: 8px;
  padding: 8px 10px;
  text-align: center;
}
@media (max-width: 480px) {
  .combo-buttons { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .product-feature { padding: 20px; gap: 24px; }
  .gallery-slideshow { height: 300px; }
}

.product-story {
  padding: 80px 0;
  background: #fff;
}
.story-block {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 70px;
}
.story-block:last-child { margin-bottom: 0; }
.story-block.reverse { flex-direction: row-reverse; }
.story-text { flex: 1 1 420px; min-width: 0; }
.story-text h2 { font-size: clamp(24px, 4vw, 32px); margin: 10px 0 16px; }
.story-text h3 { font-size: 22px; margin-bottom: 16px; }
.story-text p { color: var(--text-light); }
.story-img { flex: 1 1 420px; min-width: 0; }
.story-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.story-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.story-feature strong { display: block; color: var(--red-dark); margin-bottom: 6px; font-size: 15px; }
.story-feature p { font-size: 13px; margin: 0; }

.ingredient-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}
.ingredient-group {
  background: var(--cream);
  border: 1px solid #eee0c8;
  border-radius: 12px;
  padding: 14px 16px;
}
.ingredient-group strong {
  display: block;
  color: var(--red-dark);
  margin-bottom: 6px;
  font-size: 15px;
}
.ingredient-group p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.story-timeline {
  text-align: center;
  margin-bottom: 70px;
}
.story-timeline h3 { font-size: 22px; margin-bottom: 32px; }
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.timeline-step {
  background: var(--cream);
  border-radius: 16px;
  padding: 24px 16px;
  border-top: 4px solid var(--gold);
}
.timeline-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red-dark);
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}
.timeline-step strong { display: block; margin-bottom: 6px; color: var(--red-dark); }
.timeline-step p { font-size: 13px; color: var(--text-light); margin: 0; }

.story-steps { list-style: none; counter-reset: story-step; }
.story-steps li {
  counter-increment: story-step;
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  color: var(--text-light);
}
.story-steps li::before {
  content: counter(story-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-steps strong { color: var(--red-dark); }

@media (max-width: 860px) {
  .story-block, .story-block.reverse { flex-direction: column; }
  .story-text, .story-img { flex: 1 1 auto; }
  .story-feature-grid { grid-template-columns: 1fr; }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); }
}

.shipping-policy {
  padding: 70px 0;
}
.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.policy-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.policy-icon { font-size: 32px; margin-bottom: 12px; }
.policy-card h3 { font-size: 18px; margin-bottom: 10px; }
.policy-card p { color: var(--text-light); font-size: 14px; margin: 0; }
@media (max-width: 640px) {
  .policy-grid { grid-template-columns: 1fr; }
}

.giftboxes {
  padding: 80px 0;
}

.giftbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.giftbox-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.giftbox-card:hover { transform: translateY(-8px); }

.giftbox-img {
  height: 340px;
  overflow: hidden;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.giftbox-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: zoom-in;
  transition: transform 0.4s ease;
}
.giftbox-card:hover .giftbox-img img { transform: scale(1.04); }

.giftbox-body { padding: 24px; }
.giftbox-body h3 { font-size: 20px; margin-bottom: 10px; }
.giftbox-body p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 18px;
}

.why {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--red-dark), var(--red) 70%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
}

.why-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  color: var(--cream);
}
.why-icon { font-size: 34px; margin-bottom: 14px; }
.why-card h3 { color: var(--gold-light); font-size: 18px; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--cream-2); }

.reviews {
  padding: 80px 0;
  background: var(--cream-2);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.review-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  padding: 22px;
  text-align: left;
}
.review-card:hover { transform: translateY(-6px); }

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.review-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream-2);
  border: 2px solid var(--gold-light);
  object-fit: cover;
  flex-shrink: 0;
}
.review-header-info { display: flex; flex-direction: column; gap: 3px; }
.review-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}
.review-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 1px;
}
.review-date {
  font-size: 12px;
  color: var(--text-light);
  opacity: 0.8;
}

.review-text {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 14px;
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.review-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--cream-2);
  border: 1px solid #e5d5b8;
  border-radius: 999px;
  padding: 5px 12px;
}

.review-photo {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
}
.review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}
.review-photo img:hover { transform: scale(1.08); }

.review-like {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream-2);
  border: 1px solid #e5d5b8;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s ease;
}
.review-like:hover { border-color: var(--gold); }
.review-like.liked {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
}

.review-card-new { animation: reviewPop 0.4s ease; }
@keyframes reviewPop {
  0% { opacity: 0; transform: scale(0.9) translateY(10px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.review-cta { text-align: center; }

.review-form {
  max-width: 560px;
  margin: 28px auto 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--gold);
  padding: 0 30px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
}
.review-form.open {
  max-height: 500px;
  opacity: 1;
  padding: 30px;
}
.review-form h3 {
  font-size: 20px;
  text-align: center;
}
.review-form input,
.review-form textarea {
  padding: 13px 16px;
  border: 1px solid #e5d5b8;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  background: var(--cream);
  color: var(--text-dark);
}
.review-form input:focus,
.review-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.star-input {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.star-input span {
  font-size: 30px;
  color: #ddd;
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
}
.star-input span:hover { transform: scale(1.15); }
.star-input span.active { color: var(--gold); }

.order { padding: 90px 0; }

.order-inner {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.order-text { flex: 1 1 380px; }
.order-text h2 { font-size: 32px; margin: 10px 0 18px; }
.order-text p { color: var(--text-light); margin-bottom: 24px; }

.contact-info p { margin-bottom: 10px; font-weight: 500; }
.contact-info a { color: var(--red-dark); font-weight: 700; }

.order .order-form {
  flex: 1 1 420px;
  background: #fff;
  padding: 34px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--gold);
}

.order-product-badge {
  background: var(--cream-2);
  border: 1px dashed var(--gold);
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 14px;
  color: var(--red-dark);
  text-align: center;
}

.order-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream-2);
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
}
.order-total-value {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--red-dark);
}

.order-total-box {
  background: var(--cream-2);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.order-total-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-dark);
}
.order-discount-line {
  color: var(--ok, #2e7d46);
  font-weight: 700;
}
.order-total-final {
  padding-top: 8px;
  border-top: 1px dashed #d8c49a;
  font-weight: 700;
}
.order-total-final span:last-child {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--red-dark);
}

.order-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 12, 12, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1000;
}
.order-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.order-modal {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 24px;
  border-top: 6px solid var(--gold);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  padding: 36px 30px 30px;
  transform: scale(0.92) translateY(10px);
  transition: transform 0.25s ease;
}
.order-modal-overlay.open .order-modal {
  transform: scale(1) translateY(0);
}

.order-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--cream-2);
  color: var(--text-dark);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}
.order-modal-close:hover { background: var(--gold); color: #fff; }

.order-modal h3 {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--red-dark);
  margin-bottom: 14px;
  padding-right: 10px;
}

.order-modal-sub {
  text-align: center;
  background: var(--cream-2);
  border: 1px dashed var(--gold);
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 15px;
  color: var(--red-dark);
  margin-bottom: 22px;
}

.order-modal-hotline {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 18px;
}
.order-modal-hotline a { color: var(--red-dark); font-weight: 700; }

.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 12, 12, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1100;
}
.success-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.success-box {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 380px;
  border-radius: 24px;
  border-top: 6px solid var(--gold);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  padding: 40px 30px 32px;
  text-align: center;
  transform: scale(0.9) translateY(10px);
  transition: transform 0.25s ease;
}
.success-overlay.open .success-box {
  transform: scale(1) translateY(0);
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #a9811a 100%);
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(201, 162, 39, 0.4);
}

.success-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.success-box p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 22px;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.order-form input,
.order-form select,
.order-form textarea {
  padding: 13px 16px;
  border: 1px solid #e5d5b8;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  background: var(--cream);
  color: var(--text-dark);
}
.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.order-form select { cursor: pointer; }

.highlight-fill {
  animation: highlightFill 1.5s ease;
}
@keyframes highlightFill {
  0%   { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.35); }
  100% { border-color: #e5d5b8; box-shadow: none; }
}

.field-invalid {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.18);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}

.field-error {
  display: none;
  color: #c0392b;
  font-size: 12px;
  font-weight: 600;
  padding-left: 2px;
}
.field-error.show { display: block; }

.form-row {
  display: flex;
  gap: 14px;
}
.form-row .form-field { flex: 1; min-width: 0; }

@media (max-width: 480px) {
  .form-row { flex-direction: column; }
}

.footer {
  background: var(--text-dark);
  color: var(--cream-2);
  padding-top: 60px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand { flex: 2 1 280px; display: flex; gap: 14px; }
.footer-logo {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.footer-brand p { font-size: 13px; color: #cbb9a8; margin-top: 4px; }

.footer-links, .footer-contact { flex: 1 1 160px; }
.footer h4 { color: var(--gold-light); font-size: 15px; margin-bottom: 14px; }
.footer-links a { display: block; font-size: 14px; margin-bottom: 8px; color: #cbb9a8; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 14px; color: #cbb9a8; }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  color: #a88f7d;
}

@media (max-width: 720px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand call"
      "nav   nav";
    align-items: center;
    gap: 8px 10px;
  }
  .brand { grid-area: brand; min-width: 0; flex-shrink: 1; }
  .brand-text { min-width: 0; }
  .header-call { grid-area: call; }
  .nav {
    grid-area: nav;
    width: 100%;
    justify-content: center;
    gap: 18px;
    padding-top: 10px;
  }

  .brand-logo {
    width: clamp(32px, 10vw, 52px);
    height: clamp(32px, 10vw, 52px);
  }
  .brand-name {
    font-size: clamp(11px, 3.6vw, 19px);
    white-space: normal;
    line-height: 1.15;
  }
  .brand-sub {
    font-size: clamp(7px, 2vw, 11px);
    white-space: normal;
    letter-spacing: 0.5px;
  }
  .header-call {
    font-size: clamp(11px, 3vw, 14px);
    padding: clamp(6px, 1.8vw, 10px) clamp(10px, 3vw, 20px);
    white-space: nowrap;
  }

  .hero { padding: 36px 0 28px; }
  .hero-inner { gap: 28px; }
  .about { padding: 36px 0; }
  .about-inner { gap: 28px; }
  .products, .giftboxes, .why, .reviews { padding: 48px 0; }
  .section-head { margin-bottom: 32px; }
}
