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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #fafbfc;
  letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: #0d0d0d;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #0a0a0a;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: #333;
  font-size: 1rem;
}

a {
  color: #c9a86b;
  text-decoration: none;
  transition: color 200ms ease;
}

a:hover {
  color: #a88a4f;
}

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0d0d0d;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo a {
  color: #0d0d0d;
}

nav {
  display: none;
  gap: 2rem;
  align-items: center;
}

nav a {
  font-size: 1rem;
  color: #333;
  transition: color 200ms ease;
}

nav a:hover {
  color: #c9a86b;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: #0d0d0d;
  transition: 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.cta-btn {
  background-color: #c9a86b;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 2px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 200ms ease;
  text-decoration: none;
  display: inline-block;
}

.cta-btn:hover {
  background-color: #a88a4f;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(201, 168, 107, 0.3);
}

.cta-btn-outline {
  background-color: transparent;
  color: #c9a86b;
  border: 2px solid #c9a86b;
  padding: 0.65rem 1.4rem;
}

.cta-btn-outline:hover {
  background-color: #c9a86b;
  color: #ffffff;
}

.hero {
  background: linear-gradient(135deg, #fafbfc 0%, #f5f7fa 100%);
  background-image: url('images/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 3rem 1rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(250, 251, 252, 0.85), rgba(201, 168, 107, 0.1));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  color: #0d0d0d;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

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

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c9a86b, transparent);
}

.divine-inner-radiance {
  background-color: #ffffff;
  padding: 3rem 1.5rem;
  border-radius: 4px;
  margin-bottom: 3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.divine-inner-radiance-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2rem;
  font-style: italic;
}

.radiance-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.radiance-point {
  padding: 1rem;
  background-color: #fafbfc;
  border-left: 4px solid #c9a86b;
  border-radius: 2px;
}

.radiance-point strong {
  color: #0d0d0d;
  display: block;
  margin-bottom: 0.5rem;
}

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

.tile {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 220ms ease;
  cursor: pointer;
}

.tile:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(201, 168, 107, 0.2);
}

.tile-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border-radius: 2px;
  position: relative;
}

.tile-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(201, 168, 107, 0.15) 100%);
  pointer-events: none;
}

.tile h3 {
  margin-bottom: 1rem;
  color: #0d0d0d;
}

.tile-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1rem;
}

.tile-quote {
  font-style: italic;
  color: #666;
  border-left: 3px solid #c9a86b;
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.quick-notes {
  background-color: #fafbfc;
  padding: 2rem;
  border-radius: 4px;
  margin-bottom: 3rem;
}

.quick-notes h3 {
  margin-bottom: 1.5rem;
}

.notes-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.note-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.note-item::before {
  content: '✨';
  flex-shrink: 0;
  font-size: 1.3rem;
}

.note-text {
  color: #333;
  font-weight: 500;
}

.notes-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  font-style: italic;
}

.rituals-section {
  background-color: #fafbfc;
  padding: 3rem 1.5rem;
  border-radius: 4px;
  margin-bottom: 3rem;
}

.rituals-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2rem;
  font-style: italic;
}

.rituals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.ritual-item {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 2px;
  border-top: 3px solid #c9a86b;
}

.ritual-item strong {
  color: #0d0d0d;
  display: block;
  margin-bottom: 0.5rem;
}

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

.product-card {
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 200ms ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(201, 168, 107, 0.25);
}

.product-image-container {
  position: relative;
  overflow: hidden;
  height: 280px;
}

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

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

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #c9a86b;
  color: #ffffff;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 2px;
  z-index: 10;
}

.product-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #0d0d0d;
}

.product-meta {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.meta-item {
  display: inline-block;
}

.product-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1rem;
  flex-grow: 1;
}

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

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #c9a86b;
  margin-bottom: 1rem;
}

.product-btn {
  background-color: #c9a86b;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 2px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 200ms ease;
  text-decoration: none;
  display: block;
  text-align: center;
  width: 100%;
}

.product-btn:hover {
  background-color: #a88a4f;
  transform: scale(1.05);
}

