*{box-sizing:border-box;margin:0;padding:0}:root{--turquoise:#7dd3c0;--turquoise-light:#a8e6d7;--turquoise-dark:#5bc0ab;--white:#fff;--peach:#ffb89d;--peach-light:#ffd4c4;--peach-dark:#ff9d7f;--text-dark:#2c3e50;--text-light:#7f8c8d;--gray-light:#f8f9fa;--shadow:0 4px 15px #7dd3c026;--shadow-hover:0 8px 25px #7dd3c040;--border-radius:20px;--border-radius-small:12px;--transition:all 0.3s cubic-bezier(0.4,0,0.2,1)}body{background:linear-gradient(135deg,#f8f9fa,#e8f5f2);color:#2c3e50;color:var(--text-dark);font-family:Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,sans-serif;line-height:1.6;overflow-x:hidden}.app-container{display:flex;flex-direction:column;min-height:100vh}.main-content{flex:1 1;padding-top:80px}h1,h2,h3,h4,h5,h6{color:#2c3e50;color:var(--text-dark);font-weight:700;line-height:1.3}h1{font-size:3rem}h1,h2{margin-bottom:1.5rem}h2{font-size:2.5rem}h3{font-size:1.8rem}h3,p{margin-bottom:1rem}p{color:#7f8c8d;color:var(--text-light);font-size:1.05rem}a{color:inherit;text-decoration:none}a,button{transition:all .3s cubic-bezier(.4,0,.2,1);transition:var(--transition)}button{border:none;cursor:pointer;font-family:inherit}img{display:block;height:auto;max-width:100%}.header{animation:slideDown .5s ease-out;background:#fff;background:var(--white);box-shadow:0 4px 15px #7dd3c026;box-shadow:var(--shadow);left:0;position:fixed;right:0;top:0;z-index:1000}@keyframes slideDown{0%{transform:translateY(-100%)}to{transform:translateY(0)}}.header-container{align-items:center;display:flex;justify-content:space-between;margin:0 auto;max-width:1400px;padding:1rem 2rem}.logo-container{align-items:center;display:flex;gap:1rem;transition:all .3s cubic-bezier(.4,0,.2,1);transition:var(--transition)}.logo-container:hover{transform:scale(1.05)}.logo-image{border:3px solid #7dd3c0;border:3px solid var(--turquoise);border-radius:50%;height:50px;object-fit:cover;width:50px}.logo-text{-webkit-text-fill-color:#0000;background:linear-gradient(135deg,#7dd3c0,#ffb89d);background:linear-gradient(135deg,var(--turquoise) 0,var(--peach) 100%);-webkit-background-clip:text;background-clip:text;font-size:1.8rem;font-weight:800}.nav-links{align-items:center;display:flex;gap:2rem;list-style:none}.nav-links a{border-radius:12px;border-radius:var(--border-radius-small);color:#2c3e50;color:var(--text-dark);font-weight:600;overflow:hidden;padding:.5rem 1rem;position:relative}.nav-links a:before{background:#7dd3c0;background:var(--turquoise);bottom:0;content:"";height:3px;left:50%;position:absolute;transform:translateX(-50%);transition:all .3s cubic-bezier(.4,0,.2,1);transition:var(--transition);width:0}.nav-links a:hover:before{width:80%}.nav-links a:hover{color:#7dd3c0;color:var(--turquoise)}.cart-icon-container{background:linear-gradient(135deg,#a8e6d7,#7dd3c0);background:linear-gradient(135deg,var(--turquoise-light) 0,var(--turquoise) 100%);border-radius:50%;color:#fff;color:var(--white);cursor:pointer;padding:.5rem;position:relative;transition:all .3s cubic-bezier(.4,0,.2,1);transition:var(--transition)}.cart-icon-container:hover{box-shadow:0 8px 25px #7dd3c040;box-shadow:var(--shadow-hover);transform:scale(1.1) rotate(5deg)}.cart-badge{align-items:center;animation:bounce .5s ease;background:#ffb89d;background:var(--peach);border-radius:50%;color:#fff;color:var(--white);display:flex;font-size:.75rem;font-weight:700;height:22px;justify-content:center;position:absolute;right:-5px;top:-5px;width:22px}@keyframes bounce{0%,to{transform:scale(1)}50%{transform:scale(1.3)}}.hero-section{animation:fadeIn .8s ease-out;background:linear-gradient(135deg,#a8e6d7,#ffd4c4);background:linear-gradient(135deg,var(--turquoise-light) 0,var(--peach-light) 100%);border-radius:20px;border-radius:var(--border-radius);box-shadow:0 4px 15px #7dd3c026;box-shadow:var(--shadow);margin:2rem auto;max-width:1400px;padding:4rem 2rem;text-align:center}@keyframes fadeIn{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.hero-title{color:#2c3e50;color:var(--text-dark);font-size:3.5rem;margin-bottom:1.5rem;text-shadow:2px 2px 4px #0000001a}.hero-subtitle{color:#7f8c8d;color:var(--text-light);font-size:1.5rem;margin-bottom:2rem}.hero-cta{background:#ffb89d;background:var(--peach);border-radius:20px;border-radius:var(--border-radius);box-shadow:0 4px 15px #7dd3c026;box-shadow:var(--shadow);color:#fff;color:var(--white);display:inline-block;font-size:1.2rem;font-weight:700;padding:1rem 3rem;transition:all .3s cubic-bezier(.4,0,.2,1);transition:var(--transition)}.hero-cta:hover{background:#ff9d7f;background:var(--peach-dark);box-shadow:0 8px 25px #7dd3c040;box-shadow:var(--shadow-hover);transform:translateY(-3px)}.features-section{margin:4rem auto;max-width:1400px;padding:0 2rem}.features-grid{grid-gap:2rem;display:grid;gap:2rem;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));margin-bottom:3rem}.feature-card{background:#fff;background:var(--white);border:3px solid #0000;border-radius:20px;border-radius:var(--border-radius);box-shadow:0 4px 15px #7dd3c026;box-shadow:var(--shadow);padding:2.5rem;text-align:center;transition:all .3s cubic-bezier(.4,0,.2,1);transition:var(--transition)}.feature-card:hover{border-color:#7dd3c0;border-color:var(--turquoise);box-shadow:0 8px 25px #7dd3c040;box-shadow:var(--shadow-hover);transform:translateY(-10px)}.feature-icon{color:#7dd3c0;color:var(--turquoise);font-size:3.5rem;margin-bottom:1.5rem;transition:all .3s cubic-bezier(.4,0,.2,1);transition:var(--transition)}.feature-card:hover .feature-icon{color:#ffb89d;color:var(--peach);transform:scale(1.2) rotate(10deg)}.feature-title{color:#2c3e50;color:var(--text-dark);font-size:1.5rem;margin-bottom:1rem}.feature-description{color:#7f8c8d;color:var(--text-light);line-height:1.8}.stats-container{grid-gap:2rem;display:grid;gap:2rem;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));margin:3rem 0}.stat-box{background:linear-gradient(135deg,#7dd3c0,#5bc0ab);background:linear-gradient(135deg,var(--turquoise) 0,var(--turquoise-dark) 100%);border-radius:20px;border-radius:var(--border-radius);box-shadow:0 4px 15px #7dd3c026;box-shadow:var(--shadow);color:#fff;color:var(--white);padding:2rem;text-align:center;transition:all .3s cubic-bezier(.4,0,.2,1);transition:var(--transition)}.stat-box:hover{transform:scale(1.05)}.stat-number{font-size:3rem;font-weight:800;margin-bottom:.5rem}.stat-label{font-size:1.1rem;opacity:.9}.about-products-section{background:#fff;background:var(--white);border-radius:20px;border-radius:var(--border-radius);box-shadow:0 4px 15px #7dd3c026;box-shadow:var(--shadow);margin:4rem auto;max-width:1200px;padding:3rem 2rem}.about-products-section h2{color:#5bc0ab;color:var(--turquoise-dark);margin-bottom:2rem;text-align:center}.about-products-content{color:#7f8c8d;color:var(--text-light);line-height:2}.about-products-content p{margin-bottom:1.5rem;text-align:justify}.products-section{margin:4rem auto;max-width:1400px;padding:0 2rem}.section-title{color:#5bc0ab;color:var(--turquoise-dark);font-size:2rem;margin-bottom:3rem;padding-bottom:1rem;position:relative;text-align:center}.section-title:after{background:linear-gradient(90deg,#7dd3c0,#ffb89d);background:linear-gradient(90deg,var(--turquoise) 0,var(--peach) 100%);border-radius:2px;bottom:0;content:"";height:4px;left:50%;position:absolute;transform:translateX(-50%);width:100px}.products-grid{grid-gap:2.5rem;display:grid;gap:2.5rem;grid-template-columns:repeat(auto-fit,minmax(300px,1fr))}.product-card{background:#fff;background:var(--white);border:3px solid #0000;border-radius:20px;border-radius:var(--border-radius);box-shadow:0 4px 15px #7dd3c026;box-shadow:var(--shadow);cursor:pointer;overflow:hidden;transition:all .3s cubic-bezier(.4,0,.2,1);transition:var(--transition)}.product-card:hover{border-color:#ffb89d;border-color:var(--peach);box-shadow:0 8px 25px #7dd3c040;box-shadow:var(--shadow-hover);transform:translateY(-10px)}.product-image-container{background:linear-gradient(135deg,#f8f9fa,#a8e6d7);background:linear-gradient(135deg,var(--gray-light) 0,var(--turquoise-light) 100%);height:300px;overflow:hidden;position:relative}.product-image{height:100%;object-fit:cover;transition:all .3s cubic-bezier(.4,0,.2,1);transition:var(--transition);width:100%}.product-card:hover .product-image{transform:scale(1.1)}.product-badge{background:#ffb89d;background:var(--peach);border-radius:12px;border-radius:var(--border-radius-small);box-shadow:0 4px 15px #7dd3c026;box-shadow:var(--shadow);color:#fff;color:var(--white);font-size:.9rem;font-weight:700;padding:.5rem 1rem;position:absolute;right:1rem;top:1rem}.product-info{padding:1.5rem}.product-name{color:#2c3e50;color:var(--text-dark);font-size:1.5rem;margin-bottom:.5rem}.product-description{color:#7f8c8d;color:var(--text-light);line-height:1.6;margin-bottom:1rem}.product-rating{align-items:center;display:flex;gap:.5rem;margin-bottom:1rem}.stars{color:#ffc107;display:flex;gap:.2rem}.rating-count{color:#7f8c8d;color:var(--text-light);font-size:.9rem}.product-footer{align-items:center;border-top:2px solid #f8f9fa;border-top:2px solid var(--gray-light);display:flex;justify-content:space-between;padding-top:1rem}.product-price{color:#5bc0ab;color:var(--turquoise-dark);font-size:2rem;font-weight:800}.view-details-btn{background:linear-gradient(135deg,#7dd3c0,#5bc0ab);background:linear-gradient(135deg,var(--turquoise) 0,var(--turquoise-dark) 100%);border-radius:12px;border-radius:var(--border-radius-small);color:#fff;color:var(--white);font-weight:700;padding:.8rem 1.5rem;transition:all .3s cubic-bezier(.4,0,.2,1);transition:var(--transition)}.view-details-btn:hover{box-shadow:0 8px 25px #7dd3c040;box-shadow:var(--shadow-hover);transform:scale(1.05)}.product-detail-container{background:#fff;background:var(--white);border-radius:20px;border-radius:var(--border-radius);box-shadow:0 4px 15px #7dd3c026;box-shadow:var(--shadow);margin:2rem auto;max-width:1200px;padding:2rem}.product-detail-grid{grid-gap:3rem;display:grid;gap:3rem;grid-template-columns:1fr 1fr;margin-bottom:3rem}.product-detail-image-container{border-radius:20px;border-radius:var(--border-radius);box-shadow:0 4px 15px #7dd3c026;box-shadow:var(--shadow);overflow:hidden}.product-detail-image{height:500px;object-fit:cover;width:100%}.product-detail-info h1{color:#5bc0ab;color:var(--turquoise-dark);margin-bottom:1rem}.product-detail-price{color:#ffb89d;color:var(--peach);font-size:3rem;font-weight:800;margin:1.5rem 0}.product-detail-description{color:#7f8c8d;color:var(--text-light);line-height:2;margin-bottom:2rem}.quantity-selector{align-items:center;display:flex;gap:1rem;margin:2rem 0}.quantity-selector label{color:#2c3e50;color:var(--text-dark);font-weight:700}.quantity-selector input{border:2px solid #7dd3c0;border:2px solid var(--turquoise);border-radius:12px;border-radius:var(--border-radius-small);font-size:1.1rem;padding:.8rem;text-align:center;width:80px}.product-actions{display:flex;gap:1rem;margin-top:2rem}.add-to-cart-btn,.buy-now-btn{border-radius:20px;border-radius:var(--border-radius);flex:1 1;font-size:1.1rem;font-weight:700;padding:1.2rem 2rem;transition:all .3s cubic-bezier(.4,0,.2,1);transition:var(--transition)}.add-to-cart-btn{background:linear-gradient(135deg,#7dd3c0,#5bc0ab);background:linear-gradient(135deg,var(--turquoise) 0,var(--turquoise-dark) 100%);color:#fff;color:var(--white)}.add-to-cart-btn:hover{box-shadow:0 8px 25px #7dd3c040;box-shadow:var(--shadow-hover);transform:translateY(-3px)}.buy-now-btn{background:linear-gradient(135deg,#ffb89d,#ff9d7f);background:linear-gradient(135deg,var(--peach) 0,var(--peach-dark) 100%);color:#fff;color:var(--white)}.buy-now-btn:hover{box-shadow:0 8px 25px #7dd3c040;box-shadow:var(--shadow-hover);transform:translateY(-3px)}.cart-container{margin:2rem auto;max-width:1200px;padding:2rem}.cart-empty{background:#fff;background:var(--white);border-radius:20px;border-radius:var(--border-radius);box-shadow:0 4px 15px #7dd3c026;box-shadow:var(--shadow);padding:4rem 2rem;text-align:center}.cart-empty-icon{color:#a8e6d7;color:var(--turquoise-light);font-size:5rem;margin-bottom:1.5rem}.continue-shopping-btn{background:#7dd3c0;background:var(--turquoise);border-radius:20px;border-radius:var(--border-radius);color:#fff;color:var(--white);display:inline-block;font-weight:700;margin-top:1.5rem;padding:1rem 2rem}.continue-shopping-btn:hover{background:#5bc0ab;background:var(--turquoise-dark)}.cart-items{background:#fff;background:var(--white);border-radius:20px;border-radius:var(--border-radius);box-shadow:0 4px 15px #7dd3c026;box-shadow:var(--shadow);margin-bottom:2rem;padding:2rem}.cart-item{grid-gap:2rem;align-items:center;border-bottom:2px solid #f8f9fa;border-bottom:2px solid var(--gray-light);display:grid;gap:2rem;grid-template-columns:150px 1fr auto;padding:1.5rem}.cart-item:last-child{border-bottom:none}.cart-item-image{border-radius:12px;border-radius:var(--border-radius-small);height:150px;object-fit:cover;width:150px}.cart-item-details h3{color:#5bc0ab;color:var(--turquoise-dark);margin-bottom:.5rem}.cart-item-price{color:#ffb89d;color:var(--peach);font-size:1.5rem;font-weight:700;margin:.5rem 0}.cart-item-quantity{align-items:center;display:flex;gap:1rem;margin-top:1rem}.quantity-btn{align-items:center;background:#7dd3c0;background:var(--turquoise);border-radius:50%;color:#fff;color:var(--white);display:flex;font-size:1.2rem;font-weight:700;height:35px;justify-content:center;width:35px}.quantity-btn:hover{background:#5bc0ab;background:var(--turquoise-dark)}.remove-btn{background:#ffb89d;background:var(--peach);border-radius:12px;border-radius:var(--border-radius-small);color:#fff;color:var(--white);font-weight:700;padding:.8rem 1.5rem}.remove-btn:hover{background:#ff9d7f;background:var(--peach-dark)}.cart-summary{background:#fff;background:var(--white);border-radius:20px;border-radius:var(--border-radius);box-shadow:0 4px 15px #7dd3c026;box-shadow:var(--shadow);padding:2rem}.cart-summary h2{color:#5bc0ab;color:var(--turquoise-dark);margin-bottom:1.5rem}.cart-total{align-items:center;border-top:2px solid #f8f9fa;border-top:2px solid var(--gray-light);display:flex;justify-content:space-between;margin-top:1rem;padding:1.5rem 0}.cart-total span:first-child{color:#2c3e50;color:var(--text-dark);font-size:1.5rem;font-weight:700}.cart-total span:last-child{color:#ffb89d;color:var(--peach);font-size:2.5rem;font-weight:800}.checkout-btn{background:linear-gradient(135deg,#ffb89d,#ff9d7f);background:linear-gradient(135deg,var(--peach) 0,var(--peach-dark) 100%);border-radius:20px;border-radius:var(--border-radius);color:#fff;color:var(--white);font-size:1.3rem;font-weight:700;margin-top:1.5rem;padding:1.5rem;width:100%}.checkout-btn:hover{box-shadow:0 8px 25px #7dd3c040;box-shadow:var(--shadow-hover);transform:translateY(-3px)}.checkout-container{background:#fff;background:var(--white);border-radius:20px;border-radius:var(--border-radius);box-shadow:0 4px 15px #7dd3c026;box-shadow:var(--shadow);margin:2rem auto;max-width:800px;padding:2rem}.checkout-form{grid-gap:1.5rem;display:grid;gap:1.5rem}.form-group{display:flex;flex-direction:column;gap:.5rem}.form-group label{color:#2c3e50;color:var(--text-dark);font-weight:700}.form-group input,.form-group textarea{border:2px solid #a8e6d7;border:2px solid var(--turquoise-light);border-radius:12px;border-radius:var(--border-radius-small);font-size:1rem;padding:1rem;transition:all .3s cubic-bezier(.4,0,.2,1);transition:var(--transition)}.form-group input:focus,.form-group textarea:focus{border-color:#7dd3c0;border-color:var(--turquoise);box-shadow:0 0 0 3px #7dd3c01a;outline:none}.form-row{grid-gap:1.5rem;display:grid;gap:1.5rem;grid-template-columns:1fr 1fr}.submit-order-btn{background:linear-gradient(135deg,#7dd3c0,#5bc0ab);background:linear-gradient(135deg,var(--turquoise) 0,var(--turquoise-dark) 100%);border-radius:20px;border-radius:var(--border-radius);color:#fff;color:var(--white);font-size:1.3rem;font-weight:700;margin-top:1rem;padding:1.5rem;width:100%}.submit-order-btn:hover{box-shadow:0 8px 25px #7dd3c040;box-shadow:var(--shadow-hover);transform:translateY(-3px)}.success-container{background:#fff;background:var(--white);border-radius:20px;border-radius:var(--border-radius);box-shadow:0 4px 15px #7dd3c026;box-shadow:var(--shadow);margin:4rem auto;max-width:800px;padding:4rem 2rem;text-align:center}.success-icon{animation:scaleIn .5s ease-out;color:#4caf50;font-size:6rem;margin-bottom:2rem}@keyframes scaleIn{0%{transform:scale(0)}to{transform:scale(1)}}.success-message{color:#7f8c8d;color:var(--text-light);font-size:1.3rem;line-height:2;margin:2rem 0}.back-home-btn{background:#7dd3c0;background:var(--turquoise);border-radius:20px;border-radius:var(--border-radius);color:#fff;color:var(--white);display:inline-block;font-size:1.2rem;font-weight:700;margin-top:2rem;padding:1.2rem 3rem}.back-home-btn:hover{background:#5bc0ab;background:var(--turquoise-dark)}.contact-container{margin:2rem auto;max-width:1200px;padding:2rem}.contact-grid{grid-gap:3rem;display:grid;gap:3rem;grid-template-columns:1fr 1fr}.contact-info{background:#fff;background:var(--white);border-radius:20px;border-radius:var(--border-radius);box-shadow:0 4px 15px #7dd3c026;box-shadow:var(--shadow);padding:2rem}@media (max-width:450px){.contact-info{padding:1rem}}.contact-item{align-items:center;background:#f8f9fa;background:var(--gray-light);border-radius:12px;border-radius:var(--border-radius-small);display:flex;gap:1.5rem;margin-bottom:1rem;padding:1.5rem;transition:all .3s cubic-bezier(.4,0,.2,1);transition:var(--transition)}@media (max-width:450px){.contact-item{padding:1rem}}.contact-item:hover{background:#a8e6d7;background:var(--turquoise-light);transform:translateX(10px)}.contact-icon{color:#7dd3c0;color:var(--turquoise);font-size:2rem}.contact-form-container{background:#fff;background:var(--white);border-radius:20px;border-radius:var(--border-radius);box-shadow:0 4px 15px #7dd3c026;box-shadow:var(--shadow);padding:2rem}.contact-form{grid-gap:1.5rem;display:grid;gap:1.5rem}.submit-contact-btn{background:linear-gradient(135deg,#ffb89d,#ff9d7f);background:linear-gradient(135deg,var(--peach) 0,var(--peach-dark) 100%);border-radius:20px;border-radius:var(--border-radius);color:#fff;color:var(--white);font-size:1.1rem;font-weight:700;padding:1.2rem}.submit-contact-btn:hover{box-shadow:0 8px 25px #7dd3c040;box-shadow:var(--shadow-hover);transform:translateY(-3px)}.about-container{margin:2rem auto;max-width:1400px;padding:2rem}.about-hero{background:linear-gradient(135deg,#a8e6d7,#ffd4c4);background:linear-gradient(135deg,var(--turquoise-light) 0,var(--peach-light) 100%);padding:4rem 2rem;text-align:center}.about-content,.about-hero{border-radius:20px;border-radius:var(--border-radius);margin-bottom:4rem}.about-content{background:#fff;background:var(--white);box-shadow:0 4px 15px #7dd3c026;box-shadow:var(--shadow);line-height:2;padding:3rem}.team-section{margin-top:4rem}.team-grid{grid-gap:2.5rem;display:grid;gap:2.5rem;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));margin-top:3rem}.team-member{background:#fff;background:var(--white);border-radius:20px;border-radius:var(--border-radius);box-shadow:0 4px 15px #7dd3c026;box-shadow:var(--shadow);overflow:hidden;text-align:center;transition:all .3s cubic-bezier(.4,0,.2,1);transition:var(--transition)}.team-member:hover{box-shadow:0 8px 25px #7dd3c040;box-shadow:var(--shadow-hover);transform:translateY(-10px)}.team-member-image{height:400px;object-fit:cover;width:100%}.team-member-info{padding:2rem}.team-member-name{color:#5bc0ab;color:var(--turquoise-dark);font-size:1.5rem;margin-bottom:.5rem}.team-member-position{color:#ffb89d;color:var(--peach);font-weight:700;margin-bottom:1rem}.team-member-bio{color:#7f8c8d;color:var(--text-light);line-height:1.8}.admin-frame-section{background:#fff;background:var(--white);border-radius:20px;border-radius:var(--border-radius);box-shadow:0 4px 15px #7dd3c026;box-shadow:var(--shadow);margin:4rem auto;max-width:1200px;padding:2rem}.admin-frame-section h2{color:#5bc0ab;color:var(--turquoise-dark);margin-bottom:2rem;text-align:center}.admin-preview{background:#f8f9fa;background:var(--gray-light);border:3px solid #7dd3c0;border:3px solid var(--turquoise);border-radius:12px;border-radius:var(--border-radius-small);padding:2rem;text-align:center}.article-review-section{background:#fff;background:var(--white);border-radius:20px;border-radius:var(--border-radius);box-shadow:0 4px 15px #7dd3c026;box-shadow:var(--shadow);margin:4rem auto;max-width:1200px;padding:2rem}.article-review-section h2{color:#5bc0ab;color:var(--turquoise-dark);margin-bottom:2rem}.article-list{list-style:none;padding:0}.article-list li{color:#7f8c8d;color:var(--text-light);font-size:1.1rem;line-height:1.8;padding:1rem 0 1rem 2rem;position:relative}.article-list li:before{content:"🐾";font-size:1.2rem;left:0;position:absolute}.footer{background:linear-gradient(135deg,#2c3e50,#1a252f);background:linear-gradient(135deg,var(--text-dark) 0,#1a252f 100%);color:#fff;color:var(--white);margin-top:4rem;padding:3rem 2rem 1rem}.footer-container{grid-gap:3rem;display:grid;gap:3rem;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));margin:0 auto 2rem;max-width:1400px}.footer-section h3{color:#a8e6d7;color:var(--turquoise-light);font-size:1.3rem;margin-bottom:1.5rem}.footer-section a,.footer-section p{color:#fffc;line-height:2}.footer-section a:hover{color:#a8e6d7;color:var(--turquoise-light)}.footer-links{list-style:none}.footer-links li{margin-bottom:.8rem}.footer-bottom{border-top:1px solid #ffffff1a;color:#fff9;padding-top:2rem;text-align:center}.cookie-consent{animation:slideUp .5s ease-out;background:#fff;background:var(--white);bottom:0;box-shadow:0 -4px 20px #00000026;left:0;padding:1.5rem 2rem;position:fixed;right:0;z-index:2000}@keyframes slideUp{0%{transform:translateY(100%)}to{transform:translateY(0)}}.cookie-consent-container{align-items:center;display:flex;flex-wrap:wrap;gap:2rem;justify-content:space-between;margin:0 auto;max-width:1400px}.cookie-consent-text{flex:1 1;min-width:300px}.cookie-consent-text p{color:#2c3e50;color:var(--text-dark);margin-bottom:.5rem}.cookie-consent-text a{color:#7dd3c0;color:var(--turquoise);text-decoration:underline}.cookie-consent-buttons{display:flex;flex-wrap:wrap;gap:1rem}.cookie-btn{border-radius:12px;border-radius:var(--border-radius-small);font-weight:700;padding:.8rem 1.5rem;transition:all .3s cubic-bezier(.4,0,.2,1);transition:var(--transition)}.cookie-accept-all{background:#7dd3c0;background:var(--turquoise);color:#fff;color:var(--white)}.cookie-accept-all:hover{background:#5bc0ab;background:var(--turquoise-dark)}.cookie-customize{background:#ffd4c4;background:var(--peach-light);color:#2c3e50;color:var(--text-dark)}.cookie-customize:hover{background:#ffb89d;background:var(--peach);color:#fff;color:var(--white)}.cookie-decline{background:#f8f9fa;background:var(--gray-light);color:#2c3e50;color:var(--text-dark)}.cookie-decline:hover{background:#7f8c8d;background:var(--text-light);color:#fff;color:var(--white)}.notification{animation:slideInRight .5s ease-out;background:#7dd3c0;background:var(--turquoise);border-radius:20px;border-radius:var(--border-radius);box-shadow:0 8px 25px #7dd3c040;box-shadow:var(--shadow-hover);color:#fff;color:var(--white);padding:1.5rem 2rem;position:fixed;right:2rem;top:100px;z-index:2000}@keyframes slideInRight{0%{opacity:0;transform:translateX(400px)}to{opacity:1;transform:translateX(0)}}.policy-container{background:#fff;background:var(--white);border-radius:20px;border-radius:var(--border-radius);box-shadow:0 4px 15px #7dd3c026;box-shadow:var(--shadow);margin:2rem auto;max-width:1000px;padding:3rem 2rem}.policy-container h1{color:#5bc0ab;color:var(--turquoise-dark);margin-bottom:2rem;text-align:center}.policy-container h2{color:#7dd3c0;color:var(--turquoise);margin-bottom:1rem;margin-top:2rem}.policy-container p{line-height:2;margin-bottom:1.5rem}.policy-container ul{margin-bottom:1.5rem;margin-left:2rem}.policy-container li{color:#7f8c8d;color:var(--text-light);line-height:2;margin-bottom:.5rem}@media (max-width:768px){.header-container{flex-direction:row;gap:1rem}.nav-links{flex-wrap:wrap;gap:1rem;justify-content:center}.hero-title{font-size:2rem}.hero-subtitle{font-size:1.1rem}.cart-item,.contact-grid,.product-detail-grid{grid-template-columns:1fr}.cart-item{text-align:center}.form-row{grid-template-columns:1fr}.cookie-consent-container{flex-direction:column;text-align:center}h1{font-size:2rem}h2{font-size:1.8rem}}.hamburger-menu{background:none;border:none;color:#333;cursor:pointer;display:none;font-size:1.5rem;padding:.5rem;transition:all .3s ease;z-index:1001}.hamburger-menu:hover{color:#8b7355}.hamburger-menu svg{display:block}@media (max-width:768px){.header-content{position:relative}.hamburger-menu{display:block}nav{background-color:#fff;box-shadow:0 4px 10px #0000001a;left:0;max-height:0;opacity:0;overflow:hidden;position:absolute;right:0;top:100%;transition:max-height .3s ease,opacity .3s ease;visibility:hidden}nav.active{max-height:500px;opacity:1;visibility:visible}nav ul{flex-direction:column;gap:0;padding:0;width:100%}nav ul li{border-bottom:1px solid #e0e0e0;width:100%}nav ul li:last-child{border-bottom:none}nav a{color:#333!important;display:block;justify-content:flex-start;padding:1rem 2rem;width:100%}nav a:hover{background-color:#f8f9fa}}
/*# sourceMappingURL=main.53074416.css.map*/