html, body {
    max-width: 1920px;
    overflow-x: hidden;
    margin: 0 auto;
}

        .gradient-bg {
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
        }

        .card-hover {
            transition: all 0.3s ease;
        }

        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .nav-link {
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: #22c55e;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .mobile-menu {
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }

        .mobile-menu.open {
            transform: translateX(0);
        }

        .product-card {
            background: linear-gradient(145deg, #ffffff, #f8f9fa);
            border: 1px solid #e9ecef;
        }

        .price-tag {
            background: linear-gradient(45deg, #22c55e, #16a34a);
        }

        .floating-element {
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(2) {
            animation-delay: -2s;
        }

        .floating-element:nth-child(3) {
            animation-delay: -4s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        .leaf-pattern {
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2322c55e' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        #home {
            background-image: url("../img/gruen_oase_header.jpg");
        }

        .mobile-menu a {
            color: white;
        }

        .from-green-100 {
            --tw-gradient-from: #dcfce700 var(--tw-gradient-from-position) !important;
            --tw-gradient-to: rgb(220 252 231 / 0) var(--tw-gradient-to-position);
            --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
        }


        .mobile-menu svg {
            color: white !important;
        }

        .mobile-menu a {
            color: white;
        }


        .unterseiten_header {
            min-height: 70%;
        }

        @media (min-width: 580px) {
            .unterseiten_header {
                min-height: 70%;
            }
        }

        .w-96 {
            width: 6rem !important;
        }

        .h-96 {
            height: 6rem !important;
        }


        @media (min-width: 580px) {
            .w-96 {
                width: 16rem !important;
            }

            .h-96 {
                height: 16rem !important;
            }
        }

        #home {
            padding: 130px 0px !important;
        }

        @media (min-width: 580px) {
            #home {
                padding: 0px 0px !important;
            }
        }
  
/* ---------- GLOBAL MOBILE FIX ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; }
img, svg { max-width: 100%; height: auto; }

/* ---------- DESIGN (DEIN CODE) ---------- */
.gradient-bg {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.nav-link::after {
  content:'';
  position:absolute;
  left:0; bottom:-4px;
  width:0; height:2px;
  background:#22c55e;
  transition:.3s;
}
.nav-link:hover::after { width:100%; }

.mobile-menu {
  transform: translateX(100%);
  transition: .3s;
}
.mobile-menu.open { transform: translateX(0); }

/* ---------- HERO FIX ---------- */
.hero-card {
  width: clamp(16rem, 75vw, 24rem);
  height: clamp(16rem, 75vw, 24rem);
}

.w-full {
    width: 99.3%;
}

#close-menu-btn{
    color: black !important;
    font-weight: 900 !important;
    font-size: 18px;
}