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

:root {
  --bg-primary: #f8f7f5;
  --text-primary: #5a5a5a;
  --text-secondary: #7a7a7a;
  --accent-teal: #6b9f96;
  --accent-apricot: #d4b5a0;
  --dark-slate: #2a2a2a;
  --light-gray: #efefef;
  --border-color: #e0e0e0;
  --shadow-soft: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-medium: 0 12px 32px rgba(0,0,0,0.12);
}

html, body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

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

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

h1, h2, h3, h4, h5, h6 {
  color: var(--dark-slate);
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-soft);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-slate);
  display: flex;
  align-items: center;
}

.logo a {
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.nav-menu a {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav-menu a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-teal);
  transition: width 0.3s ease;
}

.nav-menu a:hover:after {
  width: 100%;
}

.btn-catalog {
  background-color: var(--accent-teal);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--accent-teal);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-outline {
  background-color: transparent;
  color: var(--accent-teal);
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--accent-teal);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: rgba(107, 159, 150, 0.1);
  transform: scale(1.02);
}

footer {
  background-color: var(--dark-slate);
  color: #ffffff;
  padding: 3rem 2rem;
  margin-top: 4rem;
}

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

.footer-section h3 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

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

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

.footer-section a {
  color: #b0b0b0;
  transition: color 0.3s ease;
}

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

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

.hero {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f0ede8 100%);
  padding: 4rem 2rem;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--dark-slate);
}

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

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

.hero-frame {
  position: absolute;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-frame-1 {
  width: 200px;
  height: 250px;
  top: 10%;
  left: 5%;
}

.floating-frame-2 {
  width: 180px;
  height: 220px;
  bottom: 5%;
  left: 15%;
}

.floating-frame-3 {
  width: 220px;
  height: 280px;
  top: 5%;
  right: 8%;
}

.floating-frame-4 {
  width: 190px;
  height: 240px;
  bottom: 10%;
  right: 5%;
}

.zones-section {
  max-width: 1400px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.zone-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.zone-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-teal);
}

.zone-card h3 {
  color: var(--accent-teal);
  margin-bottom: 1rem;
}

.zone-code {
  display: inline-block;
  background-color: var(--light-gray);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-family: monospace;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 1rem;
}

.routine-map {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.routine-map h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.routine-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.routine-step {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--light-gray);
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.routine-step:hover {
  border-color: var(--accent-teal);
  background-color: rgba(107, 159, 150, 0.1);
}

.routine-step h4 {
  color: var(--accent-teal);
  margin-bottom: 0.5rem;
}

.products-grid {
  max-width: 1400px;
  margin: 3rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-teal);
}

.product-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--light-gray);
}

.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;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

.product-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  flex-grow: 1;
}

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

.btn-contact {
  background-color: var(--accent-apricot);
  color: #ffffff;
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-contact:hover {
  background-color: #c4a590;
  transform: scale(1.02);
}

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

.content-section {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 3rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-soft);
}

.content-section h2 {
  color: var(--dark-slate);
  margin-bottom: 1.5rem;
}

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

.column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--dark-slate);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.product-page {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

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

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

.product-image-container img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.product-details {
  display: flex;
  flex-direction: column;
}

.product-details h1 {
  font-size: 2rem;
  color: var(--dark-slate);
  margin-bottom: 1rem;
}

.product-full-description {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.product-specs {
  background-color: var(--light-gray);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.product-specs h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.spec-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-color);
}

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

.spec-label {
  font-weight: 600;
  color: var(--dark-slate);
}

.spec-value {
  color: var(--text-secondary);
}

.product-price-large {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-teal);
  margin-bottom: 1.5rem;
}

.btn-order {
  background-color: var(--accent-teal);
  color: #ffffff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  display: inline-block;
}

.btn-order:hover {
  background-color: #5a8d84;
  transform: scale(1.02);
}

.contact-form {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  max-width: 600px;
  margin: 0 auto;
}

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

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

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

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 3px rgba(107, 159, 150, 0.1);
}

.form-group input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  margin-bottom: 1.5rem;
}

.checkbox-label input {
  margin-top: 0.25rem;
  margin-right: 0.5rem;
}

.btn-submit {
  background-color: var(--accent-teal);
  color: #ffffff;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  background-color: #5a8d84;
  transform: scale(1.02);
}

.thank-you-message {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #ffffff;
  border-radius: 12px;
  max-width: 600px;
  margin: 3rem auto;
  box-shadow: var(--shadow-soft);
}

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

.thank-you-message p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.btn-home {
  background-color: var(--accent-teal);
  color: #ffffff;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-home:hover {
  background-color: #5a8d84;
  transform: scale(1.02);
}

.mini-guide {
  background-color: var(--light-gray);
  border-left: 4px solid var(--accent-teal);
  border-radius: 4px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.mini-guide h3 {
  margin-bottom: 1rem;
}

.guide-list {
  list-style: none;
  counter-reset: item;
}

.guide-list li {
  counter-increment: item;
  margin-bottom: 0.8rem;
}

.guide-list li:before {
  content: counter(item) ". ";
  font-weight: 600;
  color: var(--accent-teal);
}

.switch-container {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  justify-content: center;
  flex-wrap: wrap;
}

.switch-btn {
  background-color: #ffffff;
  color: var(--text-primary);
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.switch-btn.active {
  background-color: var(--accent-teal);
  color: #ffffff;
  border-color: var(--accent-teal);
}

.switch-btn:hover {
  border-color: var(--accent-teal);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-slate);
  color: #ffffff;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  z-index: 1000;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 0.9rem;
  flex: 1;
  min-width: 200px;
}

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

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

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

.cookie-accept {
  background-color: var(--accent-teal);
  color: #ffffff;
}

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

@media (max-width: 768px) {
  .header-content {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav-menu {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    order: 3;
  }

  .logo {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

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

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

  .hero-frame {
    position: static;
    margin: 1rem auto;
  }

  .product-layout {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }

  .zones-section {
    grid-template-columns: 1fr;
  }

  .routine-steps {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .content-section {
    padding: 1.5rem;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}

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

  h1 {
    font-size: 1.5rem;
  }

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

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

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

  .container {
    padding: 1rem;
  }

  .product-page {
    padding: 1rem;
  }

  .spec-row {
    grid-template-columns: 100px 1fr;
  }
}
