@import"https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap";*{margin:0;padding:0;box-sizing:border-box;font-family:Outfit,sans-serif}body{background:linear-gradient(135deg,#f1f8e9,#e8f5e9);color:#1b3022;min-height:100vh;line-height:1.6}.container{max-width:1200px;margin:0 auto;padding:0 20px}header{background:#fffc;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border-bottom:1px solid rgba(255,255,255,.3);padding:1.5rem 0;position:sticky;top:0;z-index:100;box-shadow:0 4px 20px #00000005}header .nav-container{display:flex;justify-content:space-between;align-items:center}header .logo{font-size:1.8rem;font-weight:700;color:#2d5a27;text-decoration:none;display:flex;align-items:center;gap:.5rem}header .logo span{color:#8bc34a}header nav{display:flex;gap:2rem}header nav a{text-decoration:none;color:#1b3022;font-weight:500;transition:color .3s ease}header nav a:hover{color:#2d5a27}.hero{padding:6rem 0;display:flex;align-items:center;gap:4rem}.hero .hero-content{flex:1}.hero .hero-content h1{font-size:4rem;font-weight:700;line-height:1.2;margin-bottom:1.5rem;background:linear-gradient(to right,#2d5a27,#8bc34a);-webkit-background-clip:text;-webkit-text-fill-color:transparent}.hero .hero-content p{font-size:1.2rem;color:#666;margin-bottom:2.5rem}.hero .hero-content .cta-buttons{display:flex;gap:1.5rem}.hero .hero-content .cta-buttons .btn{padding:1rem 2.5rem;border-radius:50px;text-decoration:none;font-weight:600;transition:all .3s ease}.hero .hero-content .cta-buttons .btn.btn-primary{background:#2d5a27;color:#fff;box-shadow:0 10px 20px #2d5a2733}.hero .hero-content .cta-buttons .btn.btn-primary:hover{transform:translateY(-5px);box-shadow:0 15px 30px #2d5a274d}.hero .hero-content .cta-buttons .btn.btn-outline{border:2px solid #2d5a27;color:#2d5a27}.hero .hero-content .cta-buttons .btn.btn-outline:hover{background:#2d5a27;color:#fff}.hero .hero-image{flex:1}.hero .hero-image img{width:100%;border-radius:30px;box-shadow:20px 20px 60px #0000001a;animation:float 6s ease-in-out infinite}@keyframes float{0%{transform:translateY(0)}50%{transform:translateY(-20px)}to{transform:translateY(0)}}.section-title{text-align:center;margin-bottom:4rem}.section-title h2{font-size:2.5rem;margin-bottom:1rem}.section-title .underline{width:80px;height:4px;background:#8bc34a;margin:0 auto;border-radius:10px}.categories-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:2rem;margin-bottom:6rem}.categories-grid .category-card{background:#fff;padding:2rem;border-radius:20px;text-align:center;transition:all .3s ease;box-shadow:0 10px 30px #0000000d;border:1px solid rgba(0,0,0,.02)}.categories-grid .category-card:hover{transform:scale(1.05);border-color:#8bc34a}.categories-grid .category-card .icon{font-size:3rem;margin-bottom:1.5rem}.categories-grid .category-card h3{margin-bottom:.5rem}.products-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2.5rem}.products-grid .product-card{background:#fff;border-radius:24px;overflow:hidden;box-shadow:0 10px 30px #0000000d;transition:all .3s ease;position:relative}.products-grid .product-card:hover{transform:translateY(-10px)}.products-grid .product-card .product-image{height:250px;overflow:hidden}.products-grid .product-card .product-image img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;transition:transform .5s ease}.products-grid .product-card:hover .product-image img{transform:scale(1.1)}.products-grid .product-card .product-info{padding:1.5rem}.products-grid .product-card .product-info .category{font-size:.8rem;color:#8bc34a;font-weight:600;text-transform:uppercase;margin-bottom:.5rem}.products-grid .product-card .product-info h3{font-size:1.25rem;margin-bottom:1rem}.products-grid .product-card .product-info .price-row{display:flex;justify-content:space-between;align-items:center}.products-grid .product-card .product-info .price-row .price{font-size:1.5rem;font-weight:700;color:#2d5a27}.products-grid .product-card .product-info .price-row .add-to-cart{background:#2d5a27;color:#fff;width:45px;height:45px;border-radius:12px;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .3s ease}.products-grid .product-card .product-info .price-row .add-to-cart:hover{background:#8bc34a;border-radius:50%}.products-grid .product-card .badge{position:absolute;top:1rem;right:1rem;background:#ff9800;color:#fff;padding:.4rem 1rem;border-radius:50px;font-size:.8rem;font-weight:600}footer{background:#1b3022;color:#ffffffb3;padding:5rem 0 2rem;margin-top:10rem}footer .footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:3rem;margin-bottom:4rem}footer h4{color:#fff;margin-bottom:1.5rem;font-size:1.2rem}footer ul{list-style:none}footer ul li{margin-bottom:.8rem}footer ul li a{color:inherit;text-decoration:none;transition:color .3s ease}footer ul li a:hover{color:#8bc34a}footer .bottom-bar{border-top:1px solid rgba(255,255,255,.1);padding-top:2rem;text-align:center;font-size:.9rem}.auth-card{background:#fff;padding:3rem;border-radius:30px;box-shadow:0 20px 50px #0000001a;max-width:450px;width:90%;margin:4rem auto}.auth-card h2{text-align:center;margin-bottom:2rem;color:#2d5a27}.auth-card .form-group{margin-bottom:1.5rem}.auth-card .form-group label{display:block;margin-bottom:.5rem;font-weight:500}.auth-card .form-group input{width:100%;padding:1rem;border:2px solid #eee;border-radius:12px;outline:none;transition:all .3s ease}.auth-card .form-group input:focus{border-color:#8bc34a}.auth-card .btn-submit{width:100%;padding:1rem;background:#2d5a27;color:#fff;border:none;border-radius:12px;font-weight:600;font-size:1.1rem;cursor:pointer;transition:all .3s ease}.auth-card .btn-submit:hover{background:#8bc34a}
