:root {
  --leaf-green: #0D1E13;
  --moss-green: #1C4D34;
  --soft-leaf: #8FBF7F;
  --pale-mist: #F5F8F3;
  --dew-white: #E0EFE4;
  --lime-mist: #CBEA9E;
  --fresh-sap: #A3E4A4;
  --botanical-gradient: linear-gradient(135deg, #0D1E13, #1C4D34, #8FBF7F);
  --mist-gradient: linear-gradient(180deg, #F5F8F3 0%, #E0EFE4 100%);
  --shadow-moss: 0 8px 24px rgba(13, 30, 19, 0.15);
  --shadow-soft: 0 4px 16px rgba(143, 191, 127, 0.2);
  --shadow-deep: 0 12px 32px rgba(13, 30, 19, 0.25);
  --glass-bg: rgba(245, 248, 243, 0.7);
  --glass-border: rgba(143, 191, 127, 0.3);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Quicksand', sans-serif;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--leaf-green);
  background: var(--mist-gradient);
  line-height: 1.6;
  overflow-x: hidden;
}


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--leaf-green);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: 1rem;
  color: var(--moss-green);
}

a {
  color: var(--moss-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--soft-leaf);
}


header {
  background: var(--botanical-gradient);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-deep);
  border-bottom: 3px solid var(--soft-leaf);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dew-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo::before {
  content: '🌿';
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  color: var(--dew-white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--soft-leaf);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--lime-mist);
}

.nav-links a:hover::after {
  width: 100%;
  background: var(--lime-mist);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

  .burger span {
    width: 25px;
    height: 3px;
    background: var(--dew-white);
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.burger-close {
  display: none;
}


.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0D1E13 0%, #1C4D34 50%, #8FBF7F 100%);
  padding: 4rem 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 80 Q50 20, 80 80' stroke='rgba(224,239,228,0.15)' stroke-width='2' fill='none'/%3E%3Cpath d='M10 70 Q40 10, 70 70' stroke='rgba(203,234,158,0.1)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  opacity: 0.4;
  animation: float 20s infinite ease-in-out;
  background-size: 200px 200px;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(163, 228, 164, 0.25) 0%, transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(203, 234, 158, 0.2) 0%, transparent 60%),
              radial-gradient(circle at 50% 80%, rgba(143, 191, 127, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--dew-white);
  max-width: 800px;
}

.hero h1 {
  color: var(--dew-white);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--dew-white);
  margin-bottom: 2rem;
}

.dew-drop {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(203, 234, 158, 0.6);
  border-radius: 50% 50% 50% 0;
  animation: drip 3s infinite;
  box-shadow: 0 0 10px rgba(203, 234, 158, 0.5);
}

.dew-drop:nth-child(1) { left: 10%; animation-delay: 0s; }
.dew-drop:nth-child(2) { left: 30%; animation-delay: 1s; }
.dew-drop:nth-child(3) { left: 50%; animation-delay: 2s; }
.dew-drop:nth-child(4) { left: 70%; animation-delay: 0.5s; }
.dew-drop:nth-child(5) { left: 90%; animation-delay: 1.5s; }

@keyframes drip {
  0% {
    top: -10px;
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
  }
  100% {
    top: 100%;
    opacity: 0;
    transform: scale(0.5);
  }
}

.organic-blob {
  position: relative;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  overflow: hidden;
  animation: morph 8s ease-in-out infinite;
  box-shadow: var(--shadow-deep);
}

@keyframes morph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.organic-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-moss);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-deep);
  background: rgba(245, 248, 243, 0.85);
}

.glass-card h3 {
  margin-bottom: 1rem;
  color: var(--leaf-green);
}

.glass-card p {
  line-height: 1.7;
}


.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--botanical-gradient);
  color: var(--dew-white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-moss);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-deep);
  color: var(--dew-white);
}

.btn:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--moss-green);
  color: var(--moss-green);
}

.btn-secondary:hover {
  background: var(--moss-green);
  color: var(--dew-white);
}


.plants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.plant-card {
  background: var(--dew-white);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-moss);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  transform: translateY(0);
  border: 2px solid transparent;
}

.plant-card:nth-child(odd) {
  transform: translateY(-10px);
}

.plant-card:nth-child(even) {
  transform: translateY(10px);
}

