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

:root {
  --bg-radiant: linear-gradient(135deg, #f5f1e8 0%, #e8dcc8 50%, #d4c5a9 100%);
  --bg-light: #faf8f3;
  --bg-dark: #1a1612;
  --text-dark: #2b2520;
  --accent-gold: #d4af37;
  --accent-silver: #e8e0d5;
  --highlight-ray: #fef9e7;
  --border-light: #e0d5c7;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin: 1.5rem 0 1rem 0;
  color: var(--text-dark);
}

h1 {
  font-size: 3rem;
  text-align: center;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.2rem;
  text-align: justify;
  letter-spacing: 0.3px;
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color 220ms ease;
}

a:hover {
  color: var(--accent-silver);
}

button, .btn {
  border: 2px solid var(--accent-gold);
  background: transparent;
  color: var(--accent-gold);
  padding: 12px 32px;
  font-size: 16px;
  cursor: pointer;
  transition: all 200ms ease;
  text-decoration: none;
  display: inline-block;
}

button:hover, .btn:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: scale(1.05);
}

button.filled {
  background: var(--accent-gold);
  color: var(--text-dark);
}

button.filled:hover {
  background: var(--accent-silver);
  color: var(--text-dark);
  transform: scale(1.05);
}

header {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-decoration: none;
}

.nav-menu {
  display: none;
  list-style: none;
}

.nav-menu.active {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
  width: 100%;
  padding: 1rem;
}

.nav-menu li {
  margin: 0.5rem 0;
}

.nav-menu a {
  color: var(--text-dark);
}

.toggle-menu {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
    position: static;
    background: none;
    border: none;
    width: auto;
    padding: 0;
    gap: 2rem;
  }

  .toggle-menu {
    display: none;
  }

  .header-container {
    padding: 0 2rem;
  }
}

.hero {
  background: url('images/hero-banner.jpg') center/cover no-repeat;
  background-attachment: fixed;
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(212, 175, 55, 0.15);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: white;
  font-size: 2.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}

.hero .subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
  }

  .hero h1 {
    font-size: 3.5rem;
  }
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

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

.radiant-intro {
  background: linear-gradient(135deg, #fef9e7 0%, #e8dcc8 100%);
  padding: 3rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.radiant-intro p {
  font-size: 1.1rem;
  line-height: 2;
}

.ray-points {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.ray-point {
  padding: 1.5rem;
  background: rgba(212, 175, 55, 0.08);
  border-left: 4px solid var(--accent-gold);
  border-radius: 4px;
}

.ray-point strong {
  color: var(--accent-gold);
}

.tiles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .tiles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tile {
  background: white;
  border: 1px solid var(--border-light);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: all 220ms ease;
}

.tile:hover {
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
  transform: scale(1.05);
}

.tile h3 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.tile .quote {
  font-style: italic;
  color: #666;
  font-size: 0.95rem;
  margin: 1rem 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  background: var(--highlight-ray);
  padding: 2rem;
  border-radius: 8px;
}

.note-item {
  text-align: center;
  padding: 1rem;
  background: white;
  border-radius: 4px;
  border: 1px solid var(--accent-silver);
}

.note-item strong {
  color: var(--accent-gold);
  display: block;
}

.rituals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.ritual-card {
  background: white;
  padding: 1.5rem;
  border: 2px solid var(--accent-silver);
  border-radius: 8px;
  text-align: center;
}

.ritual-card strong {
  color: var(--accent-gold);
  display: block;
  margin-bottom: 0.5rem;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: all 220ms ease;
  cursor: pointer;
}

.product-card:hover {
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.2);
  transform: scale(1.05);
}

.product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.3), transparent);
  pointer-events: none;
}

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--accent-gold);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-info {
  padding: 1.5rem;
}

.product-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.product-meta {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 1rem;
}

