:root {
  --bg-primary: #f8f5f0;
  --bg-secondary: #fef9f5;
  --bg-pattern: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(215, 180, 140, 0.03) 2px, rgba(215, 180, 140, 0.03) 4px);
  --text-primary: #3a3530;
  --text-secondary: #5a5450;
  --accent-gold: #c9a961;
  --accent-gold-light: #e8dcc8;
  --accent-gold-dark: #a68a52;
  --border-light: #e8e3dd;
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.08);
}

* {
  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-primary);
  background-image: var(--bg-pattern);
  color: var(--text-primary);
  line-height: 1.6;
  letter-spacing: 0.3px;
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
}

header {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-soft);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.logo-mark {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 2px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link.active {
  background-color: var(--accent-gold);
  color: white;
}

.nav-link:not(.active) {
  border-color: var(--accent-gold);
  color: var(--text-primary);
}

.nav-link:not(.active):hover {
  background-color: rgba(201, 169, 97, 0.1);
}

.nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: currentColor;
  color: var(--text-primary);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
}

.nav-link.active .nav-badge {
  background-color: white;
  color: var(--accent-gold);
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
  }

  .nav-menu {
    gap: 0.5rem;
  }

  .nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .logo-text {
    display: none;
  }
}

hero {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  background-image: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%), var(--bg-pattern);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--accent-gold-light);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  color: var(--text-primary);
  text-balance: true;
}

.hero .subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

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

.btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

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

.btn-primary:hover {
  background-color: var(--accent-gold-dark);
  transform: scale(1.02);
}

.btn-secondary {
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  background-color: transparent;
}

.btn-secondary:hover {
  background-color: rgba(201, 169, 97, 0.1);
  transform: scale(1.02);
}

.btn-small {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  hero {
    padding: 3rem 1.5rem;
  }

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

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

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

  .btn {
    width: 100%;
  }
}

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

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.step-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 2rem;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.step-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

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

.step-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.step-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  background-color: var(--bg-secondary);
  border-radius: 1.5rem;
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.content-block.reverse {
  direction: rtl;
}

.content-block.reverse > * {
  direction: ltr;
}

.content-block-image {
  flex: 1;
  height: 350px;
  overflow: hidden;
  border-radius: 1rem;
}

.content-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-block-text {
  flex: 1;
  padding: 2rem;
}

.content-block-text h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.content-block-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .content-block {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .content-block.reverse {
    direction: ltr;
  }

  .content-block-image {
    height: 250px;
  }

  .content-block-text {
    padding: 1.5rem;
  }

  .content-block-text h3 {
    font-size: 1.5rem;
  }
}

.faq-section {
  background-color: transparent;
  margin-bottom: 4rem;
}

.faq-item {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 2rem;
  align-items: start;
}

.faq-item-image {
  width: 250px;
  height: 250px;
  border-radius: 1rem;
  overflow: hidden;
}

.faq-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-item-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.faq-item-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .faq-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-item-image {
    width: 100%;
    height: 200px;
  }
}

.catalog-intro {
  background-color: transparent;
  padding: 0;
  margin-bottom: 3rem;
}

.catalog-intro p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.switcher-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  background-color: var(--bg-secondary);
  border: 2px solid var(--border-light);
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

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

.product-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  box-shadow: var(--shadow-medium);
  transform: scale(1.02);
}

.product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: var(--bg-primary);
}

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

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

.product-info {
  padding: 1.5rem;
}

.product-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.product-card:hover .product-name {
  color: var(--accent-gold);
}

.product-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
  min-height: 2.85rem;
}

.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.3rem;
  font-weight: 600;
  color: var(--text-primary);
}

.product-btn {
  padding: 0.6rem 1.2rem;
  background-color: var(--accent-gold);
  color: white;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
}

.product-btn:hover {
  background-color: var(--accent-gold-dark);
}

.category-section {
  margin-bottom: 3.5rem;
}

.category-header {
  margin-bottom: 2rem;
}

.category-header h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.category-intro {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 100%;
}

footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
}

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

.footer-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

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

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

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

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

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-primary);
  background-color: white;
}

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

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

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

.checkbox-group input {
  margin-top: 0.3rem;
  cursor: pointer;
}

.checkbox-group label {
  margin-bottom: 0;
  cursor: pointer;
  font-size: 0.95rem;
}

.form-container {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 1.5rem;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
}

.thank-you-container {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.thank-you-container h1 {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.thank-you-container p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.collage-corner {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2rem;
  align-items: start;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 1.5rem;
  padding: 2rem;
  margin: 3rem 0;
  box-shadow: var(--shadow-soft);
}

.collage-image {
  width: 250px;
  height: 250px;
  border-radius: 1rem;
  overflow: hidden;
}

.collage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.collage-text p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .collage-corner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .collage-image {
    width: 100%;
    height: 200px;
  }

  .section {
    padding: 2rem 1rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-consent.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

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

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

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-accept:hover {
  background-color: var(--accent-gold-dark);
}

.cookie-reject {
  background-color: transparent;
  border: 2px solid var(--border-light);
  color: var(--text-primary);
}

.cookie-reject:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

@media (max-width: 768px) {
  .cookie-consent {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}

.order-form-content {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 1.5rem;
  padding: 2rem;
  max-width: 600px;
  margin: 2rem auto;
  box-shadow: var(--shadow-soft);
}

.legal-text {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 1.5rem;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-text h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.legal-text p {
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.legal-text ul,
.legal-text ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.legal-text li {
  margin-bottom: 0.5rem;
}