.plant-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-deep);
  border-color: var(--soft-leaf);
}

.plant-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--botanical-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.plant-card:hover::before {
  opacity: 1;
}

.plant-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: var(--mist-gradient);
}

.plant-card-content {
  padding: 1.5rem;
}

.plant-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--leaf-green);
}

.plant-card .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--moss-green);
  margin: 1rem 0;
}

.plant-card .difficulty {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--lime-mist);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--leaf-green);
  margin-top: 0.5rem;
}

.hero-plants {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 769px) {
  .hero-plants {
    gap: 2.5rem;
  }
}

.hero-plant {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border-radius: 30px;
  padding: 2rem;
  box-shadow: var(--shadow-deep);
  border: 2px solid var(--soft-leaf);
}

.hero-plant::before {
  content: '⭐';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 2rem;
  background: var(--dew-white);
  padding: 0.5rem;
  border-radius: 50%;
  box-shadow: var(--shadow-moss);
}


section {
  padding: 4rem 2rem;
  margin: 0 auto;
  position: relative;
}

section:nth-child(even) {
  background: rgb(54 90 30 / 72%);
}

section:nth-child(odd) {
  text-align: center;
  background: transparent;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--botanical-gradient);
  border-radius: 2px;
}

.section-title::before {
  content: '🌿';
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  opacity: 0.5;
}

.care-section {
  margin: 3rem 0;
  padding: 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border-left: 4px solid var(--soft-leaf);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.care-section:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-moss);
}

.care-section h2,
.care-section h3 {
  color: var(--leaf-green);
  margin-bottom: 1rem;
  text-align: left;
}

.care-section h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.care-section h3::before {
  content: '💧';
  font-size: 1.2rem;
}

.care-section p {
  text-align: left;
}

.care-section ul {
  text-align: left;
}

.droplet-divider {
  text-align: center;
  margin: 3rem 0;
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}


.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  margin: 2rem 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 2rem;
}

.carousel-item {
  min-width: 100%;
  padding: 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border-radius: 20px;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--glass-bg);
  border: 2px solid var(--moss-green);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--moss-green);
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-nav:hover {
  background: var(--moss-green);
  color: var(--dew-white);
}

.carousel-nav.prev {
  left: 20px;
}

.carousel-nav.next {
  right: 20px;
}


.greenhouse-form {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 2px solid var(--glass-border);
  border-radius: 30px;
  padding: 3rem;
  box-shadow: var(--shadow-deep);
  max-width: 600px;
  margin: 2rem auto;
  position: relative;
  display: flex;
  flex-direction: column;
}

.greenhouse-form::before {
  content: '🌱';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  background: var(--dew-white);
  padding: 1rem;
  border-radius: 50%;
  box-shadow: var(--shadow-moss);
}

.form-group {
  margin-bottom: 1.5rem;
  width: 100%;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--leaf-green);
  width: 100%;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--glass-border);
  border-radius: 15px;
  background: var(--dew-white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--leaf-green);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--soft-leaf);
  box-shadow: 0 0 0 3px rgba(143, 191, 127, 0.2);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
  font-family: var(--font-body);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
  width: 100%;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 0.3rem;
  flex-shrink: 0;
  cursor: pointer;
}

.checkbox-group label {
  flex: 1;
  margin: 0;
  cursor: pointer;
  line-height: 1.5;
}

.greenhouse-form .btn {
  width: 100%;
  margin-top: 1rem;
  align-self: stretch;
  box-sizing: border-box;
}


