*{margin:0;padding:0;box-sizing:border-box}:root{--primary-color:#ff6b9d;--secondary-color:#c44569;--accent-color:#f8b500;--dark-color:#2c3e50;--light-color:#ecf0f1;--white:#fff;--text-dark:#333;--text-light:#666;--shadow:0 4px 6px rgba(0,0,0,.1);--shadow-lg:0 10px 30px rgba(0,0,0,.2)}body{font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif;line-height:1.6;color:var(--text-dark);background:var(--light-color);overflow-x:hidden;position:relative}.animated-background{position:fixed;top:0;left:0;width:100%;height:100%;z-index:-1;background:linear-gradient(-45deg,#ee7752,#e73c7e,#23a6d5,#23d5ab);background-size:400% 400%;animation:gradient 15s ease infinite;opacity:.3}@keyframes gradient{0%{background-position:0 50%}50%{background-position:100% 50%}to{background-position:0 50%}}.container{max-width:1200px;margin:0 auto;padding:0 20px}.navbar{background:hsla(0,0%,100%,.95);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);box-shadow:var(--shadow);position:-webkit-sticky;position:sticky;top:0;z-index:1000;padding:1rem 0}.navbar .container{justify-content:space-between}.nav-brand,.navbar .container{display:flex;align-items:center}.nav-brand{gap:10px}#logo-canvas{width:50px;height:50px}.logo-text{font-size:1.8rem;font-weight:700;color:var(--primary-color);text-decoration:none;letter-spacing:2px}.nav-menu{display:flex;gap:2rem;margin:0;padding:0}.nav-menu,.nav-menu li{list-style:none}.nav-menu a{color:var(--text-dark);text-decoration:none;font-weight:500;transition:color .3s}.nav-menu a:hover{color:var(--primary-color)}.mobile-menu-toggle{display:none;flex-direction:column;background:none;border:none;cursor:pointer;padding:.5rem;gap:5px}.mobile-menu-toggle span{display:block;width:25px;height:3px;background:var(--text-dark);transition:all .3s;border-radius:3px}.mobile-menu-toggle span.active:first-child{transform:rotate(45deg) translate(8px,8px)}.mobile-menu-toggle span.active:nth-child(2){opacity:0}.mobile-menu-toggle span.active:nth-child(3){transform:rotate(-45deg) translate(7px,-7px)}.nav-actions{display:flex;align-items:center;gap:1rem}.language-switcher select{padding:.5rem;border:1px solid var(--text-light);border-radius:5px;background:var(--white);cursor:pointer}.main-content{min-height:calc(100vh - 200px);padding:2rem 0}.hero-section{text-align:center;padding:6rem 0;background:hsla(0,0%,100%,.9);border-radius:20px;margin:2rem auto;max-width:1200px;box-shadow:var(--shadow-lg)}.hero-title{font-size:3.5rem;color:var(--primary-color);margin-bottom:1rem;animation:fadeInUp 1s ease}.hero-subtitle{font-size:1.5rem;color:var(--text-light);margin-bottom:2rem;animation:fadeInUp 1s ease .2s backwards}@keyframes fadeInUp{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}.btn{display:inline-block;padding:.75rem 2rem;background:var(--primary-color);color:var(--white);text-decoration:none;border-radius:30px;font-weight:600;transition:all .3s;border:none;cursor:pointer;animation:fadeInUp 1s ease .4s backwards}.btn:hover{background:var(--secondary-color);transform:translateY(-2px);box-shadow:var(--shadow-lg)}.btn-primary{background:var(--primary-color)}.btn-secondary{background:var(--text-light)}.btn-small{padding:.5rem 1.5rem;font-size:.9rem}.btn-large{padding:1rem 3rem;font-size:1.1rem}.btn-disabled{background:var(--text-light);cursor:not-allowed;opacity:.6}.section-title{font-size:2.5rem;color:var(--dark-color);text-align:center;margin-bottom:3rem;position:relative}.section-title:after{content:"";position:absolute;bottom:-10px;left:50%;transform:translateX(-50%);width:100px;height:4px;background:var(--primary-color);border-radius:2px}.categories-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));grid-gap:2rem;gap:2rem;margin-bottom:4rem}.category-card{background:var(--white);border-radius:15px;padding:2rem;text-align:center;box-shadow:var(--shadow);transition:transform .3s,box-shadow .3s}.category-card:hover{transform:translateY(-10px);box-shadow:var(--shadow-lg)}.category-card img{width:100%;height:150px;object-fit:cover;border-radius:10px;margin-bottom:1rem}.category-card h3{color:var(--dark-color);margin-bottom:1rem}.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));grid-gap:2rem;gap:2rem;margin-bottom:3rem}.product-card{background:var(--white);border-radius:15px;overflow:hidden;box-shadow:var(--shadow);transition:transform .3s,box-shadow .3s}.product-card:hover{transform:translateY(-10px);box-shadow:var(--shadow-lg)}.product-image{width:100%;height:300px;object-fit:cover}.product-info{padding:1.5rem;display:flex;flex-direction:column;box-sizing:border-box}.product-info h3{color:var(--dark-color);margin-bottom:.5rem;font-size:1.2rem;word-wrap:break-word;overflow-wrap:break-word;line-height:1.4}.product-price{color:var(--primary-color);font-size:1.5rem;font-weight:700;margin-bottom:1rem}.product-info .btn{width:100%;box-sizing:border-box;max-width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.footer{background:var(--dark-color);color:var(--white);padding:3rem 0 1rem;margin-top:4rem}.footer-content{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));grid-gap:2rem;gap:2rem;margin-bottom:2rem}.footer-section h3,.footer-section h4{margin-bottom:1rem;color:var(--primary-color)}.footer-section ul{list-style:none}.footer-section ul li{margin-bottom:.5rem}.footer-section a{color:var(--white);text-decoration:none;transition:color .3s}.footer-section a:hover{color:var(--primary-color)}.footer-bottom{text-align:center;padding-top:2rem;border-top:1px solid hsla(0,0%,100%,.1)}.legal-page{background:var(--white);padding:3rem;border-radius:15px;box-shadow:var(--shadow-lg);max-width:900px;margin:2rem auto}.legal-page h1{color:var(--primary-color);margin-bottom:2rem;font-size:2.5rem}.legal-page h2{color:var(--dark-color);margin-top:2rem;margin-bottom:1rem}.legal-page section{margin-bottom:2rem}.legal-page ul{margin-left:2rem;margin-top:.5rem}.legal-page li{margin-bottom:.5rem}.last-updated{margin-top:3rem;font-style:italic;color:var(--text-light);text-align:right}.products-page{display:grid;grid-template-columns:300px 1fr;grid-gap:2rem;gap:2rem;margin-top:2rem}.filters-sidebar{background:var(--white);padding:2rem;border-radius:15px;box-shadow:var(--shadow);height:-moz-fit-content;height:fit-content;position:-webkit-sticky;position:sticky;top:100px}.filters-sidebar h3{color:var(--dark-color);font-size:1.5rem}.filter-group,.filters-sidebar h3{margin-bottom:1.5rem}.filter-group label{display:block;margin-bottom:.5rem;color:var(--text-dark);font-weight:600}.filter-group input,.filter-group select{width:100%;padding:.75rem;border:1px solid var(--text-light);border-radius:5px;font-size:1rem;margin-bottom:.5rem}.filter-group input:focus,.filter-group select:focus{outline:none;border-color:var(--primary-color)}.filter-form .btn{width:100%;margin-bottom:.5rem}.products-content{background:var(--white);padding:2rem;border-radius:15px;box-shadow:var(--shadow)}.products-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem;padding-bottom:1rem;border-bottom:2px solid var(--light-color)}.products-header h2{color:var(--dark-color);font-size:2rem}.no-products{text-align:center;padding:3rem;color:var(--text-light);font-size:1.2rem}.pagination{display:flex;justify-content:center;align-items:center;gap:1rem;margin-top:3rem;padding-top:2rem;border-top:1px solid var(--light-color)}.page-info{color:var(--text-light)}.product-detail{display:grid;grid-template-columns:1fr 1fr;grid-gap:3rem;gap:3rem;background:var(--white);padding:3rem;border-radius:15px;box-shadow:var(--shadow-lg);margin:2rem 0}.product-gallery{display:flex;flex-direction:column;gap:1rem}.product-detail-image{width:100%;border-radius:10px;box-shadow:var(--shadow)}.product-details h1{color:var(--dark-color);margin-bottom:1rem;font-size:2.5rem}.product-price-large{font-size:2.5rem;color:var(--primary-color);font-weight:700;margin-bottom:2rem}.product-description{margin-bottom:2rem}.product-description h3{color:var(--dark-color);margin-bottom:1rem}.product-specs{margin-bottom:2rem}.spec-group{margin-bottom:1.5rem}.spec-group label{display:block;font-weight:600;margin-bottom:.5rem;color:var(--text-dark)}.colors,.sizes{display:flex;flex-wrap:wrap;gap:.5rem}.color-badge,.size-badge{padding:.5rem 1rem;background:var(--light-color);border-radius:5px;font-weight:500}.size-badge{background:var(--primary-color);color:var(--white)}.product-actions{margin-top:2rem}.related-products{margin-top:4rem}@media (max-width:768px){.container{padding:0 15px}.navbar .container{position:relative;flex-wrap:wrap}.mobile-menu-toggle{display:flex;order:2}.nav-menu{display:none;position:absolute;top:100%;left:0;right:0;background:hsla(0,0%,100%,.98);flex-direction:column;gap:0;padding:1rem 0;box-shadow:var(--shadow-lg);margin-top:1rem;z-index:1001}.nav-menu.mobile-open{display:flex}.nav-menu li{width:100%;padding:.75rem 1.5rem;border-bottom:1px solid var(--light-color)}.nav-menu a{display:block;width:100%;padding:.5rem 0}.nav-actions{order:3;margin-left:auto}.nav-brand{order:1}.logo-text{font-size:1.4rem}#logo-canvas{width:40px;height:40px}.hero-section{padding:3rem 1rem;margin:1rem auto}.hero-title{font-size:2rem;line-height:1.2}.hero-subtitle{font-size:1.1rem;padding:0 1rem}.section-title{font-size:1.8rem;margin-bottom:2rem}.categories-grid{grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:1rem;margin-bottom:2rem}.category-card{padding:1rem}.category-card h3{font-size:1rem}.products-grid{grid-template-columns:repeat(auto-fill,minmax(140px,1fr));gap:1rem}.product-card{padding:.75rem;overflow:hidden}.product-info{padding:1rem;min-height:0}.product-card h3{font-size:.9rem;margin:.5rem 0;word-wrap:break-word;overflow-wrap:break-word;line-height:1.3}.product-price{font-size:.9rem;margin-bottom:.75rem}.btn{padding:.6rem 1rem;font-size:.85rem}.btn,.btn-small{width:100%;max-width:100%;box-sizing:border-box}.btn-small{padding:.5rem .75rem;font-size:.8rem;white-space:nowrap}.product-image{height:200px}.legal-page{padding:1.5rem 1rem}.products-page{grid-template-columns:1fr;gap:1.5rem}.filters-sidebar{position:static;width:100%;padding:1.5rem;background:var(--white);border-radius:10px;margin-bottom:2rem}.filter-form{display:flex;flex-direction:column;gap:1rem}.filter-group{width:100%}.filter-group input,.filter-group select{width:100%;padding:.75rem}.products-content{width:100%}.product-detail{grid-template-columns:1fr;gap:1.5rem;padding:1.5rem;margin:1rem 0}.product-details h1{font-size:1.8rem}.product-price-large{font-size:2rem}.main-content{padding:1rem 0}.footer{padding:2rem 0 1rem}.footer-content{grid-template-columns:1fr;gap:2rem;text-align:center}}@media (max-width:480px){.hero-title{font-size:1.5rem}.hero-subtitle{font-size:1rem}.products-grid{grid-template-columns:repeat(auto-fill,minmax(140px,1fr));gap:.75rem}.product-card{padding:.5rem}.product-info{padding:.75rem}.product-card h3{font-size:.85rem;margin:.25rem 0;line-height:1.2}.product-price{font-size:.85rem;margin-bottom:.5rem}.product-image{height:150px}.btn-small{padding:.4rem .5rem;font-size:.75rem}.category-card{padding:.75rem}.section-title{font-size:1.5rem}}