:root {
  --primary: #2D0B0B;
  --secondary: #4A1414;
  --accent: #E6BE8A;
  --background: #050505;
  --detail: #FDF5E6;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --shadow-sm: 0 1px 2px rgba(230, 190, 138, 0.05);
  --shadow-md: 0 4px 12px rgba(230, 190, 138, 0.08);
  --shadow-lg: 0 8px 24px rgba(230, 190, 138, 0.12);
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 64px;
  --spacing-2xl: 80px;
  --spacing-3xl: 120px;
  --spacing-4xl: 160px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out-sine: cubic-bezier(0.45, 0, 0.55, 1);
  --luxury-font-display: 'Cormorant Garamond', Georgia, serif;
  --luxury-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --luxury-gold: #D4AF37;
  --luxury-gold-light: #E6BE8A;
  --luxury-gold-subtle: rgba(212, 175, 55, 0.15);
  --luxury-divider: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--background);
  color: var(--detail);
  line-height: 1.6;
  overflow-x: hidden;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(45, 11, 11, 0.7);
  border-bottom: 1px solid rgba(230, 190, 138, 0.1);
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-sm) var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: var(--spacing-lg);
  list-style: none;
}

.nav-links a {
  color: var(--detail);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  z-index: 1001;
  transition: opacity 0.2s ease;
}

.menu-toggle:hover {
  opacity: 0.85;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--detail);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55),
              opacity 0.25s ease;
}

.menu-toggle.active .burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active .burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

section {
  padding: var(--spacing-3xl) 0;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  padding-top: var(--spacing-2xl);
}

.hero-image {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

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

.hero-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(230, 190, 138, 0.15), transparent 70%);
  z-index: -1;
  filter: blur(40px);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.rating {
  display: flex;
  gap: 4px;
  color: var(--accent);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-sm);
  background: rgba(230, 190, 138, 0.1);
  border: 1px solid rgba(230, 190, 138, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  color: var(--detail);
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(253, 245, 230, 0.8);
  margin-bottom: var(--spacing-lg);
}

.price-box {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

.old-price {
  font-size: 1.5rem;
  color: rgba(253, 245, 230, 0.4);
  text-decoration: line-through;
}

.order-form {
  background: rgba(45, 11, 11, 0.5);
  border: 1px solid rgba(230, 190, 138, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
}

.form-group {
  position: relative;
  margin-bottom: var(--spacing-md);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-xs);
  background: rgba(5, 5, 5, 0.5);
  border: 1px solid rgba(230, 190, 138, 0.2);
  border-radius: var(--radius-sm);
  color: var(--detail);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(230, 190, 138, 0.1);
}

.form-group label {
  position: absolute;
  left: var(--spacing-sm);
  top: var(--spacing-sm);
  color: rgba(253, 245, 230, 0.6);
  transition: all 0.3s ease;
  pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: 4px;
  font-size: 0.75rem;
  color: var(--accent);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.875rem;
  color: rgba(253, 245, 230, 0.8);
  cursor: pointer;
}

.checkbox-group a {
  color: var(--accent);
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.error-message {
  color: #ff6b6b;
  font-size: 0.875rem;
  margin-top: 4px;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #ff6b6b;
}

.btn {
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-lg);
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
}

.btn:active {
  transform: scale(0.98);
}

h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: var(--detail);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.bento-card {
  background: rgba(45, 11, 11, 0.3);
  border: 1px solid rgba(230, 190, 138, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s, box-shadow 0.3s;
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 190, 138, 0.3);
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s, box-shadow 0.3s;
}

.bento-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--accent);
}

.bento-card p {
  color: rgba(253, 245, 230, 0.8);
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid rgba(230, 190, 138, 0.1);
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: 500;
  color: rgba(253, 245, 230, 0.6);
}

.spec-value {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--accent);
}

.icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--spacing-sm);
  stroke: var(--accent);
  stroke-width: 1.5;
}

.description-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(253, 245, 230, 0.9);
}

.cta-section {
  text-align: center;
  padding: var(--spacing-xl);
  background: rgba(45, 11, 11, 0.3);
  border: 1px solid rgba(230, 190, 138, 0.1);
  border-radius: var(--radius-lg);
}