.product-description {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

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

.product-btn {
  border: 2px solid var(--accent-gold);
  background: transparent;
  color: var(--accent-gold);
  padding: 8px 16px;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all 200ms ease;
  text-decoration: none;
  display: inline-block;
}

.product-btn:hover {
  background: var(--accent-gold);
  color: white;
  transform: scale(1.05);
}

.dark-section {
  background: var(--bg-dark);
  color: white;
}

.dark-section h2, .dark-section h3 {
  color: var(--accent-silver);
}

.dark-section p {
  text-align: justify;
  line-height: 1.8;
}

.harmony-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.harmony-item {
  background: rgba(212, 175, 55, 0.15);
  padding: 1.5rem;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  text-align: center;
}

.harmony-item strong {
  color: var(--accent-gold);
  display: block;
  margin-bottom: 0.5rem;
}

.harmony-item span {
  font-size: 0.9rem;
  line-height: 1.6;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .faq-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq-item {
  background: white;
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  cursor: pointer;
  transition: all 220ms ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.faq-question {
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-toggle {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--accent-gold);
  color: white;
  text-align: center;
  line-height: 20px;
  border-radius: 50%;
  font-size: 0.9rem;
  transition: transform 220ms ease;
}

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

.faq-answer {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  color: #666;
  line-height: 1.8;
  text-align: justify;
}

.faq-item.active .faq-answer {
  display: block;
}

.cta-section {
  background: linear-gradient(135deg, #fef9e7 0%, #e8dcc8 100%);
  padding: 3rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  margin: 3rem 0;
}

.cta-section h2 {
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.text-block {
  background: white;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 8px;
  border-left: 4px solid var(--accent-gold);
}

.text-block p {
  text-align: justify;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-dark);
}

footer {
  background: var(--bg-dark);
  color: white;
  padding: 3rem 1.5rem 1rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-section h3 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--accent-silver);
  font-size: 0.95rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--accent-silver);
}

.product-detail-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .product-detail-container {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.product-detail-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.product-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-detail-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.25), transparent);
  pointer-events: none;
}

.product-detail-info h1 {
  text-align: left;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.product-detail-desc {
  background: var(--highlight-ray);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.product-detail-desc p {
  text-align: justify;
  line-height: 1.9;
  font-size: 1rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.spec-item {
  background: white;
  padding: 1rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
}

.spec-item strong {
  color: var(--accent-gold);
  display: block;
  margin-bottom: 0.3rem;
}

.spec-item span {
  font-size: 0.9rem;
  color: #666;
}

.product-detail-footer {
  margin-top: 2rem;
  padding: 2rem;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 8px;
}

.product-detail-footer p {
  color: #666;
  margin-bottom: 1rem;
}

.product-detail-price {
  font-size: 2rem;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 200ms ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.checkbox-group input {
  width: auto;
  margin-top: 4px;
}

.checkbox-group label {
  margin: 0;
  font-size: 0.9rem;
}

.checkbox-group a {
  color: var(--accent-gold);
}

.thank-you-container {
  text-align: center;
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, #fef9e7 0%, #e8dcc8 100%);
  border-radius: 8px;
  margin: 3rem auto;
  max-width: 600px;
}

.thank-you-container h1 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.thank-you-container p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: white;
  padding: 1.5rem;
  z-index: 1000;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: 1px solid var(--accent-gold);
  background: transparent;
  color: var(--accent-gold);
  cursor: pointer;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: all 200ms ease;
}

.cookie-btn.accept {
  background: var(--accent-gold);
  color: white;
}

.cookie-btn:hover {
  transform: scale(1.05);
}

.image-text-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .image-text-row {
    grid-template-columns: 1fr 1fr;
  }

  .image-text-row.reverse {
    direction: rtl;
  }

  .image-text-row.reverse > * {
    direction: ltr;
  }
}

.image-text-row img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.image-text-row .text-content {
  padding: 1rem;
}

.accordion {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  margin-bottom: 1rem;
}

.accordion-header {
  padding: 1rem;
  background: rgba(212, 175, 55, 0.05);
  cursor: pointer;
  font-weight: 600;
  color: var(--accent-gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 200ms ease;
}

.accordion-header:hover {
  background: rgba(212, 175, 55, 0.1);
}

.accordion-content {
  display: none;
  padding: 1.5rem;
  color: #666;
  line-height: 1.8;
  text-align: justify;
}

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

.toggle-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  transition: transform 220ms ease;
}

.accordion.active .toggle-icon {
  transform: rotate(180deg);
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .hero {
    padding: 3rem 1rem;
  }

  .section {
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

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

  .hero-buttons {
    gap: 0.5rem;
  }

  button, .btn {
    padding: 10px 24px;
    font-size: 14px;
  }
}
