:root {
  --primary: #4CAF50;
  --primary-dark: #388E3C;
  --primary-light: #A5D6A7;
  --accent: #FF5722;
  --text: darkcyan;
  --text-light: #666666;
  --background: aliceblue;
  --background-alt: #F9F9F9;
  --border: #EEEEEE;

  --font-main: 'Mulish', sans-serif;
  --font-headings: 'Playfair Display', serif;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background-color: var(--background);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  margin-bottom: var(--space-md);
  line-height: 1.3;
  color: var(--primary-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: var(--space-md);
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-md);
}

button, .btn {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: var(--space-sm) var(--space-lg);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-main);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.header {
  position: relative;
  z-index: 100;
  padding: var(--space-md) 0;
  background-color: rgba(255, 255, 255, 0.95);
  transform-origin: top;
  transition: transform var(--transition-normal);
}

.header.hidden {
  transform: scaleY(0);
}

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

.logo {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-dark);
  cursor: pointer;
  position: relative;
  z-index: 5;
  position: relative;
  z-index: 5;
}

.nav-menu {
  display: flex;
  list-style-type: none;
}

.nav-item {
  margin-left: var(--space-lg);
}

.nav-link {
  font-weight: 600;
  position: relative;
}

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

.nav-link:hover:after, .nav-link.active:after {
  width: 100%;
}

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-color: var(--background-alt);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
}

.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: var(--space-lg);
}

.section {
  padding: var(--space-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--primary);
  margin: var(--space-sm) auto 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.feature-item {
  text-align: center;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  transition: transform var(--transition-normal);
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.product-card {
  background-color: var(--background);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  height: 200px;
  background-color: var(--background-alt);
  background-size: cover;
  background-position: center;
}

.product-details {
  padding: var(--space-lg);
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.product-price {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.product-description {
  margin-bottom: var(--space-md);
}

.contact-section {
  background-color: var(--background-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

.form-input, .form-textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background-color: var(--background);
  font-family: var(--font-main);
  transition: border-color var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

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

.form-checkbox {
  display: flex;
  align-items: start;
  gap: var(--space-sm);
}

.form-checkbox input {
  margin-top: 0.3rem;
}

.map-container {
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer {
  background-color: var(--primary-dark);
  color: white;
  padding: var(--space-lg) 0;
  margin-top: var(--space-xl);
}

.footer a {
  color: white;
}

.footer a:hover {
  text-decoration: underline;
}

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

.footer-logo {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-nav {
  display: flex;
  gap: var(--space-lg);
}

.cookies-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(51, 51, 51, 0.95);
  color: white;
  padding: var(--space-lg);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.cookies-popup.active {
  transform: translateY(0);
}

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

.cookies-text {
  margin-right: var(--space-lg);
}

.cookies-buttons {
  display: flex;
  gap: var(--space-sm);
}

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

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

.page-404 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  text-align: center;
}

.number-404 {
  font-size: 8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.thankyou {
  text-align: center;
  padding: var(--space-xl) 0;
}

.thankyou-icon {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: var(--space-lg);
}

.animated-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.animated-element.visible {
  opacity: 1;
  transform: translateY(0);
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid var(--primary);
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.flower-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.flower {
  position: absolute;
  opacity: 0;
  animation: floatUp 15s ease-in-out infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 320px;
    background-color: var(--background);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right var(--transition-normal);
    box-shadow: var(--shadow-lg);
  }

  .nav {
    display: none;
  }

  .nav.active {
    display: flex;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-item {
    margin: var(--space-md) 0;
  }

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

  .hero p {
    font-size: 1.1rem;
  }

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

  .footer-container {
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cookies-container {
    flex-direction: column;
    text-align: center;
  }

  .cookies-text {
    margin-right: 0;
    margin-bottom: var(--space-md);
  }
}

@media (max-width: 480px) {
  .container {
    width: 95%;
    padding: var(--space-sm);
  }

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

  .section {
    padding: var(--space-lg) 0;
  }

  .cookies-buttons {
    flex-direction: column;
    width: 100%;
  }
}