.cta-section h2 {
  margin-bottom: var(--spacing-md);
}

.cta-section p {
  font-size: 1.25rem;
  color: rgba(253, 245, 230, 0.8);
  margin-bottom: var(--spacing-lg);
}

.cta-section .btn {
  max-width: 400px;
  margin: 0 auto;
}

.instructions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.instruction-step {
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: var(--spacing-sm);
}

.instruction-step h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
  color: var(--detail);
}

.instruction-step p {
  color: rgba(253, 245, 230, 0.8);
}

.ingredients-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.ingredient-card {
  background: rgba(45, 11, 11, 0.3);
  border: 1px solid rgba(230, 190, 138, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
}

.ingredient-card h3 {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: var(--spacing-xs);
}

.ingredient-card p {
  color: rgba(253, 245, 230, 0.8);
  font-size: 0.95rem;
}

/* Interactive sections */
.benefit-card {
  cursor: pointer;
  position: relative;
}

.benefit-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.benefit-card.expanded .benefit-expand {
  max-height: 200px;
}

.expand-indicator {
  display: inline-block;
  margin-top: var(--spacing-sm);
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  transition: transform 0.2s ease;
}

.benefit-card.expanded .expand-indicator {
  transform: rotate(45deg);
}

.benefit-expand p {
  margin-top: var(--spacing-sm);
  padding-top: var(--spacing-sm);
  border-top: 1px solid rgba(230, 190, 138, 0.15);
  font-size: 0.9rem;
}

.ingredients-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

.ingredient-tab {
  padding: var(--spacing-xs) var(--spacing-md);
  background: rgba(45, 11, 11, 0.5);
  border: 1px solid rgba(230, 190, 138, 0.2);
  border-radius: var(--radius-sm);
  color: var(--detail);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.ingredient-tab:hover {
  border-color: rgba(230, 190, 138, 0.4);
  color: var(--accent);
}

.ingredient-tab.active {
  background: rgba(230, 190, 138, 0.15);
  border-color: var(--accent);
  color: var(--accent);
}

.ingredient-card {
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease;
}

#ingredients .ingredient-card.highlight {
  border-color: rgba(230, 190, 138, 0.4);
  box-shadow: var(--shadow-lg);
  opacity: 1;
}

#ingredients.ingredient-filter-active .ingredient-card:not(.highlight) {
  opacity: 0.4;
  pointer-events: none;
}

#ingredients.ingredient-filter-active .ingredient-card.highlight {
  opacity: 1;
}