footer {
  background: var(--botanical-gradient);
  color: var(--dew-white);
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
  position: relative;
  width: 100%;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--soft-leaf);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  color: var(--dew-white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-section p {
  color: var(--dew-white);
  opacity: 0.9;
}

.footer-section a {
  color: var(--dew-white);
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.9;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-section a:hover {
  color: var(--lime-mist);
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(143, 191, 127, 0.3);
}


.cookies-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 2px solid var(--glass-border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-deep);
  max-width: 500px;
  z-index: 2000;
  display: none;
}

.cookies-popup.active {
  display: block;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    transform: translateX(-50%) translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}



.thank-you-badge {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 4rem auto;
}

.plant-badge {
  font-size: 6rem;
  margin-bottom: 2rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}


@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  nav {
    padding: 1rem 1.5rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo::before {
    font-size: 1.5rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--botanical-gradient);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-deep);
    z-index: 999;
    overflow-y: auto;
  }
  
  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    width: 100%;
    margin-bottom: 1rem;
  }

  .nav-links a {
    display: block;
    padding: 1rem;
    font-size: 1.2rem;
    border-bottom: 1px solid var(--glass-border);
    width: 100%;
  }

  .nav-links a::after {
    display: none;
  }

  .burger {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  .burger-close {
    display: none;
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--dew-white);
    border: 2px solid var(--moss-green);
    border-radius: 50%;
    color: var(--moss-green);
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1002;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-deep);
    transition: all 0.3s ease;
  }

  .burger-close:hover {
    background: var(--moss-green);
    color: var(--dew-white);
    transform: rotate(90deg) scale(1.1);
  }

  .burger-close.active {
    display: flex;
  }
  
  .hero {
    min-height: 60vh;
    padding: 3rem 1.5rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .hero p {
    font-size: clamp(1rem, 3vw, 1.2rem);
  }
  
  .plants-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
  }

  .plant-card {
    transform: none !important;
  }

  .plant-card:hover {
    transform: translateY(-5px) scale(1.01) !important;
  }
  
  .hero-plants {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
    gap: 1.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-plant {
    padding: 1.5rem;
  }
  
  .greenhouse-form {
    padding: 2rem 1.5rem;
    margin: 1rem auto;
    max-width: calc(100% - 2rem);
    display: flex;
    flex-direction: column;
  }

  .greenhouse-form::before {
    font-size: 2rem;
    top: -15px;
    padding: 0.75rem;
  }

  .form-group {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .form-group label {
    width: 100%;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    box-sizing: border-box;
  }

  .checkbox-group {
    width: 100%;
    gap: 0.75rem;
  }

  .checkbox-group label {
    width: auto;
    flex: 1;
  }
  
  section {
    padding: 3rem 1.5rem;
  }

  .section-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
  }

  .section-title::before {
    font-size: 1.2rem;
    top: -0.3rem;
  }

  .section-title::after {
    width: 80px;
    height: 3px;
  }

  .glass-card {
    padding: 1.5rem;
  }

  .care-section {
    padding: 1.5rem;
    margin: 2rem 0;
  }

  .carousel-item {
    padding: 1.5rem;
  }

  .carousel-nav {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .carousel-nav.prev {
    left: 10px;
  }

  .carousel-nav.next {
    right: 10px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 1.5rem;
  }

  .cookies-popup {
    max-width: 90%;
    left: 5%;
    transform: none;
    bottom: 15px;
  }

  .cookies-popup.active {
    transform: none;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .plants-grid {
    grid-template-columns: 1fr;
  }
  
  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .cookies-popup {
    max-width: 90%;
    left: 5%;
    transform: none;
  }
  
  .cookies-popup.active {
    transform: none;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  nav {
    padding: 0.75rem 1rem;
  }

  .logo {
    font-size: 1rem;
  }

  .logo::before {
    font-size: 1.3rem;
  }

  .burger span {
    width: 22px;
    height: 2.5px;
  }

  .burger-close {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    top: 1rem;
    right: 1rem;
  }
  
  .hero {
    min-height: 50vh;
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
    margin-bottom: 1.5rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .glass-card {
    padding: 1.25rem;
  }

  .greenhouse-form {
    padding: 1.5rem 1rem;
    margin: 0.5rem auto;
    max-width: calc(100% - 1rem);
    display: flex;
    flex-direction: column;
  }

  .greenhouse-form::before {
    font-size: 1.8rem;
    top: -12px;
    padding: 0.5rem;
  }

  .form-group {
    width: 100%;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    box-sizing: border-box;
  }

  .checkbox-group {
    width: 100%;
  }

  section {
    padding: 2rem 1rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 1.5rem;
  }

  .plants-grid {
    padding: 1rem 0.5rem;
    gap: 1rem;
  }

  .plant-card-content {
    padding: 1rem;
  }

  .plant-card h3 {
    font-size: 1.2rem;
  }

  .plant-card .price {
    font-size: 1.5rem;
  }

  .hero-plants {
    padding: 1.5rem 0.75rem;
    gap: 1rem;
  }

  .hero-plant {
    padding: 1.25rem;
  }

  .care-section {
    padding: 1.25rem;
    margin: 1.5rem 0;
  }

  .carousel-item {
    padding: 1rem;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .carousel-nav.prev {
    left: 5px;
  }

  .carousel-nav.next {
    right: 5px;
  }

  .footer-content {
    padding: 0 1rem;
  }

  .footer-section h3 {
    font-size: 1.1rem;
  }

  .footer-section p,
  .footer-section a {
    font-size: 0.9rem;
  }

  .cookies-popup {
    padding: 1.25rem;
    max-width: 95%;
    left: 2.5%;
  }

  .cookies-popup h3 {
    font-size: 1.1rem;
  }

  .cookies-popup p {
    font-size: 0.9rem;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 12px;
  }
  
  nav {
    padding: 0.5rem 0.75rem;
  }

  .logo {
    font-size: 0.9rem;
  }

  .logo::before {
    font-size: 1.1rem;
  }

  .burger span {
    width: 20px;
    height: 2px;
  }

  .burger-close {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    top: 0.75rem;
    right: 0.75rem;
  }
  
  .hero {
    min-height: 45vh;
    padding: 1.5rem 0.75rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.85rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
  
  .glass-card {
    padding: 1rem;
  }

  .greenhouse-form {
    padding: 1.5rem 0.75rem;
    margin: 0.5rem;
    border-radius: 20px;
    max-width: calc(100% - 1rem);
  }

  .greenhouse-form::before {
    font-size: 1.5rem;
    top: -10px;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    display: block;
    width: 100%;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.75rem;
    font-size: 0.9rem;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
  }

  .form-group textarea {
    min-height: 120px;
    resize: vertical;
    font-family: var(--font-body);
  }

  .checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
    width: 100%;
  }

  .checkbox-group input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 20px;
    height: 20px;
    min-width: 20px;
    flex-shrink: 0;
    cursor: pointer;
  }

  .checkbox-group label {
    font-size: 0.85rem;
    line-height: 1.5;
    flex: 1;
    margin: 0;
    cursor: pointer;
  }

  .btn {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    border-radius: 25px;
    margin-top: 1rem;
    box-sizing: border-box;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    display: block;
    width: 100%;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.75rem;
    font-size: 0.9rem;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
  }

  .form-group textarea {
    min-height: 120px;
  }

  .checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
  }

  .checkbox-group label {
    font-size: 0.85rem;
    line-height: 1.5;
    flex: 1;
    margin: 0;
    cursor: pointer;
  }

  .checkbox-group input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 20px;
    height: 20px;
    min-width: 20px;
    flex-shrink: 0;
    cursor: pointer;
  }

  .btn {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    border-radius: 25px;
  }

  section {
    padding: 1.5rem 0.75rem;
  }

  .section-title {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
  }

  .section-title::before {
    font-size: 1rem;
    top: -0.25rem;
  }

  .section-title::after {
    width: 60px;
    height: 2px;
  }

  .plants-grid {
    padding: 0.75rem 0.25rem;
    gap: 0.75rem;
  }

  .plant-card-content {
    padding: 0.75rem;
  }

  .plant-card h3 {
    font-size: 1.1rem;
  }

  .plant-card .price {
    font-size: 1.3rem;
  }

  .hero-plants {
    padding: 1.25rem 0.5rem;
    gap: 0.75rem;
  }

  .team-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .hero-plant {
    padding: 1rem;
  }

  .care-section {
    padding: 1rem;
    margin: 1.25rem 0;
  }

  .carousel-item {
    padding: 0.75rem;
  }

  .carousel-nav {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .footer-content {
    padding: 0 0.75rem;
  }

  .footer-section h3 {
    font-size: 1rem;
  }

  .footer-section p,
  .footer-section a {
    font-size: 0.85rem;
  }

  .cookies-popup {
    padding: 1rem;
    max-width: 98%;
    left: 1%;
  }

  .cookies-popup h3 {
    font-size: 1rem;
  }

  .cookies-popup p {
    font-size: 0.85rem;
  }

  .cookies-popup .btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}


.text-center {
  text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.botanical-overlay {
  position: relative;
}

.botanical-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 150 Q100 50, 150 150' stroke='rgba(143,191,127,0.15)' stroke-width='2' fill='none'/%3E%3Cpath d='M30 120 Q100 30, 170 120' stroke='rgba(163,228,164,0.1)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

