:root {
  --bg-panna: #FAF7F2;
  --text-grafite: #2B2D2F;
  --accent-rame: #B87654;
  --accent-grigio: #9B8B7E;
  --accent-verde: #A8B396;
  --dark-nero: #1A1A1A;
  --border-light: #E5DED4;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--bg-panna);
  color: var(--text-grafite);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

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

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-rame);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
}

.nav-menu a {
  color: var(--text-grafite);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 180ms;
}

.nav-menu a:hover {
  color: var(--accent-rame);
}

.btn-catalog {
  background: var(--accent-rame);
  color: white;
  border: 2px solid var(--accent-rame);
  padding: 10px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 180ms;
  display: inline-block;
}

.btn-catalog:hover {
  background: transparent;
  color: var(--accent-rame);
  transform: scale(1.02);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 10px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 180ms;
  display: inline-block;
}

.btn-outline:hover {
  background: white;
  color: var(--dark-nero);
  transform: scale(1.02);
}

.btn-primary {
  background: var(--accent-rame);
  color: white;
  border: 2px solid var(--accent-rame);
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 180ms;
  display: inline-block;
  cursor: pointer;
}

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

.hero-section {
  background: linear-gradient(135deg, var(--dark-nero) 0%, #2B2B2B 100%);
  padding: 80px 0 120px;
  position: relative;
  color: white;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content .subtitle {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.collage-card {
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}

.collage-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.collage-card p {
  padding: 15px;
  font-size: 14px;
  text-align: center;
}

.overview-slab {
  background: var(--bg-panna);
  border-radius: 12px;
  padding: 40px;
  margin: -60px 20px 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  color: var(--text-grafite);
  font-size: 16px;
  line-height: 1.7;
}

.quick-cards-section {
  padding: 80px 0;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
}

.quick-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.quick-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  border: 1px solid var(--border-light);
}

.quick-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--accent-rame);
}

.quick-card .card-desc {
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.card-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.card-gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
}

.quick-card ul {
  list-style: none;
  padding-left: 0;
}

.quick-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}

.quick-card li:last-child {
  border-bottom: none;
}

.routine-strip {
  background: white;
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.routine-chips {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.chip {
  background: var(--bg-panna);
  border: 1px solid var(--accent-grigio);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-grafite);
}

.routine-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.routine-text p {
  font-size: 15px;
  margin-bottom: 10px;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 60px 0;
}

.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all 200ms;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card:hover {
  border-color: var(--accent-rame);
  transform: scale(1.02);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 200ms;
}

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

.product-info {
  padding: 25px;
}

.product-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-grafite);
}

.product-meta {
  font-size: 13px;
  color: var(--accent-grigio);
  margin-bottom: 15px;
}

.product-desc {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--text-grafite);
}

.product-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--accent-rame);
  margin-bottom: 15px;
}

.product-card .btn-primary {
  width: 100%;
  text-align: center;
}

.faq-section {
  padding: 80px 0;
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 25px;
}

.faq-item h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--accent-rame);
}

.faq-item p {
  font-size: 15px;
  line-height: 1.6;
}

.cta-section {
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 17px;
  margin-bottom: 30px;
  color: var(--accent-grigio);
}

footer {
  background: var(--dark-nero);
  color: white;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--accent-rame);
}

.footer-col p, .footer-col a {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: var(--accent-rame);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.product-detail {
  padding: 60px 0;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.product-detail-image img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border-light);
}

.product-detail-content h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.product-detail-desc {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.product-specs {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
}

.product-specs h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--accent-rame);
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 15px;
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: 600;
}

.about-section {
  padding: 60px 0;
}

.about-hero {
  background: var(--accent-rame);
  color: white;
  padding: 60px 0;
  text-align: center;
  margin-bottom: 60px;
}

.about-hero h1 {
  font-size: 40px;
}

.about-block {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 35px;
  margin-bottom: 30px;
}

.about-block h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--accent-rame);
}

.about-block h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--accent-grigio);
}

.about-block p, .about-block li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-block ul {
  list-style: none;
  padding-left: 0;
}

.about-block li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.about-block li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-rame);
  font-weight: 700;
}

.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-info {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 35px;
}

.contact-info h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--accent-rame);
}

.contact-info p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.contact-form {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 35px;
}

.contact-form h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--accent-rame);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

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

.checkbox-group label {
  font-size: 13px;
  line-height: 1.5;
}

.thank-you-section {
  padding: 100px 0;
  text-align: center;
}

.thank-you-section h1 {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--accent-rame);
}

.thank-you-section p {
  font-size: 17px;
  margin-bottom: 30px;
}

.legal-section {
  padding: 60px 0;
}

.legal-content {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 32px;
  margin-bottom: 25px;
  color: var(--accent-rame);
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 35px;
  margin-bottom: 15px;
  color: var(--text-grafite);
}

.legal-content h3 {
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 12px;
  color: var(--accent-grigio);
}

.legal-content p, .legal-content li {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.legal-content ul {
  padding-left: 25px;
  margin-bottom: 20px;
}

.section-switcher {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.switcher-btn {
  background: white;
  border: 2px solid var(--border-light);
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 180ms;
}

.switcher-btn.active,
.switcher-btn:hover {
  border-color: var(--accent-rame);
  color: var(--accent-rame);
}

.guide-section {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 35px;
  margin-bottom: 25px;
}

.guide-section h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--accent-rame);
}

.guide-section p, .guide-section li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.guide-section ul {
  list-style: none;
  padding-left: 0;
}

.guide-section li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.guide-section li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-rame);
  font-weight: 700;
}

.intro-text {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 40px;
  text-align: center;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-nero);
  color: white;
  padding: 20px;
  z-index: 2000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--accent-rame);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 180ms;
}

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

.cookie-accept:hover {
  background: #9B5A3C;
}

.cookie-decline {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-decline:hover {
  background: rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-content h1 {
    font-size: 48px;
  }
  
  .quick-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .product-detail-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero-content h1 {
    font-size: 52px;
  }
}
