*{margin:0;padding:0;box-sizing:border-box}:root{--primary-color: #004ebd;--primary-dark: #003a8f;--primary-light: #0066e6;--primary-lighter: #0088ff;--secondary-color: #003a8f;--accent-color: #FFD23F;--text-dark: #1A1A1A;--text-light: #666666;--bg-light: #F8F9FA;--bg-white: #FFFFFF;--border-color: #E0E0E0;--shadow: 0 4px 6px rgba(0, 0, 0, .1);--shadow-lg: 0 10px 30px rgba(0, 0, 0, .15)}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;line-height:1.6;color:var(--text-dark);background-color:var(--bg-white);overflow-x:hidden}.container{max-width:1200px;margin:0 auto;padding:0 20px}.navbar{background:var(--bg-white);box-shadow:var(--shadow);position:sticky;top:0;z-index:1;padding:1rem 0}.navbar .container{display:flex;justify-content:space-between;align-items:center}.nav-brand{display:flex;align-items:center;gap:12px;font-size:1.5rem;font-weight:700;color:var(--primary-color)}.logo{height:40px;width:auto}.brand-name{font-size:1.8rem;font-weight:700;background:linear-gradient(135deg,var(--primary-color),var(--secondary-color));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.nav-menu{display:flex;list-style:none;gap:2rem}.nav-menu a{text-decoration:none;color:var(--text-dark);font-weight:500;transition:color .3s ease;position:relative}.nav-menu a:after{content:"";position:absolute;bottom:-5px;left:0;width:0;height:2px;background:var(--primary-color);transition:width .3s ease}.nav-menu a:hover{color:var(--primary-color)}.nav-menu a:hover:after{width:100%}.nav-actions{display:flex;align-items:center;gap:1rem}.cart-btn{position:relative;background:var(--primary-color);color:#fff;border:none;padding:10px 15px;border-radius:8px;cursor:pointer;display:flex;align-items:center;gap:8px;transition:background .3s ease,transform .2s ease}.cart-btn:hover{background:var(--primary-dark);transform:translateY(-2px)}.cart-count{background:var(--accent-color);color:var(--text-dark);border-radius:50%;width:20px;height:20px;display:flex;align-items:center;justify-content:center;font-size:.75rem;font-weight:700;position:absolute;top:-5px;right:-5px}.logout-btn{background:transparent;color:var(--text-dark);border:2px solid var(--primary-color);padding:10px 20px;border-radius:8px;cursor:pointer;font-weight:500;transition:all .3s ease;font-size:.95rem}.logout-btn:hover{background:var(--primary-color);color:#fff;transform:translateY(-2px)}.home-btn{position:relative;background:var(--primary-color);color:#fff;border:none;padding:10px 15px;border-radius:8px;cursor:pointer;display:flex;align-items:center;gap:8px;transition:background .3s ease,transform .2s ease}.home-btn:hover{background:var(--primary-dark);transform:translateY(-2px)}.hero-carousel{min-height:70vh;position:relative;background:linear-gradient(135deg,var(--bg-light) 0%,var(--bg-white) 100%);overflow:hidden;padding-top:2rem}.hero-carousel:before{content:"";position:absolute;top:-50%;right:-10%;width:600px;height:600px;background:radial-gradient(circle,var(--primary-light) 0%,transparent 70%);opacity:.1;border-radius:50%;z-index:0}.carousel-container{position:relative;max-width:1400px;margin:0 auto;height:70vh;overflow:hidden}.carousel-wrapper{display:flex;transition:transform .6s cubic-bezier(.68,-.55,.265,1.55);height:100%}.carousel-slide{min-width:100%;display:flex;align-items:center;justify-content:center;padding:2rem;position:relative;z-index:1}.carousel-slide-content{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;max-width:1200px;width:100%}.carousel-product-image{display:flex;align-items:center;justify-content:center;font-size:10rem;height:350px;background:var(--primary-dark);border-radius:20px;box-shadow:var(--shadow-lg);position:relative;overflow:hidden}.carousel-product-image img{width:calc(100% - 32px);height:calc(100% - 32px);object-fit:cover;object-position:center;margin:16px;border-radius:12px;opacity:.9}.carousel-product-image:before{content:"";position:absolute;inset:0;background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="0.5" opacity="0.2"/></svg>');opacity:.3}.carousel-product-info{animation:fadeInUp .8s ease}.carousel-product-badge{display:inline-block;background:var(--primary-color);color:#fff;padding:8px 20px;border-radius:50px;font-size:.9rem;font-weight:600;margin-bottom:1.5rem;text-transform:uppercase;letter-spacing:1px}.carousel-product-title{font-size:2.8rem;font-weight:800;margin-bottom:1rem;color:var(--text-dark);line-height:1.2}.carousel-product-description{font-size:1.1rem;color:var(--text-light);margin-bottom:1.5rem;line-height:1.8}.carousel-product-price{font-size:2.2rem;font-weight:700;color:var(--primary-color);margin-bottom:1.5rem}.carousel-cta-button{background:var(--primary-color);color:#fff;border:none;padding:18px 50px;font-size:1.2rem;font-weight:600;border-radius:50px;cursor:pointer;transition:all .3s ease;box-shadow:var(--shadow);display:inline-flex;align-items:center;gap:10px}.carousel-cta-button:hover{background:var(--primary-dark);transform:translateY(-3px);box-shadow:var(--shadow-lg)}.carousel-cta-button:active{transform:translateY(-1px)}.carousel-btn{position:absolute;top:50%;transform:translateY(-50%);background:#ffffffe6;border:none;width:50px;height:50px;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;z-index:10;transition:all .3s ease;box-shadow:var(--shadow);color:var(--primary-color)}.carousel-btn:hover{background:var(--primary-color);color:#fff;transform:translateY(-50%) scale(1.1)}.carousel-prev{left:2rem}.carousel-next{right:2rem}.carousel-dots{position:absolute;bottom:0;left:50%;transform:translate(-50%);display:flex;gap:12px;z-index:10}.carousel-dot{width:12px;height:12px;border-radius:50%;background:#ffffff80;border:2px solid var(--primary-color);cursor:pointer;transition:all .3s ease}.carousel-dot.active{background:var(--primary-color);width:32px;border-radius:6px}.carousel-dot:hover{background:var(--primary-light)}@keyframes fadeInUp{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}section{padding:5rem 0}.section-header{text-align:center;margin-bottom:3rem}.section-title{font-size:2.5rem;font-weight:700;margin-bottom:1rem;color:var(--text-dark)}.section-subtitle{font-size:1.2rem;color:var(--text-light)}.featured-products{background:var(--bg-white)}.products-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem}.product-card{background:var(--bg-white);border-radius:16px;overflow:hidden;box-shadow:var(--shadow);transition:all .3s ease;cursor:pointer;position:relative}.product-card:hover{transform:translateY(-10px);box-shadow:var(--shadow-lg)}.product-image{width:100%;height:250px;background:var(--primary-light);display:flex;align-items:center;justify-content:center;font-size:4rem;color:#fff;position:relative;overflow:hidden}.product-image img{width:calc(100% - 32px);height:calc(100% - 32px);object-fit:cover;object-position:center;margin:16px;border-radius:8px;transition:opacity .3s ease,mix-blend-mode .3s ease}.product-card:hover .product-image img{opacity:1;mix-blend-mode:normal}.product-image:before{content:"";position:absolute;inset:0;background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="0.5" opacity="0.3"/></svg>');opacity:.3}.product-info{padding:1.5rem}.product-name{font-size:1.3rem;font-weight:600;margin-bottom:.5rem;color:var(--text-dark)}.product-description{color:var(--text-light);font-size:.95rem;margin-bottom:1rem;line-height:1.6}.product-footer{display:flex;justify-content:space-between;align-items:center}.product-price{font-size:1.5rem;font-weight:700;color:var(--primary-color)}.add-to-cart{background:var(--primary-color);color:#fff;border:none;padding:10px 20px;border-radius:8px;cursor:pointer;font-weight:600;transition:all .3s ease}.add-to-cart:hover{background:var(--primary-dark);transform:scale(1.05)}.product-categories{background:var(--bg-light)}.categories-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem}.category-card{background:var(--bg-white);border-radius:20px;padding:2rem;text-align:center;box-shadow:var(--shadow);transition:all .3s ease;cursor:pointer;position:relative;overflow:hidden}.category-card:before{content:"";position:absolute;top:0;left:0;right:0;height:5px;background:linear-gradient(90deg,var(--primary-color),var(--primary-color));transform:scaleX(0);transition:transform .3s ease}.category-card:hover:before{transform:scaleX(1)}.category-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-lg)}.category-icon{font-size:4rem;margin-bottom:1.5rem;display:flex;align-items:center;justify-content:center;width:100%;height:150px;background:linear-gradient(135deg,var(--primary-light),var(--primary-light));border-radius:16px;color:#fff;position:relative;overflow:hidden}.category-icon:before{content:"";position:absolute;inset:0;background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="0.5" opacity="0.3"/></svg>');opacity:.3}.category-image{width:100%;height:100%;object-fit:cover;border-radius:16px}.category-icon-emoji{font-size:4rem;z-index:1;position:relative}.category-name{font-size:1.5rem;font-weight:600;margin-bottom:1rem;color:var(--text-dark)}.category-description{color:var(--text-light);font-size:1rem;line-height:1.6}.about-section{background:linear-gradient(135deg,var(--primary-color),var(--primary-dark));color:#fff}.about-content{max-width:800px;margin:0 auto;text-align:center}.about-content .section-title{color:#fff;margin-bottom:2rem}.about-text{font-size:1.2rem;margin-bottom:2rem;line-height:1.8}.about-list{list-style:none;text-align:left;display:inline-block;font-size:1.1rem;line-height:2}.about-list li{padding-left:2rem;position:relative;margin-bottom:.5rem}.about-list li:before{content:"\2713";position:absolute;left:0;color:var(--accent-color);font-weight:700;font-size:1.3rem}.footer{background:var(--text-dark);color:#fff;padding:2rem 0}.footer-content{display:flex;justify-content:space-between;align-items:center;gap:2rem}.footer-brand{display:flex;align-items:center;gap:12px}.logo-small{height:30px;width:auto}.footer-links{display:flex;flex-direction:column;gap:.5rem}.footer-links h4{color:#fff;font-size:1rem;font-weight:600;margin-bottom:.5rem}.footer-nav{list-style:none;display:flex;flex-direction:column;gap:.5rem}.footer-nav li{margin:0}.footer-nav a{color:#ffffffb3;text-decoration:none;transition:color .3s ease;font-size:.9rem}.footer-nav a:hover{color:#fff}.footer-text{color:#ffffffb3}@media (max-width: 768px){.nav-menu{display:none}.hero-carousel{min-height:60vh;padding-top:1rem}.carousel-container{height:60vh}.carousel-slide{padding:1rem}.carousel-slide-content{grid-template-columns:1fr;gap:1.5rem;text-align:center;padding:1rem}.carousel-product-image{font-size:7rem;height:250px}.carousel-product-title{font-size:2.5rem}.carousel-product-description{font-size:1.1rem}.carousel-product-price{font-size:2rem}.carousel-btn{width:40px;height:40px}.carousel-prev{left:1rem}.carousel-next{right:1rem}.products-grid{grid-template-columns:1fr}.categories-grid{grid-template-columns:repeat(2,1fr);gap:1rem}.category-card{padding:.5rem}.category-icon{height:100px;margin-bottom:.75rem}.category-name{font-size:1rem;margin-bottom:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.category-description{font-size:.7rem;display:-webkit-box;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;line-height:1.4}.section-title{font-size:2rem}.footer-content{flex-direction:column;gap:1.5rem;text-align:center;align-items:center}.footer-links,.footer-nav{align-items:center}}@media (max-width: 480px){.hero-carousel{min-height:55vh;padding-top:1rem}.carousel-container{height:55vh}.carousel-slide-content{gap:1rem;padding:.5rem}.carousel-product-title{font-size:1.8rem;margin-bottom:.5rem}.carousel-product-description{font-size:1rem;margin-bottom:1rem}.carousel-product-image{font-size:5rem;height:200px}.carousel-product-price{font-size:1.8rem}.carousel-cta-button{padding:14px 35px;font-size:1rem}.carousel-btn{width:35px;height:35px}.carousel-prev{left:.5rem}.carousel-next{right:.5rem}.container{padding:0 15px}section{padding:3rem 0}}.product-list-page{padding:2rem 0 4rem;min-height:60vh}.breadcrumb{display:flex;align-items:center;gap:.5rem;margin-bottom:2rem;font-size:1rem;color:var(--text-light)}.breadcrumb-link{color:var(--primary-color);text-decoration:none;transition:color .3s ease}.breadcrumb-link:hover{color:var(--primary-dark);text-decoration:underline}.breadcrumb-separator{color:var(--text-light);margin:0 .25rem}.breadcrumb-current{color:var(--text-dark);font-weight:500}.products-section{margin-top:2rem}.products-count{margin-bottom:2rem;color:var(--text-light);font-size:1.1rem}.no-products{text-align:center;padding:4rem 2rem;color:var(--text-light);font-size:1.2rem}.no-products p{margin:0}@media (max-width: 768px){.breadcrumb{font-size:.9rem}.product-list-page .products-grid{grid-template-columns:repeat(2,1fr);gap:1rem}.product-list-page .product-image{height:150px}.product-list-page .product-name{font-size:1rem;margin-bottom:.25rem;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.product-list-page .product-info{padding-inline:1rem;padding-block:.5rem}.product-list-page .product-description{display:none}.product-list-page .product-price{font-size:1.1rem}}