.reviews-filter {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.filter-btn {
  padding: var(--spacing-xs) var(--spacing-md);
  background: rgba(45, 11, 11, 0.5);
  border: 1px solid rgba(230, 190, 138, 0.2);
  border-radius: var(--radius-sm);
  color: var(--detail);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover {
  border-color: rgba(230, 190, 138, 0.4);
  color: var(--accent);
}

.filter-btn.active {
  background: rgba(230, 190, 138, 0.15);
  border-color: var(--accent);
  color: var(--accent);
}

.review-card {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.review-card.hidden {
  display: none;
}

.instruction-step {
  cursor: pointer;
  transition: all 0.3s ease;
}

.step-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.instruction-step.expanded .step-detail {
  max-height: 150px;
}

.step-detail p {
  margin-top: var(--spacing-sm);
  padding-top: var(--spacing-sm);
  border-top: 1px solid rgba(230, 190, 138, 0.15);
  font-size: 0.9rem;
  color: rgba(253, 245, 230, 0.85);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-md);
}

.review-card {
  background: rgba(45, 11, 11, 0.3);
  border: 1px solid rgba(230, 190, 138, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-sm);
}

.reviewer-name {
  font-weight: 600;
  color: var(--detail);
}

.review-rating {
  display: flex;
  gap: 2px;
  color: var(--accent);
}

.review-text {
  color: rgba(253, 245, 230, 0.8);
  line-height: 1.6;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(45, 11, 11, 0.3);
  border: 1px solid rgba(230, 190, 138, 0.1);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: var(--spacing-md);
  background: none;
  border: none;
  color: var(--detail);
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 var(--spacing-md) var(--spacing-md);
  color: rgba(253, 245, 230, 0.8);
  line-height: 1.6;
}

.disclaimer {
  max-width: 900px;
  margin: var(--spacing-xl) auto 0;
  padding: var(--spacing-md);
  background: rgba(74, 20, 20, 0.3);
  border: 1px solid rgba(230, 190, 138, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: rgba(253, 245, 230, 0.7);
  text-align: center;
}

footer {
  background: var(--primary);
  border-top: 1px solid rgba(230, 190, 138, 0.1);
  padding: var(--spacing-xl) var(--spacing-md);
  margin-top: var(--spacing-3xl);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  text-align: center;
}

.footer-legal {
  font-size: 0.875rem;
  color: rgba(253, 245, 230, 0.8);
  line-height: 1.6;
}

.footer-legal p {
  margin-bottom: var(--spacing-xs);
}

.footer-legal p:last-child {
  margin-bottom: 0;
}

.footer-company {
  margin-bottom: var(--spacing-xs) !important;
}

.footer-legal a {
  color: var(--accent);
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: var(--spacing-md);
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(253, 245, 230, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.copyright {
  color: rgba(253, 245, 230, 0.6);
  font-size: 0.875rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(45, 11, 11, 0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(230, 190, 138, 0.2);
  padding: var(--spacing-md);
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
  color: rgba(253, 245, 230, 0.9);
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-text a:hover {
  color: var(--detail);
}

.cookie-buttons {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  width: auto;
  padding: var(--spacing-xs) var(--spacing-md);
  font-size: 0.875rem;
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(230, 190, 138, 0.3);
  color: var(--detail);
}

.btn-secondary:hover {
  background: rgba(230, 190, 138, 0.1);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(8px);
  z-index: 3000;
  padding: var(--spacing-md);
  overflow-y: auto;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--primary);
  border: 1px solid rgba(230, 190, 138, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  max-width: 600px;
  width: 100%;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

.modal-header h3 {
  font-size: 1.5rem;
  color: var(--detail);
}

.modal-close {
  background: none;
  border: none;
  color: var(--detail);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--accent);
}

.cookie-category {
  padding: var(--spacing-md);
  background: rgba(5, 5, 5, 0.3);
  border: 1px solid rgba(230, 190, 138, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-sm);
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-xs);
}

.category-header h4 {
  color: var(--accent);
  font-size: 1.125rem;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(230, 190, 138, 0.2);
  border-radius: 26px;
  transition: 0.3s;
}

.toggle-slider::before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: var(--detail);
  border-radius: 50%;
  transition: 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--accent);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(24px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.category-description {
  color: rgba(253, 245, 230, 0.7);
  font-size: 0.875rem;
}

.modal-footer {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.modal-footer .btn {
  flex: 1;
}

.thank-you-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--spacing-xl);
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  stroke: var(--accent);
  stroke-width: 1.5;
}

.thank-you-content h1 {
  margin-bottom: var(--spacing-md);
}

.thank-you-content p {
  font-size: 1.25rem;
  color: rgba(253, 245, 230, 0.8);
  margin-bottom: var(--spacing-lg);
}

.policy-hero {
  background: linear-gradient(135deg, rgba(45, 11, 11, 0.8), rgba(74, 20, 20, 0.6));
  border: 1px solid rgba(230, 190, 138, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
  overflow: hidden;
}

.policy-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(230, 190, 138, 0.1), transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

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

.policy-hero h1 {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
  position: relative;
  z-index: 1;
}

.policy-date {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-md);
  background: rgba(230, 190, 138, 0.15);
  border: 1px solid rgba(230, 190, 138, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.policy-date svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
}

.policy-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-md);
}

.policy-content {
  background: rgba(45, 11, 11, 0.2);
  border: 1px solid rgba(230, 190, 138, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
}

.policy-section {
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
  border-bottom: 1px solid rgba(230, 190, 138, 0.1);
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-container h2 {
  font-size: 1.75rem;
  text-align: left;
  margin-bottom: var(--spacing-md);
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.policy-container h2::before {
  content: '';
  width: 4px;
  height: 24px;
  background: var(--accent);
  border-radius: 2px;
}

.policy-container h3 {
  font-size: 1.25rem;
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  color: var(--detail);
  font-weight: 600;
}

.policy-container p {
  margin-bottom: var(--spacing-md);
  color: rgba(253, 245, 230, 0.9);
  line-height: 1.8;
  font-size: 1rem;
}

.policy-container ul {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-lg);
  color: rgba(253, 245, 230, 0.9);
}

.policy-container li {
  margin-bottom: var(--spacing-xs);
  line-height: 1.8;
  position: relative;
}

.policy-container li::marker {
  color: var(--accent);
}

.policy-container a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.policy-container a:hover {
  border-bottom-color: var(--accent);
}

.contact-info {
  background: rgba(74, 20, 20, 0.4);
  border: 1px solid rgba(230, 190, 138, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin: var(--spacing-lg) 0;
}

.contact-info p {
  margin-bottom: var(--spacing-sm);
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin: var(--spacing-md) 0;
}

.info-card {
  background: rgba(45, 11, 11, 0.3);
  border: 1px solid rgba(230, 190, 138, 0.15);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: rgba(230, 190, 138, 0.3);
  transform: translateY(-2px);
}

.info-card h4 {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
}

.info-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  :root {
    --spacing-3xl: 64px;
    --spacing-4xl: 80px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(45, 11, 11, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px var(--spacing-md) var(--spacing-md);
    gap: var(--spacing-md);
    border-left: 1px solid rgba(230, 190, 138, 0.2);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
  }

  .nav-links a:hover {
    background: rgba(230, 190, 138, 0.1);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .policy-hero h1 {
    font-size: 2rem;
  }

  .policy-content {
    padding: var(--spacing-md);
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .instructions-grid {
    grid-template-columns: 1fr;
  }

  .ingredients-list {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-direction: row;
  }

  .cookie-content {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons .btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 48px;
  }

  nav {
    padding: var(--spacing-sm);
  }

  .brand {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .policy-hero {
    padding: var(--spacing-md);
  }

  .policy-hero h1 {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .price {
    font-size: 2rem;
  }

  .old-price {
    font-size: 1.25rem;
  }

  .order-form {
    padding: var(--spacing-md);
  }

  .bento-card {
    padding: var(--spacing-md);
  }

  .modal-content {
    padding: var(--spacing-md);
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

/* 320px - Extra small devices (iPhone SE, Galaxy Fold) */
@media (max-width: 320px) {
  :root {
    --spacing-xs: 6px;
    --spacing-sm: 10px;
    --spacing-md: 12px;
    --spacing-lg: 18px;
    --spacing-xl: 32px;
    --spacing-2xl: 40px;
    --spacing-3xl: 36px;
  }

  html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
  }

  body {
    font-size: 14px;
    min-width: 280px;
    overflow-x: hidden;
  }

  main {
    padding: 0 var(--spacing-sm);
    max-width: 100%;
    overflow-x: hidden;
  }

  nav {
    padding: 10px 12px;
    min-width: 0;
  }

  .brand {
    font-size: 0.95rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
  }

  .burger-line {
    width: 20px;
  }

  .menu-toggle.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-links {
    width: 100%;
    max-width: 280px;
    right: -100%;
    padding: 70px var(--spacing-sm) var(--spacing-md);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    padding: 14px var(--spacing-sm);
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .hero {
    padding-top: var(--spacing-lg);
    gap: var(--spacing-md);
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
  }

  h1 {
    font-size: 1.65rem;
    line-height: 1.25;
    word-break: break-word;
  }

  h2 {
    font-size: 1.4rem;
    word-break: break-word;
  }

  .hero-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .price-box {
    flex-wrap: wrap;
    gap: var(--spacing-xs);
  }

  .price {
    font-size: 1.6rem;
  }

  .old-price {
    font-size: 1rem;
  }

  .order-form {
    padding: var(--spacing-md);
  }

  .form-group input,
  .form-group textarea {
    padding: 14px 12px 10px;
    font-size: 16px;
    min-height: 44px;
  }

  .form-group textarea {
    min-height: 100px;
  }

  .form-group label {
    font-size: 0.85rem;
    left: 12px;
  }

  .form-group input:focus + label,
  .form-group input:not(:placeholder-shown) + label,
  .form-group textarea:focus + label,
  .form-group textarea:not(:placeholder-shown) + label {
    font-size: 0.65rem;
  }

  .checkbox-group {
    gap: var(--spacing-xs);
  }

  .checkbox-group input[type="checkbox"] {
    min-width: 20px;
    min-height: 20px;
  }

  .checkbox-group label {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .btn {
    padding: 14px 20px;
    font-size: 1rem;
    min-height: 44px;
  }

  .bento-grid {
    gap: var(--spacing-sm);
  }

  .bento-card {
    padding: var(--spacing-md);
  }

  .spec-item {
    padding: var(--spacing-xs) 0;
    flex-wrap: wrap;
  }

  .spec-label,
  .spec-value {
    font-size: 0.85rem;
  }

  .instruction-step .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .ingredient-card {
    padding: var(--spacing-sm);
  }

  .review-card {
    padding: var(--spacing-md);
  }

  .faq-question {
    padding: var(--spacing-sm);
    font-size: 1rem;
  }

  .disclaimer {
    padding: var(--spacing-sm);
    font-size: 0.8rem;
  }

  .policy-hero h1 {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }

  .policy-date {
    font-size: 0.7rem;
    padding: 6px 10px;
  }

  .policy-content {
    padding: var(--spacing-sm);
  }

  .policy-container h2 {
    font-size: 1.15rem;
  }

  .policy-container h3 {
    font-size: 1rem;
  }

  .policy-container p,
  .policy-container li {
    font-size: 0.9rem;
  }

  .contact-info {
    padding: var(--spacing-md);
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    padding: var(--spacing-sm);
  }

  footer {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .footer-content {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .footer-links {
    flex-direction: column;
    gap: var(--spacing-xs);
  }

  .footer-links a {
    padding: 8px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .copyright {
    font-size: 0.75rem;
    text-align: center;
  }

  .cookie-banner {
    padding: var(--spacing-sm);
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-text {
    font-size: 0.85rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons .btn {
    padding: 12px 16px;
    font-size: 0.85rem;
    min-height: 44px;
  }

  .modal {
    padding: var(--spacing-sm);
  }

  .modal-content {
    padding: var(--spacing-md);
  }

  .modal-header h3 {
    font-size: 1.2rem;
  }

  .category-header h4 {
    font-size: 1rem;
  }

  .toggle-switch {
    width: 44px;
    height: 24px;
  }

  .thank-you-container {
    padding: var(--spacing-lg);
  }

  .thank-you-icon {
    width: 56px;
    height: 56px;
  }

  .thank-you-content h1 {
    font-size: 1.5rem;
  }

  .thank-you-content p {
    font-size: 0.95rem;
  }

  section {
    padding: var(--spacing-xl) 0;
  }

  .cta-section {
    padding: var(--spacing-lg);
  }

  .cta-section p {
    font-size: 1rem;
  }
}

/* ========== ANIMATIONS (merged from animations.css) ========== */
.hero {
  animation: none;
}

.hero-content {
  animation: heroContentIn 1s var(--ease-out-expo) 0.3s both;
}

.hero-image {
  animation: heroImageIn 1.2s var(--ease-out-expo) 0.2s both, float 6s ease-in-out 2s infinite;
}

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

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

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

.hero-image::before {
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

.trust-badge {
  animation: fadeInUp 0.6s var(--ease-out-quart) 0.5s both;
}

.rating span {
  display: inline-block;
  animation: starPop 0.5s var(--ease-out-expo) both;
}

.rating span:nth-child(1) { animation-delay: 0.6s; }
.rating span:nth-child(2) { animation-delay: 0.65s; }
.rating span:nth-child(3) { animation-delay: 0.7s; }
.rating span:nth-child(4) { animation-delay: 0.75s; }
.rating span:nth-child(5) { animation-delay: 0.8s; }

@keyframes starPop {
  from { opacity: 0; transform: scale(0) rotate(-180deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

.hero h1 {
  animation: titleReveal 1s var(--ease-out-expo) 0.6s both;
}

@keyframes titleReveal {
  from { opacity: 0; transform: translateY(20px); letter-spacing: 0.1em; }
  to { opacity: 1; transform: translateY(0); letter-spacing: -0.02em; }
}

.hero-description {
  animation: fadeInUp 0.8s var(--ease-out-quart) 0.8s both;
}

.price-box {
  animation: fadeInUp 0.8s var(--ease-out-quart) 0.9s both;
}

.order-form {
  animation: fadeInUp 0.8s var(--ease-out-quart) 1s both;
}

section:not(.hero) {
  opacity: 0;
  animation: sectionReveal 0.8s var(--ease-out-expo) forwards;
  animation-play-state: paused;
}

section:not(.hero).animate-in {
  animation-play-state: running;
}

.hero {
  opacity: 1;
}

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

section:not(.hero) h2 {
  opacity: 0;
  animation: headingSlide 0.8s var(--ease-out-expo) forwards;
  animation-play-state: paused;
}

section:not(.hero).animate-in h2 {
  animation-play-state: running;
}

@keyframes headingSlide {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

section:not(.hero) .bento-card,
section:not(.hero) .ingredient-card,
section:not(.hero) .review-card,
section:not(.hero) .instruction-step {
  opacity: 0;
  animation: cardReveal 0.8s var(--ease-out-expo) forwards;
  animation-play-state: paused;
}

section:not(.hero).animate-in .bento-card,
section:not(.hero).animate-in .ingredient-card,
section:not(.hero).animate-in .review-card,
section:not(.hero).animate-in .instruction-step {
  animation-play-state: running;
}

.bento-card:nth-child(1), .ingredient-card:nth-child(1), .review-card:nth-child(1), .instruction-step:nth-child(1) { animation-delay: 0.1s; }
.bento-card:nth-child(2), .ingredient-card:nth-child(2), .review-card:nth-child(2), .instruction-step:nth-child(2) { animation-delay: 0.2s; }
.bento-card:nth-child(3), .ingredient-card:nth-child(3), .review-card:nth-child(3), .instruction-step:nth-child(3) { animation-delay: 0.3s; }
.bento-card:nth-child(4), .ingredient-card:nth-child(4), .review-card:nth-child(4), .instruction-step:nth-child(4) { animation-delay: 0.4s; }
.bento-card:nth-child(5), .ingredient-card:nth-child(5), .review-card:nth-child(5) { animation-delay: 0.5s; }
.bento-card:nth-child(6), .ingredient-card:nth-child(6), .review-card:nth-child(6) { animation-delay: 0.6s; }

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

.ingredient-tab {
  animation: tabReveal 0.5s var(--ease-out-quart) forwards;
  animation-play-state: paused;
}

#ingredients .ingredient-tab {
  opacity: 0;
}

#ingredients.animate-in .ingredient-tab {
  animation-play-state: running;
}

#ingredients .ingredient-tab:nth-child(1) { animation-delay: 0.05s; }
#ingredients .ingredient-tab:nth-child(2) { animation-delay: 0.1s; }
#ingredients .ingredient-tab:nth-child(3) { animation-delay: 0.15s; }
#ingredients .ingredient-tab:nth-child(4) { animation-delay: 0.2s; }
#ingredients .ingredient-tab:nth-child(5) { animation-delay: 0.25s; }
#ingredients .ingredient-tab:nth-child(6) { animation-delay: 0.3s; }
#ingredients .ingredient-tab:nth-child(7) { animation-delay: 0.35s; }

@keyframes tabReveal {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.reviews-filter .filter-btn {
  animation: tabReveal 0.5s var(--ease-out-quart) forwards;
  animation-play-state: paused;
}

#reviews .reviews-filter .filter-btn {
  opacity: 0;
}

#reviews.animate-in .reviews-filter .filter-btn {
  animation-play-state: running;
}

#reviews .reviews-filter .filter-btn:nth-child(1) { animation-delay: 0.1s; }
#reviews .reviews-filter .filter-btn:nth-child(2) { animation-delay: 0.15s; }
#reviews .reviews-filter .filter-btn:nth-child(3) { animation-delay: 0.2s; }

.instruction-step .step-number {
  animation: stepPop 0.6s var(--ease-out-expo) forwards;
  animation-play-state: paused;
}

section:not(.hero).animate-in .instruction-step .step-number {
  animation-play-state: running;
}

section:not(.hero) .instruction-step .step-number {
  opacity: 0;
  animation-play-state: paused;
}

.instruction-step:nth-child(1) .step-number { animation-delay: 0.15s; }
.instruction-step:nth-child(2) .step-number { animation-delay: 0.25s; }
.instruction-step:nth-child(3) .step-number { animation-delay: 0.35s; }
.instruction-step:nth-child(4) .step-number { animation-delay: 0.45s; }

@keyframes stepPop {
  from { opacity: 0; transform: scale(0) rotate(-90deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

.cta-section {
  opacity: 0;
  animation: ctaReveal 1s var(--ease-out-expo) forwards;
  animation-play-state: paused;
}

.cta-section.animate-in {
  animation-play-state: running;
}

@keyframes ctaReveal {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn:hover::after {
  left: 100%;
}

#description .description-content {
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out-quart) forwards;
  animation-play-state: paused;
}

#description.animate-in .description-content {
  animation-play-state: running;
  animation-delay: 0.2s;
}

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

#faq .faq-item {
  opacity: 0;
  animation: faqReveal 0.6s var(--ease-out-quart) forwards;
  animation-play-state: paused;
}

#faq.animate-in .faq-item {
  animation-play-state: running;
}

#faq .faq-item:nth-child(1) { animation-delay: 0.1s; }
#faq .faq-item:nth-child(2) { animation-delay: 0.15s; }
#faq .faq-item:nth-child(3) { animation-delay: 0.2s; }
#faq .faq-item:nth-child(4) { animation-delay: 0.25s; }
#faq .faq-item:nth-child(5) { animation-delay: 0.3s; }
#faq .faq-item:nth-child(6) { animation-delay: 0.35s; }

@keyframes faqReveal {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

header {
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(230, 190, 138, 0.15);
}

.ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(230, 190, 138, 0.15);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========== POLICY & THANK YOU LUXURY (merged from policy-luxury.css) ========== */
.luxury-page {
  min-height: 100vh;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(74, 20, 20, 0.4), transparent 70%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(45, 11, 11, 0.5), transparent),
    var(--background);
}

.luxury-hero {
  position: relative;
  padding: var(--spacing-3xl) var(--spacing-md) var(--spacing-2xl);
  text-align: center;
  overflow: hidden;
}

.luxury-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--luxury-gold-light));
  opacity: 0.6;
}

.luxury-hero::after {
  content: '◆';
  position: absolute;
  bottom: var(--spacing-lg);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.5rem;
  color: var(--luxury-gold);
  letter-spacing: 1.5em;
  opacity: 0.7;
}

.luxury-hero h1 {
  font-family: var(--luxury-font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--detail);
  margin-bottom: var(--spacing-md);
  position: relative;
}

.luxury-hero h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
  margin: var(--spacing-md) auto 0;
}

.luxury-hero .luxury-date {
  font-family: var(--luxury-font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--luxury-gold-light);
  opacity: 0.9;
}

.luxury-policy-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--spacing-md) var(--spacing-3xl);
}

.luxury-policy-container h2 {
  font-family: var(--luxury-font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--luxury-gold-light);
  margin: var(--spacing-xl) 0 var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid rgba(230, 190, 138, 0.2);
  text-align: left;
  display: block;
}

.luxury-policy-container h2::before {
  display: none;
}

.luxury-policy-container h3 {
  font-family: var(--luxury-font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--detail);
  margin: var(--spacing-lg) 0 var(--spacing-sm);
}

.luxury-policy-container p {
  font-family: var(--luxury-font-body);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.9;
  color: rgba(253, 245, 230, 0.88);
  margin-bottom: var(--spacing-md);
}

.luxury-policy-container ul {
  margin: var(--spacing-md) 0;
  padding-left: var(--spacing-lg);
  list-style: none;
}

.luxury-policy-container li {
  position: relative;
  padding-left: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  line-height: 1.8;
  color: rgba(253, 245, 230, 0.88);
}

.luxury-policy-container li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--luxury-gold);
  font-weight: 300;
  opacity: 0.8;
}

.luxury-policy-container a {
  color: var(--luxury-gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(230, 190, 138, 0.3);
  transition: all 0.3s ease;
}

.luxury-policy-container a:hover {
  color: var(--luxury-gold);
  border-bottom-color: var(--luxury-gold);
}

.luxury-policy-container .contact-info {
  background: rgba(45, 11, 11, 0.4);
  border: 1px solid rgba(230, 190, 138, 0.15);
  border-radius: 2px;
  padding: var(--spacing-lg);
  margin: var(--spacing-lg) 0;
  position: relative;
}

.luxury-policy-container .contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--luxury-gold);
  opacity: 0.5;
}

.luxury-thank-you {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-3xl) var(--spacing-md);
  text-align: center;
}

.luxury-thank-you-content {
  max-width: 520px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.luxury-thank-you-content::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin-bottom: var(--spacing-xl);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--luxury-gold);
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  background: var(--luxury-gold-subtle);
}

.luxury-thank-you-content h1 {
  font-family: var(--luxury-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--detail);
  margin-bottom: var(--spacing-lg);
}

.luxury-thank-you-content p {
  font-family: var(--luxury-font-body);
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(253, 245, 230, 0.85);
  margin-bottom: var(--spacing-md);
}

.luxury-thank-you-content .btn {
  display: inline-block;
  margin-top: var(--spacing-lg);
  padding: var(--spacing-sm) var(--spacing-xl);
  background: transparent;
  border: 1px solid var(--luxury-gold-light);
  color: var(--luxury-gold-light);
  text-decoration: none;
  font-family: var(--luxury-font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  width: auto;
}

.luxury-thank-you-content .btn:hover {
  background: var(--luxury-gold-subtle);
  border-color: var(--luxury-gold);
  color: var(--luxury-gold);
  transform: none;
}

.luxury-back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-xl);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(253, 245, 230, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.luxury-back-link:hover {
  color: var(--luxury-gold-light);
}

.luxury-back-link::before {
  content: '←';
  font-size: 0.9rem;
}

.luxury-divider {
  height: 1px;
  background: var(--luxury-divider);
  margin: var(--spacing-xl) 0;
  border: none;
}

.luxury-page footer {
  margin-top: 0;
  padding: var(--spacing-xl) var(--spacing-md);
  border-top: 1px solid rgba(230, 190, 138, 0.08);
}

@media (max-width: 768px) {
  .luxury-hero h1 {
    letter-spacing: 0.1em;
  }
  .luxury-thank-you-content h1 {
    letter-spacing: 0.12em;
  }
  .luxury-policy-container h2 {
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  .luxury-hero::after {
    letter-spacing: 0.8em;
  }
}

@media (max-width: 320px) {
  .luxury-page {
    min-width: 280px;
    overflow-x: hidden;
  }
  .luxury-hero {
    padding: var(--spacing-xl) var(--spacing-sm) var(--spacing-lg);
  }
  .luxury-hero h1 {
    font-size: 1.35rem;
    letter-spacing: 0.06em;
  }
  .luxury-hero h1::after {
    width: 50px;
  }
  .luxury-hero .luxury-date {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }
  .luxury-hero::after {
    font-size: 0.4rem;
    letter-spacing: 0.5em;
  }
  .luxury-policy-container {
    padding: 0 var(--spacing-sm) var(--spacing-2xl);
  }
  .luxury-policy-container h2 {
    font-size: 1.1rem;
    margin: var(--spacing-lg) 0 var(--spacing-sm);
  }
  .luxury-policy-container h3 {
    font-size: 1rem;
  }
  .luxury-policy-container p,
  .luxury-policy-container li {
    font-size: 0.9rem;
  }
  .luxury-policy-container .contact-info {
    padding: var(--spacing-md);
  }
  .luxury-thank-you {
    padding: var(--spacing-xl) var(--spacing-sm);
  }
  .luxury-thank-you-content::before {
    width: 72px;
    height: 72px;
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
  }
  .luxury-thank-you-content h1 {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }
  .luxury-thank-you-content p {
    font-size: 0.9rem;
  }
  .luxury-thank-you-content .btn {
    padding: 14px var(--spacing-lg);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    min-height: 44px;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}
