:root {
  --bg-dawn: #faf5f1;
  --text-dark: #0a0a0a;
  --accent-gold: #d4a574;
  --accent-sunset: #e8956e;
  --highlight-pink: #f5c5d8;
  --dark-section: #1a1612;
  --border-light: #e8d5c4;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

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

a {
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.2s ease;
}

header {
  background-color: var(--bg-dawn);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.5px;
  transition: transform 0.2s ease;
}

header .logo:hover {
  transform: scale(1.02);
}

header nav a {
  margin: 0 1rem;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

header nav a:hover {
  color: var(--accent-gold);
}

.cta-btn {
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--accent-gold);
  background-color: transparent;
  color: var(--accent-gold);
  border-radius: 2px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

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

.cta-btn-filled {
  background-color: var(--accent-gold);
  color: white;
  border: 1px solid var(--accent-gold);
}

.cta-btn-filled:hover {
  background-color: var(--accent-sunset);
  border-color: var(--accent-sunset);
  transform: scale(1.04);
}

.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: linear-gradient(135deg, #faf5f1 0%, #f5e8e0 50%, #f0d8d0 100%);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  color: var(--text-dark);
  max-width: 90%;
}

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

.hero .subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.5;
}

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

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

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

.section-title h2 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.section-title p {
  color: #666;
  font-size: 1rem;
}

.awakening-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.awakening-item {
  padding: 2rem;
  background-color: white;
  border: 1px solid var(--border-light);
  border-radius: 3px;
  transition: all 0.2s ease;
}

.awakening-item:hover {
  box-shadow: 0 8px 24px rgba(212, 165, 116, 0.1);
  transform: translateY(-4px);
}

.awakening-item h3 {
  color: var(--accent-gold);
  margin-bottom: 0.8rem;
}

.awakening-item p {
  color: #555;
  font-size: 0.95rem;
}

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

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

.tile:hover {
  box-shadow: 0 12px 32px rgba(212, 165, 116, 0.15);
  transform: scale(1.04);
}

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

.tile-subtitle {
  font-weight: 600;
  color: var(--accent-sunset);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.tile-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background-color: var(--highlight-pink);
  border-radius: 2px;
}

.quick-notes {
  background-color: white;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-light);
  border-radius: 3px;
  margin: 2rem 0;
}

.quick-notes h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--accent-gold);
}

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

.note-item {
  padding: 1rem;
  background-color: var(--highlight-pink);
  border-radius: 2px;
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

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

.product-card:hover {
  box-shadow: 0 12px 36px rgba(212, 165, 116, 0.12);
  transform: scale(1.04);
}

.product-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-dawn) 0%, var(--highlight-pink) 100%);
}

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

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

.product-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--accent-gold);
  color: white;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 2px;
  z-index: 10;
}

.product-content {
  padding: 1.5rem;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

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

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

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

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

.product-btn {
  width: 100%;
  padding: 0.7rem;
  background-color: var(--accent-gold);
  color: white;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.product-btn:hover {
  background-color: var(--accent-sunset);
  transform: scale(1.02);
}

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

.dark-section h2 {
  color: var(--highlight-pink);
}

.dark-section h3 {
  color: var(--accent-gold);
}

.dark-section .section-title p {
  color: #bbb;
}

.dark-section .tile {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 165, 116, 0.2);
  color: white;
}

.dark-section .tile:hover {
  background-color: rgba(212, 165, 116, 0.08);
}

.dark-section .tile h3 {
  color: var(--highlight-pink);
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-column h3 {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

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

.faq-answer {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

footer {
  background-color: var(--dark-section);
  color: white;
  padding: 3rem 1.5rem 1.5rem;
}

footer .footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

footer h4 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 1rem;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 0.7rem;
}

footer a {
  color: #bbb;
  transition: color 0.2s ease;
  font-size: 0.95rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(212, 165, 116, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #999;
}

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

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-light);
  border-radius: 2px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

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

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

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

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

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

.thank-you-message {
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 600px;
  margin: 3rem auto;
}

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

.thank-you-message p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.product-detail-image {
  position: relative;
  height: 400px;
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}

.product-detail-content h1 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.product-specs {
  background-color: white;
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  border-radius: 3px;
  margin: 2rem 0;
}

.product-specs h4 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.specs-list {
  list-style: none;
}

.specs-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}

.specs-list li:last-child {
  border-bottom: none;
}

.specs-label {
  color: var(--accent-gold);
  font-weight: 600;
}

.about-hero {
  background: linear-gradient(135deg, var(--bg-dawn) 0%, var(--highlight-pink) 100%);
  padding: 3rem 1.5rem;
  text-align: center;
}

.about-hero h1 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

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

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: white;
  padding: 1.5rem;
  z-index: 9999;
  display: none;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

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

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

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

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--accent-gold);
  background-color: transparent;
  color: var(--accent-gold);
  border-radius: 2px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

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

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

.cookie-btn-accept:hover {
  background-color: var(--accent-sunset);
  border-color: var(--accent-sunset);
}

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

  h2 {
    font-size: 1.4rem;
  }

  .hero {
    height: 300px;
  }

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

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

  header nav {
    flex-direction: column;
    padding: 1rem;
  }

  header nav a {
    margin: 0.5rem 0;
  }

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

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

  .product-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-detail-image {
    height: 300px;
  }

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

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

@media (max-width: 480px) {
  .section {
    padding: 2rem 1rem;
  }

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

  .tiles-grid,
  .awakening-list {
    grid-template-columns: 1fr;
  }

  .header nav {
    padding: 0.8rem;
  }
}
