:root{--primary-color: #2F855A;--background-light: #F7FAFC;--text-color: #2D3748;--white: #ffffff;--shadow: 0 2px 10px rgba(0, 0, 0, .1);--success-green: #48BB78;--warning-red: #F56565}*{margin:0;padding:0;box-sizing:border-box}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;line-height:1.6;color:var(--text-color);background-color:var(--background-light)}.header{background-color:var(--white);box-shadow:var(--shadow);position:fixed;width:100%;top:0;z-index:1000}.nav-container{max-width:1200px;margin:0 auto;padding:1rem;display:flex;justify-content:space-between;align-items:center}.logo{font-size:1.5rem;font-weight:700;color:var(--primary-color)}.nav-menu{display:flex;gap:2rem;list-style:none}.nav-menu a{color:var(--text-color);text-decoration:none;font-weight:500;transition:color .3s}.nav-menu a:hover,.nav-menu a.active{color:var(--primary-color)}.cart-icon{position:relative;cursor:pointer;font-size:1.2rem}.cart-count{position:absolute;top:-8px;right:-8px;background:var(--primary-color);color:#fff;font-size:.8rem;padding:2px 6px;border-radius:50%}.hamburger{display:none;cursor:pointer;font-size:1.5rem;background:none;border:none;color:var(--text-color)}.main-content{margin-top:60px;min-height:calc(100vh - 60px)}.hero{background:linear-gradient(#00000080,#00000080),url(https://images.unsplash.com/photo-1542838132-92c53300491e?w=1600) center/cover;height:60vh;display:flex;align-items:center;justify-content:center;text-align:center;color:var(--white);padding:2rem}.hero-content h1{font-size:3.5rem;margin-bottom:1rem;line-height:1.2}.hero-content p{font-size:1.2rem;margin-bottom:2rem}.cta-button{display:inline-block;background:var(--primary-color);color:var(--white);padding:1rem 2rem;border-radius:5px;text-decoration:none;font-weight:700;transition:background-color .3s}.cta-button:hover{background:#246b48}.features{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;padding:4rem 2rem;max-width:1200px;margin:0 auto;text-align:center}.feature i{font-size:2.5rem;color:var(--primary-color);margin-bottom:1rem}.feature h3{margin-bottom:.5rem}.products{padding:4rem 2rem;max-width:1200px;margin:0 auto}.products h2{text-align:center;margin-bottom:2rem;font-size:2.5rem}.product-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem}.product-card{background:var(--white);border-radius:10px;overflow:hidden;box-shadow:var(--shadow);transition:transform .3s}.product-card:hover{transform:translateY(-5px)}.product-image{width:100%;height:200px;object-fit:cover}.product-info{padding:1.5rem}.product-info h3{margin-bottom:.5rem}.price{color:var(--primary-color);font-weight:700;font-size:1.2rem;margin-bottom:.5rem}.description{color:#666;margin-bottom:1rem}.add-to-cart{width:100%;padding:.8rem;background-color:var(--primary-color);color:var(--white);border:none;border-radius:5px;cursor:pointer;transition:background-color .3s}.add-to-cart:hover{background-color:#246b48}.add-to-cart:disabled{background-color:#ccc;cursor:not-allowed}.market-info{padding:4rem 2rem;background:var(--white);text-align:center}.market-info h2{margin-bottom:2rem;font-size:2.5rem}.market-days{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;max-width:900px;margin:0 auto}.market-day{padding:2rem;background:var(--background-light);border-radius:10px}.about-section{padding:4rem 2rem;background:var(--white);margin-top:2rem}.about-content{max-width:900px;margin:0 auto;text-align:center}.about-content h2{color:var(--primary-color);font-size:2.5rem;margin-bottom:2rem}.about-text{text-align:left;line-height:1.8}.about-text p{margin-bottom:1.5rem;color:var(--text-color)}.about-text p:last-child{margin-bottom:0}.cart-sidebar{position:fixed;right:-400px;top:0;width:400px;height:100vh;background:var(--white);box-shadow:var(--shadow);transition:right .3s ease;z-index:1001}.cart-sidebar.active{right:0}.cart-header{padding:1rem;border-bottom:1px solid #eee;display:flex;justify-content:space-between;align-items:center}.close-cart{background:none;border:none;font-size:1.5rem;cursor:pointer}.cart-items{padding:1rem;max-height:calc(100vh - 200px);overflow-y:auto}.cart-item{display:flex;align-items:center;padding:1rem;border-bottom:1px solid #eee}.cart-item img{width:60px;height:60px;object-fit:cover;border-radius:5px;margin-right:1rem}.cart-item-details{flex-grow:1}.remove-item{background:none;border:none;color:var(--warning-red);cursor:pointer}.cart-total{padding:1rem;border-top:1px solid #eee}.total{display:flex;justify-content:space-between;font-weight:700;margin-bottom:1rem}.checkout-button{width:100%;padding:1rem;background:var(--primary-color);color:var(--white);border:none;border-radius:5px;cursor:pointer;font-weight:700}.checkout-modal{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background:#00000080;z-index:1002}.checkout-modal.active{display:flex;align-items:center;justify-content:center}.checkout-content{background:var(--white);padding:2rem;border-radius:10px;width:90%;max-width:600px;max-height:90vh;overflow-y:auto}.form-group{margin-bottom:1.5rem}.form-group label{display:block;margin-bottom:.5rem;font-weight:500}.form-group input,.form-group textarea{width:100%;padding:.8rem;border:1px solid #ddd;border-radius:5px}.payment-options{display:flex;gap:2rem}.notification{position:fixed;bottom:20px;right:20px;background:var(--success-green);color:var(--white);padding:1rem 2rem;border-radius:5px;animation:slideIn .3s ease-out}@keyframes slideIn{0%{transform:translate(100%);opacity:0}to{transform:translate(0);opacity:1}}.bottom-nav{display:none;position:fixed;bottom:0;width:100%;background:var(--white);padding:1rem;box-shadow:0 -2px 10px #0000001a;z-index:999}.bottom-nav a{color:var(--text-color);text-decoration:none;font-size:1.2rem}.bottom-nav a:hover{color:var(--primary-color)}.footer{background-color:var(--primary-color);color:var(--white);padding:2rem;text-align:center}.footer-content{max-width:1200px;margin:0 auto}.footer-links{list-style:none;padding:0;display:flex;justify-content:center;gap:2rem}.footer-links a{color:var(--white);text-decoration:none;transition:color .3s}.footer-links a:hover{color:var(--background-light)}@media (max-width: 768px){.hamburger{display:block}.nav-menu{display:none;position:absolute;top:100%;left:0;width:100%;background:var(--white);padding:1rem;box-shadow:var(--shadow);flex-direction:column;gap:1rem}.nav-menu.active{display:flex}.features,.market-days{grid-template-columns:1fr}.cart-sidebar{width:100%;right:-100%}.bottom-nav{display:flex;justify-content:space-around}.hero-content h1{font-size:2.5rem}.main-content{margin-bottom:60px}.about-section{padding:3rem 1.5rem}.about-content h2{font-size:2rem}.about-text{font-size:.95rem}}
