:root {
  --color-bg: #f5f1ed;
  --color-text: #1a1a1a;
  --color-primary: #d4af88;
  --color-secondary: #c9a961;
  --color-light: #fef9f3;
  --color-dark: #3a3a3a;
  --color-pearl: #e8dcc8;
  --color-accent: #d9cfc3;
  --border-radius: 8px;
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  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(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--color-text);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all var(--transition);
}

a:hover {
  color: var(--color-secondary);
}

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

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

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo:hover {
  color: var(--color-primary);
}

.logo img {
  width: 40px;
  height: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  font-size: 1rem;
  color: var(--color-text);
  position: relative;
  font-weight: 500;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition);
}

nav a:hover::after {
  width: 100%;
}

.btn-catalog {
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-catalog:hover {
  background: transparent;
  color: var(--color-primary);
  transform: scale(1.05);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: white;
  transform: scale(1.05);
}

.btn-submit {
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 1rem;
}

.btn-submit:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  transform: scale(1.05);
}

hero {
  background: linear-gradient(135deg, var(--color-pearl) 0%, var(--color-light) 100%);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 3rem 1.5rem;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--color-dark);
  line-height: 1.8;
}

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

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

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

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

.tile {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-pearl);
  transition: all var(--transition);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tile:hover {
  box-shadow: 0 8px 24px rgba(212, 175, 136, 0.2);
  transform: scale(1.05);
  background: linear-gradient(135deg, var(--color-light) 0%, white 100%);
}

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

.tile-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.quote {
  font-style: italic;
  color: var(--color-primary);
  margin: 1rem 0;
  padding-left: 1rem;
  border-left: 3px solid var(--color-primary);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
}

.product-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all var(--transition);
  cursor: pointer;
  border: 1px solid var(--color-pearl);
}

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

.product-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-pearl) 0%, var(--color-light) 100%);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(212, 175, 136, 0.15);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.product-info {
  padding: 1.5rem;
}

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

.product-meta {
  font-size: 0.875rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-meta span {
  border-right: 1px solid var(--color-pearl);
  padding-right: 0.5rem;
}

.product-meta span:last-child {
  border-right: none;
}

.product-description {
  font-size: 0.95rem;
  color: var(--color-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.product-card a.btn-outline {
  width: 100%;
  text-align: center;
  display: block;
}

.section-light {
  background-color: white;
}

.section-dark {
  background: linear-gradient(135deg, var(--color-dark) 0%, #2a2a2a 100%);
  color: white;
}

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

.section-dark p {
  color: rgba(255, 255, 255, 0.9);
}

.spiritual-block {
  background: var(--color-light);
  border-left: 4px solid var(--color-primary);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: var(--border-radius);
}

.spiritual-block p {
  color: var(--color-text);
  line-height: 1.8;
  font-size: 1rem;
}

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

.grid-item {
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-pearl);
  text-align: center;
  transition: all var(--transition);
}

.grid-item:hover {
  box-shadow: 0 8px 24px rgba(212, 175, 136, 0.15);
}

.grid-item strong {
  color: var(--color-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.faq-container {
  max-width: 800px;
  margin: 2rem auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--color-pearl);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--color-light);
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--color-text);
  transition: all var(--transition);
}

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

.faq-toggle {
  font-size: 1.5rem;
  transition: transform var(--transition);
}

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

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 1000px;
}

.faq-answer p {
  line-height: 1.8;
  color: var(--color-dark);
}

form {
  max-width: 600px;
  margin: 2rem auto;
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-pearl);
}

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

form input,
form textarea {
  width: 100%;
  padding: 0.875rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--color-pearl);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition);
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 136, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.checkbox-group input {
  width: auto;
  margin: 0;
}

.checkbox-group label {
  margin: 0;
}

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

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

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

.footer-section h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

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

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

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

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

.footer-brand p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-dark);
  color: white;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

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

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

.cookie-buttons button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  transition: all var(--transition);
}

.btn-accept {
  background: var(--color-primary);
  color: white;
}

.btn-accept:hover {
  background: var(--color-secondary);
}

.btn-decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-decline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

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

.thank-you-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.thank-you-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.thank-you-content a {
  display: inline-block;
  margin-top: 1rem;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.product-detail-image {
  position: relative;
}

.product-detail-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

.specs-list dt {
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 1rem;
}

.specs-list dt:first-child {
  margin-top: 0;
}

.specs-list dd {
  margin: 0.5rem 0 0 0;
  color: var(--color-dark);
}

.toggle-category {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.toggle-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--color-pearl);
  background: white;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 600;
  color: var(--color-text);
}

.toggle-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.toggle-btn:hover {
  border-color: var(--color-primary);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-light);
  z-index: 999;
  flex-direction: column;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu nav ul {
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
}

.mobile-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-text);
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  nav {
    display: none;
  }

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

  .btn-catalog {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 400px;
    padding: 2rem 1rem;
  }

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

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

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

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

  .section {
    padding: 2rem 1rem;
  }

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

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons button {
    flex: 1;
  }

  .faq-container {
    max-width: 100%;
  }

  form {
    padding: 1.5rem;
  }
}

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

  h2 {
    font-size: 1.25rem;
  }

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

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

  .tiles-container {
    gap: 1rem;
  }

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

  .product-image {
    height: 200px;
  }

  .product-price {
    font-size: 1.5rem;
  }

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

  .logo {
    font-size: 1.25rem;
  }

  .section {
    padding: 1.5rem 0.75rem;
  }

  form {
    padding: 1.25rem;
  }
}