.text-section {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 4px;
  margin-bottom: 3rem;
  line-height: 1.9;
}

.text-section h3 {
  margin-bottom: 1.5rem;
}

.text-section p {
  margin-bottom: 1.3rem;
  font-size: 1rem;
  color: #333;
}

.dark-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #e8e8e8;
  padding: 3rem 1rem;
}

.dark-section h2,
.dark-section h3 {
  color: #e8e8e8;
}

.dark-section p {
  color: #d0d0d0;
}

.dark-section .section-title h2::after {
  background: linear-gradient(90deg, transparent, #c9a86b, transparent);
}

.harmonies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.harmony-item {
  background-color: rgba(201, 168, 107, 0.1);
  padding: 1.5rem;
  border-radius: 2px;
  border-left: 4px solid #c9a86b;
}

.harmony-item strong {
  color: #e8e8e8;
  display: block;
  margin-bottom: 0.5rem;
}

.harmony-item p {
  color: #d0d0d0;
  font-size: 0.95rem;
}

.faq-container {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 4px;
  margin-bottom: 3rem;
}

.faq-item {
  border-bottom: 1px solid #e8e8e8;
  padding: 1.5rem 0;
}

.faq-item:first-child {
  border-top: 1px solid #e8e8e8;
}

.faq-question {
  font-weight: 700;
  color: #0d0d0d;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-toggle {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background-color: #c9a86b;
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: transform 200ms ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
  padding-top: 1rem;
}

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

.testimonials {
  background-color: #fafbfc;
  padding: 2rem;
  border-radius: 4px;
  margin-bottom: 3rem;
}

.testimonial-item {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #c9a86b;
}

.testimonial-title {
  font-weight: 700;
  color: #0d0d0d;
  margin-bottom: 0.8rem;
}

.testimonial-text {
  color: #333;
  font-style: italic;
  line-height: 1.8;
}

footer {
  background-color: #1a1a1a;
  color: #d0d0d0;
  padding: 3rem 1rem 1.5rem;
  margin-top: 3rem;
}

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

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-brand h3 {
  color: #e8e8e8;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #999;
}

.footer-contact {
  margin-top: 1rem;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.footer-links a {
  color: #c9a86b;
  font-size: 0.95rem;
  transition: color 200ms ease;
}

.footer-links a:hover {
  color: #e8e8e8;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
  color: #999;
  font-size: 0.9rem;
}

.contact-form {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 4px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #0d0d0d;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 200ms ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c9a86b;
  box-shadow: 0 0 0 3px rgba(201, 168, 107, 0.1);
}

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

.form-checkbox {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 0.3rem;
  cursor: pointer;
}

.form-checkbox label {
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

.form-checkbox a {
  color: #c9a86b;
}

.thank-you-message {
  text-align: center;
  padding: 4rem 1rem;
  background-color: #ffffff;
  border-radius: 4px;
  max-width: 600px;
  margin: 4rem auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.thank-you-message h1 {
  color: #c9a86b;
  margin-bottom: 1rem;
}

.thank-you-message p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #333;
}

.thank-you-message .cta-btn {
  background-color: #c9a86b;
  color: #ffffff;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #e8e8e8;
  padding: 1.5rem;
  z-index: 2000;
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.cookie-consent.show {
  display: flex;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.cookie-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.cookie-text a {
  color: #c9a86b;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 2px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 200ms ease;
}

.cookie-btn-accept {
  background-color: #c9a86b;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background-color: #a88a4f;
}

.cookie-btn-decline {
  background-color: transparent;
  color: #e8e8e8;
  border: 2px solid #e8e8e8;
}

.cookie-btn-decline:hover {
  background-color: rgba(232, 232, 232, 0.1);
}

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

  h2 {
    font-size: 1.5rem;
  }

  .section {
    padding: 2rem 1rem;
  }

  .quick-tiles {
    grid-template-columns: 1fr;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 577px) and (max-width: 991px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

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

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

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

  nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

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

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

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

  nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}
