:root{--color-bg: #050505;--color-surface: #111111;--color-surface-hover: #1a1a1a;--color-text: #ffffff;--color-text-muted: #888888;--color-primary: #ffffff;--color-accent: #FF6B00;--color-accent-glow: rgba(255, 107, 0, .3);--color-border: #222222;--color-black: #000000;--color-white: #ffffff;--color-error: var(--color-error);--color-success: #00C851;--color-warning: #ffbb33;--font-heading: "Inter", sans-serif;--font-body: "Inter", sans-serif;--shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, .5);--shadow-md: 0 10px 15px -3px rgba(0, 0, 0, .5);--shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, .5);--radius-sm: 4px;--radius-md: 8px;--radius-lg: 12px;--transition: .3s cubic-bezier(.2, .8, .2, 1);--grid-color: rgba(255, 255, 255, .05);--grid-size: 40px}*{margin:0;padding:0;box-sizing:border-box}body{font-family:var(--font-body);background-color:var(--color-bg);color:var(--color-text);line-height:1.6;overflow-x:hidden}body:after{content:"";position:fixed;top:0;left:0;width:100%;height:100%;background:radial-gradient(circle at center,transparent 0%,rgba(5,5,5,.8) 100%);pointer-events:none;z-index:-1}h1,h2,h3,h4,h5,h6{font-family:var(--font-heading);font-weight:700;letter-spacing:-.02em;color:var(--color-primary)}a{text-decoration:none;color:inherit;transition:var(--transition)}ul{list-style:none}img{max-width:100%;display:block}.container{max-width:1400px;margin:0 auto;padding:0 2rem}.btn{display:inline-flex;align-items:center;justify-content:center;padding:1rem 2.5rem;background:var(--color-black);color:var(--color-accent);border-radius:50px;font-weight:600;font-size:.95rem;letter-spacing:1px;transition:all .3s ease;cursor:pointer;border:1px solid var(--color-accent);text-transform:uppercase;box-shadow:0 0 15px #ff6b001a;position:relative;overflow:hidden}.btn:hover{background:#ff6b001a;box-shadow:0 0 25px #ff6b0066;transform:translateY(-2px);color:var(--color-accent)}.btn-outline{background:var(--color-black);border:1px solid var(--color-accent);color:var(--color-accent);box-shadow:0 0 15px #ff6b001a}.btn-outline:hover{background:#ff6b001a;box-shadow:0 0 25px #ff6b0066;transform:translateY(-2px);color:var(--color-accent);border-color:var(--color-accent)}.badge{display:inline-block;padding:.4rem 1rem;background:#ff6b001a;color:var(--color-accent);font-weight:600;border-radius:50px;margin-bottom:1.5rem;font-size:.8rem;letter-spacing:1px;text-transform:uppercase;border:1px solid rgba(255,107,0,.2)}.navbar{position:fixed;top:0;left:0;width:100%;padding:1.5rem 0;z-index:1000;transition:all .4s cubic-bezier(.2,.8,.2,1);border-bottom:1px solid transparent;background:#05050500}.navbar.scrolled{background:#050505b3;backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);padding:1rem 0;border-bottom:1px solid rgba(255,255,255,.05);box-shadow:0 10px 30px -10px #00000080}.nav-container{display:flex;justify-content:space-between;align-items:center}.logo{font-size:1.5rem;font-weight:800;display:flex;align-items:center;gap:.75rem;color:var(--color-text);letter-spacing:-.03em}.nav-logo{height:40px;width:auto;object-fit:contain}.nav-links{display:flex;gap:3rem;align-items:center}.nav-links a{font-size:.9rem;font-weight:500;color:var(--color-text-muted);text-transform:uppercase;letter-spacing:1px}.nav-links a:hover,.nav-links a.active{color:var(--color-text)}.hero{min-height:100vh;width:100%;display:flex;align-items:center;position:relative;overflow:hidden;padding-top:100px;padding-bottom:4rem;background-image:linear-gradient(var(--grid-color) 1px,transparent 1px),linear-gradient(90deg,var(--grid-color) 1px,transparent 1px);background-size:var(--grid-size) var(--grid-size)}.hero-content{flex:1;padding-right:2rem;z-index:2;opacity:0;animation:fadeUp 1s cubic-bezier(.2,.8,.2,1) forwards .2s}.hero-title{font-size:4.5rem;line-height:1.1;margin-bottom:1.5rem;color:var(--color-text);font-weight:800;letter-spacing:-.03em}.hero-title span{color:var(--color-accent);display:block;background:linear-gradient(135deg,var(--color-accent),#ff8533);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}.hero-subtitle{font-size:1.25rem;margin-bottom:2.5rem;color:var(--color-text-muted);max-width:550px;font-weight:400;line-height:1.6}.hero-buttons{display:flex;gap:2rem;margin-top:2.5rem}.hero-visual{flex:1;height:100%;display:flex;justify-content:center;align-items:center;position:relative;opacity:0;animation:fadeIn 1s ease-out .3s forwards}.basket-container{position:relative;width:100%;max-width:600px;transition:transform .2s cubic-bezier(.25,.46,.45,.94);transform-style:preserve-3d}.basket-img{width:100%;filter:drop-shadow(0 30px 60px rgba(0,0,0,.6));animation:float 6s ease-in-out infinite}@keyframes fadeUp{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}@keyframes fadeIn{0%{opacity:0;transform:scale(.95)}to{opacity:1;transform:scale(1)}}@keyframes float{0%,to{transform:translateY(0)}50%{transform:translateY(-20px)}}.features-section{padding:8rem 0;background-color:transparent;border-top:1px solid var(--color-border)}.section-header{text-align:left;margin-bottom:4rem;display:flex;justify-content:space-between;align-items:flex-end}.section-title{font-size:3rem;margin-bottom:.5rem}.section-subtitle{color:var(--color-text-muted);font-size:1.1rem;max-width:400px}.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}.feature-card{padding:3rem 2rem;background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-md);text-align:left;transition:var(--transition)}.feature-card:hover{transform:translateY(-5px);background:var(--color-surface-hover);border-color:var(--color-text-muted)}.feature-icon{width:48px;height:48px;background:#ffffff0d;border-radius:8px;display:flex;align-items:center;justify-content:center;margin-bottom:1.5rem;color:var(--color-accent)}.feature-title{font-size:1.25rem;margin-bottom:1rem}.feature-desc{color:var(--color-text-muted);font-size:.95rem}.featured-section{padding:8rem 0;background-color:transparent;border-top:1px solid var(--color-border)}.featured-grid-layout{display:grid;grid-template-columns:1.5fr 1fr;gap:2rem;align-items:stretch}.featured-large-card{background:var(--color-surface);border-radius:var(--radius-md);overflow:hidden;display:flex;flex-direction:column;border:1px solid var(--color-border);transition:var(--transition);will-change:transform;contain:content}.featured-small-column{display:flex;flex-direction:column;gap:2rem}.featured-small-card{background:var(--color-surface);border-radius:var(--radius-md);overflow:hidden;display:flex;flex-direction:column;flex:1;border:1px solid var(--color-border);transition:var(--transition);will-change:transform;contain:content}.featured-large-card:hover,.featured-small-card:hover{transform:translateY(-5px);border-color:var(--color-text-muted)}.featured-image-wrapper{background:#ffffff08;display:flex;align-items:center;justify-content:center;overflow:hidden;position:relative;width:100%}.featured-image-wrapper.large{flex:1;min-height:400px}.featured-image-wrapper.small{height:250px}.featured-image-wrapper img{width:100%;height:100%;object-fit:contain;padding:2rem;transition:transform .5s ease}.featured-large-card:hover .featured-image-wrapper img,.featured-small-card:hover .featured-image-wrapper img{transform:scale(1.05)}.featured-card-info{padding:1.5rem;background:var(--color-surface);border-top:1px solid var(--color-border)}.featured-card-title{font-size:1.25rem;font-weight:600;margin-bottom:.5rem;color:var(--color-text)}.featured-card-desc{font-size:.95rem;color:var(--color-text-muted);margin-bottom:.5rem}@media (max-width: 968px){.featured-grid-layout{grid-template-columns:1fr}.featured-image-wrapper.large{min-height:300px}.featured-small-column{flex-direction:row}.featured-small-card{flex:1}}@media (max-width: 600px){.featured-small-column{flex-direction:column}.featured-image-wrapper.small{height:200px}}.page-header{padding:12rem 0 6rem;background:transparent;text-align:left}.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:2rem;padding-bottom:8rem}.product-card{background:transparent;border:none;border-radius:var(--radius-md);overflow:hidden;transition:all .4s ease;display:flex;flex-direction:column;position:relative;cursor:pointer;align-items:center;text-align:center}.product-image-wrapper{width:100%;aspect-ratio:4/5;background:transparent;display:flex;align-items:center;justify-content:center;overflow:hidden;padding:0;border-radius:var(--radius-md);margin-bottom:1rem;transition:var(--transition);position:relative}.product-image-wrapper img{width:100%;height:100%;object-fit:contain;padding:1rem;transition:transform .6s cubic-bezier(.2,.8,.2,1);filter:drop-shadow(0 10px 20px rgba(0,0,0,.15))}.product-card:hover .product-image-wrapper img{transform:scale(1.1);filter:drop-shadow(0 15px 30px rgba(0,0,0,.25))}.product-card:hover .product-image-wrapper{background:transparent}.product-info{padding:0;width:100%;display:flex;flex-direction:column;align-items:center}.product-title{font-size:1.1rem;font-weight:600;margin-bottom:0;color:var(--color-text);transition:color .3s ease}.product-card:hover .product-title{color:var(--color-accent)}.btn{align-self:flex-start;background:transparent;color:var(--color-accent);border:1px solid var(--color-accent);padding:.5rem 1.2rem;font-size:.85rem;border-radius:50px;font-weight:500;transition:all .3s ease;text-transform:uppercase;letter-spacing:.5px}.btn:hover{background:var(--color-accent);color:var(--color-black);transform:none;box-shadow:0 5px 15px #ff6b004d}.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center;padding-bottom:8rem}.about-image{border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--color-border)}.stat-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2rem;margin-top:3rem}.stat-item{background:var(--color-surface);padding:2rem;border-radius:var(--radius-md);border:1px solid var(--color-border);text-align:center}.stat-number{font-size:3rem;font-weight:800;color:var(--color-accent);margin-bottom:.5rem}.contact-wrapper{display:grid;grid-template-columns:1fr 1.5fr;gap:0;background:var(--color-surface);border-radius:var(--radius-lg);border:1px solid var(--color-border);overflow:hidden;margin-bottom:8rem}.contact-info{background:#0a0a0a;color:var(--color-text);padding:4rem;border-right:1px solid var(--color-border)}.contact-info h3{color:var(--color-text);margin-bottom:2rem;font-size:2rem}.contact-form-container{padding:4rem;background:var(--color-surface)}.form-label{color:var(--color-text-muted);font-size:.9rem;text-transform:uppercase;letter-spacing:1px}.form-input,.form-textarea{width:100%;padding:1rem;border:1px solid var(--color-border);border-radius:4px;font-family:var(--font-body);transition:var(--transition);background:#050505;color:var(--color-text)}.form-input:focus,.form-textarea:focus{outline:none;border-color:var(--color-accent);background:var(--color-black)}.footer{background-color:#050505;color:var(--color-text-muted);padding:6rem 0 2rem;border-top:1px solid var(--color-border)}.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1.5fr;gap:4rem;margin-bottom:4rem}.footer-brand .footer-logo{max-width:200px;margin-bottom:1.5rem;display:block}.footer-links h4,.footer-form h4{color:var(--color-text);margin-bottom:1.5rem;font-size:1.1rem}.footer-links ul li{margin-bottom:.8rem}.footer-links a:hover{color:var(--color-accent)}.minimal-form{display:flex;flex-direction:column;gap:1rem}.minimal-form input,.minimal-form textarea{background:var(--color-surface);border:1px solid var(--color-border);padding:.8rem;border-radius:var(--radius-sm);color:var(--color-text);font-family:var(--font-body);font-size:.9rem}.minimal-form input:focus,.minimal-form textarea:focus{outline:none;border-color:var(--color-accent)}.btn-sm{background:var(--color-accent);color:var(--color-black);border:none;padding:.6rem 1.2rem;border-radius:var(--radius-sm);font-weight:600;cursor:pointer;align-self:flex-start;transition:var(--transition)}.btn-sm:hover{background:#ff8533}.copyright{border-top:1px solid var(--color-border);padding-top:2rem;text-align:center;font-size:.9rem}@media (max-width: 968px){.hero-title{font-size:3.5rem}.feature-grid{grid-template-columns:repeat(2,1fr)}.about-grid,.contact-wrapper{grid-template-columns:1fr}.contact-info{border-right:none;border-bottom:1px solid var(--color-border)}}@media (max-width: 768px){.hero{flex-direction:column-reverse;text-align:center;padding-top:120px;height:auto;padding-bottom:4rem}.hero-content{padding-right:0}.hero-title{font-size:2.5rem}.feature-grid{grid-template-columns:1fr}.menu-toggle{display:flex;flex-direction:column;gap:6px;background:transparent;border:none;cursor:pointer;z-index:1001;padding:.5rem}.menu-toggle span{display:block;width:25px;height:2px;background-color:var(--color-text);transition:var(--transition)}.menu-toggle.active span:nth-child(1){transform:rotate(45deg) translate(5px,6px)}.menu-toggle.active span:nth-child(2){opacity:0}.menu-toggle.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-6px)}.nav-links{position:fixed;top:0;right:-100%;width:100%;height:100vh;background:#050505f2;backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);display:flex;flex-direction:column;align-items:center;justify-content:center;transition:var(--transition);z-index:1000}.nav-links.active{right:0}.nav-links a{font-size:1.5rem;margin:1.5rem 0}.footer-grid{grid-template-columns:1fr;gap:2rem}}@media (min-width: 769px){.menu-toggle{display:none}}.products-layout{display:grid;grid-template-columns:250px 1fr;gap:3rem;padding-bottom:8rem}.sidebar{position:sticky;top:100px;height:fit-content;background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-md);padding:2rem}.sidebar-title{font-size:1.2rem;margin-bottom:1.5rem;color:var(--color-text);border-bottom:1px solid var(--color-border);padding-bottom:.5rem}.filter-group{margin-bottom:2rem}.filter-heading{font-size:.95rem;font-weight:600;color:var(--color-text);margin-bottom:1rem;text-transform:uppercase;letter-spacing:.5px}.filter-list{display:flex;flex-direction:column;gap:.5rem}.filter-item{cursor:pointer;color:var(--color-text-muted);font-size:.9rem;transition:var(--transition);padding:.25rem 0;display:flex;align-items:center;justify-content:space-between}.filter-item:hover,.filter-item.active{color:var(--color-accent);padding-left:.5rem}.filter-item.active{font-weight:600}.filter-sublist{margin-left:1rem;margin-top:.5rem;display:none;flex-direction:column;gap:.5rem;border-left:1px solid var(--color-border);padding-left:1rem}.filter-item.expanded+.filter-sublist{display:flex}@media (max-width: 968px){.products-layout{grid-template-columns:1fr}.sidebar{position:relative;top:0;margin-bottom:3rem}}.products-page-container{display:flex;gap:4rem;padding-bottom:8rem;align-items:flex-start}.products-sidebar{width:250px;flex-shrink:0;position:sticky;top:120px}.filter-title{font-size:1.2rem;margin-bottom:1.5rem;color:var(--color-text);border-bottom:1px solid var(--color-border);padding-bottom:.5rem}.filter-list li{margin-bottom:.8rem}.filter-link{color:var(--color-text-muted);font-size:.95rem;transition:var(--transition);display:block;padding:.5rem 0}.filter-link:hover,.filter-link.active{color:var(--color-accent);padding-left:10px}.filter-link.active{font-weight:600;border-left:2px solid var(--color-accent);padding-left:15px}.products-grid{flex:1}@media (max-width: 968px){.products-page-container{flex-direction:column;gap:2rem}.products-sidebar{width:100%;position:static;margin-bottom:2rem}.filter-list{display:flex;flex-wrap:wrap;gap:1rem}.filter-link{background:var(--color-surface);padding:.5rem 1rem;border-radius:50px;border:1px solid var(--color-border)}.filter-link:hover,.filter-link.active{padding-left:1rem;background:var(--color-surface-hover);border-color:var(--color-accent);border-left:1px solid var(--color-accent)}}.filter-item{margin-bottom:.5rem}.filter-header{display:flex;justify-content:space-between;align-items:center;cursor:pointer;padding:.5rem 0}.filter-header:hover .filter-link{color:var(--color-accent);padding-left:10px}.toggle-icon{font-size:1.2rem;color:var(--color-text-muted);transition:var(--transition)}.collection-hero{position:relative;height:400px;display:flex;align-items:center;justify-content:center;text-align:center;background-color:#0a0a0a;overflow:hidden;margin-bottom:0}.collection-hero-bg{position:absolute;top:0;left:0;width:100%;height:100%;background-image:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");opacity:.6;z-index:1}.collection-hero-content{position:relative;z-index:2;max-width:800px;padding:0 1rem}.hero-overline{display:block;font-family:Inter,sans-serif;font-size:.85rem;text-transform:uppercase;letter-spacing:3px;color:var(--color-accent);margin-bottom:1rem;opacity:0;animation:fadeUp .8s ease forwards .2s}.hero-title{font-family:Playfair Display,serif;font-size:3.5rem;font-weight:700;color:var(--color-white);margin-bottom:1rem;line-height:1.1;opacity:0;animation:fadeUp .8s ease forwards .4s}.hero-subtitle{font-family:Inter,sans-serif;font-size:1.1rem;color:#ffffffb3;max-width:600px;margin:0 auto;opacity:0;animation:fadeUp .8s ease forwards .6s}@keyframes fadeUp{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.products-page-container{display:grid;grid-template-columns:220px 1fr;gap:4rem;padding-top:3rem;padding-bottom:6rem;align-items:start}.products-sidebar{position:sticky;top:100px}.sidebar-overline{display:block;font-size:.75rem;text-transform:uppercase;letter-spacing:2px;color:var(--color-text-muted);margin-bottom:1.5rem;font-weight:600}.subcategory-group{display:none;flex-direction:column;gap:.8rem}.sub-filter-link{display:block;font-family:Inter,sans-serif;font-size:.95rem;color:var(--color-text-muted);transition:all .3s ease;position:relative;padding-left:0}.sub-filter-link:hover,.sub-filter-link.active{color:var(--color-accent);padding-left:5px}.sub-filter-link.active:before{content:"";position:absolute;left:-10px;top:50%;transform:translateY(-50%);width:4px;height:4px;background-color:var(--color-accent);border-radius:50%}.category-bar{margin-bottom:3rem;position:sticky;top:80px;z-index:90;background:#0a0a0af2;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);padding:1rem 0;border-bottom:1px solid rgba(255,255,255,.1)}.filter-list.main-categories{display:flex;gap:2.5rem;justify-content:center;padding-bottom:0}.filter-link{font-family:Playfair Display,serif;font-size:1.2rem;color:var(--color-text-muted);background:transparent;border:none;padding:.5rem 0;position:relative;transition:color .3s ease;cursor:pointer}.filter-link:after{content:"";position:absolute;bottom:0;left:0;width:0;height:2px;background-color:var(--color-accent);transition:width .3s ease}.filter-link:hover,.filter-link.active{color:var(--color-white);background:transparent;border:none}.filter-link:hover:after,.filter-link.active:after{padding:.4rem 0;cursor:pointer;transition:color .2s ease;text-decoration:none}.sidebar-link:hover{color:var(--color-white)}.products-sidebar{padding-right:2rem;width:260px;flex-shrink:0}.sidebar-header{margin-bottom:1.5rem;padding-bottom:.5rem;border-bottom:1px solid var(--color-border)}.sidebar-title{font-family:Inter,sans-serif;font-size:.85rem;text-transform:uppercase;letter-spacing:1px;color:var(--color-text-muted);font-weight:600}.facet-section{border-bottom:1px solid var(--color-border);margin-bottom:0}.facet-header{display:flex;justify-content:space-between;align-items:center;padding:1rem 0;cursor:pointer;font-family:Inter,sans-serif;font-size:.95rem;font-weight:500;color:var(--color-white);transition:color .2s ease}.facet-header:hover{color:var(--color-accent)}.facet-icon{transition:transform .3s ease}.facet-section.active .facet-icon{transform:rotate(180deg)}.facet-content{max-height:0;overflow:hidden;transition:max-height .3s ease,padding-bottom .3s ease}.facet-section.active .facet-content{max-height:300px;padding-bottom:1rem}.facet-link{display:block;font-family:Inter,sans-serif;font-size:.9rem;color:var(--color-text-muted);padding:.3rem 0;cursor:pointer;transition:all .2s ease}.facet-link:hover{color:var(--color-white);padding-left:5px}.facet-link.active{color:var(--color-accent);font-weight:500}.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:2rem;width:100%}.product-card{background:transparent;border:none;border-radius:0;overflow:visible;transition:transform .4s cubic-bezier(.25,.46,.45,.94);cursor:pointer;opacity:0;animation:fadeUp .6s ease forwards;position:relative}.product-card:hover{transform:translateY(-5px)}.product-image-wrapper{position:relative;width:100%;aspect-ratio:4/5;background-color:#f5f5f5;overflow:hidden;margin-bottom:1rem;border-radius:4px}.product-image-wrapper img{width:100%;height:100%;object-fit:cover;transition:transform .8s ease}.product-card:hover .product-image-wrapper img{transform:scale(1.05)}.wishlist-btn{position:absolute;top:10px;right:10px;background:#ffffffe6;border:none;border-radius:50%;width:36px;height:36px;display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:2;opacity:0;transform:translateY(-10px);transition:all .3s ease;color:var(--color-black)}.product-card:hover .wishlist-btn{opacity:1;transform:translateY(0)}.wishlist-btn:hover{background:var(--color-white);color:var(--color-error)}.quick-add-btn{position:absolute;bottom:0;left:0;width:100%;background:var(--color-white);color:var(--color-black);border:none;padding:.8rem;font-family:Inter,sans-serif;font-size:.9rem;font-weight:500;text-transform:uppercase;cursor:pointer;transform:translateY(100%);transition:transform .3s ease;z-index:2}.product-card:hover .quick-add-btn{transform:translateY(0)}.quick-add-btn:hover{background:var(--color-accent)}.product-info{text-align:left;padding:0 .2rem}.product-title{font-family:Inter,sans-serif;font-size:1rem;font-weight:500;color:var(--color-white);margin-bottom:.3rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.product-price-row{display:flex;align-items:center;gap:.8rem;font-family:Inter,sans-serif}.current-price{font-size:1rem;font-weight:600;color:var(--color-white)}.original-price{font-size:.9rem;color:var(--color-text-muted);text-decoration:line-through}.discount-off{font-size:.8rem;color:#e67e22;font-weight:500}.product-desc,.product-card .btn{display:none}.no-results{grid-column:1 / -1;text-align:center;padding:4rem 0;color:var(--color-text-muted)}.btn-reset{background:transparent;border:1px solid var(--color-border);color:var(--color-white);padding:.8rem 2rem;margin-top:1rem;cursor:pointer;transition:all .3s ease}.btn-reset:hover{border-color:var(--color-accent);color:var(--color-accent)}@media (max-width: 768px){.products-page-container{flex-direction:column;gap:0;padding-bottom:4rem}.products-sidebar{width:100%;padding-right:0;margin-bottom:1rem;overflow-x:auto}.sidebar-filters{display:flex;flex-direction:row;gap:1rem;overflow-x:auto;padding-bottom:.5rem;border-bottom:1px solid var(--color-border)}.facet-section{border:none;margin:0;flex-shrink:0}.facet-header{padding:.5rem 1rem;background:var(--color-surface);border-radius:50px;border:1px solid var(--color-border);font-size:.85rem}.sidebar-link.active{background:var(--color-accent);color:var(--color-black);border-color:var(--color-accent)}.products-grid{grid-template-columns:repeat(2,1fr)!important;gap:1rem}.product-title{font-size:1rem}.product-desc,.product-card .btn{display:none}.product-image-wrapper{aspect-ratio:3/4}}.filter-sublist{display:none;flex-direction:column;padding-left:1.5rem;margin-top:.5rem;border-left:1px solid var(--color-border)}.filter-item.expanded .filter-sublist{display:flex}.filter-item.expanded .toggle-icon{transform:rotate(45deg);color:var(--color-accent)}.filter-sublist .filter-link{font-size:.9rem;padding:.3rem 0}.filter-sublist .filter-link:hover,.filter-sublist .filter-link.active{padding-left:5px}.products-content-area{flex:1;display:flex;flex-direction:column;gap:2rem}.subcategory-bar{display:flex;gap:1rem;overflow-x:auto;padding-bottom:.5rem;border-bottom:1px solid var(--color-border);min-height:40px}.subcategory-group{display:none;gap:.8rem;flex-wrap:wrap}.subcategory-group.active{display:flex}.sub-filter-link{font-size:.9rem;color:var(--color-text-muted);background:var(--color-surface);padding:.4rem 1rem;border-radius:50px;border:1px solid var(--color-border);transition:var(--transition);white-space:nowrap}.sub-filter-link:hover,.sub-filter-link.active{background:var(--color-surface-hover);color:var(--color-accent);border-color:var(--color-accent)}.filter-sublist,.toggle-icon{display:none!important}@media (max-width: 768px){.products-page-container{flex-direction:column;gap:0;padding-bottom:4rem}.products-sidebar{width:100%;position:sticky;top:70px;z-index:100;background:var(--color-background);padding:.8rem 0;margin-bottom:0;border-bottom:none}.filter-group{margin-bottom:0}.filter-title{display:none}.filter-list.main-categories{display:flex;flex-direction:row;flex-wrap:nowrap!important;white-space:nowrap;overflow-x:auto;gap:.8rem;padding-bottom:0;-webkit-overflow-scrolling:touch;scrollbar-width:none}.filter-list.main-categories::-webkit-scrollbar{display:none}.filter-list li{margin-bottom:0;flex-shrink:0}.filter-link{display:inline-block;padding:.4rem 1rem;font-size:.85rem}.subcategory-bar{position:sticky;top:123px;z-index:99;background:var(--color-background);padding:.8rem 0;margin-top:0;border-bottom:1px solid var(--color-border);flex-wrap:nowrap!important;white-space:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;min-height:auto}.sub-filter-link{font-size:.8rem;padding:.3rem .8rem}.subcategory-group{flex-wrap:nowrap!important}.products-grid{display:grid!important;grid-template-columns:repeat(2,1fr)!important;gap:1rem;padding-top:1.5rem}.product-card{padding:0}.product-image-wrapper{height:auto;aspect-ratio:1/1;margin-bottom:.5rem}.product-image-wrapper img{padding:.5rem}.product-title{font-size:.9rem;line-height:1.3;padding:0 .2rem}.product-desc,.btn{display:none!important}}.about-hero{position:relative;padding:8rem 0 2rem;background:radial-gradient(circle at top center,rgba(255,107,0,.15) 0%,transparent 60%);overflow:hidden;text-align:center}.about-hero-content{position:relative;z-index:2;max-width:800px;margin:0 auto}.about-hero-title{font-size:3.5rem;font-weight:700;margin-bottom:1.5rem;line-height:1.1}.about-hero-title span{color:var(--color-accent)}.about-hero-subtitle{font-size:1.2rem;color:var(--color-text-muted);max-width:600px;margin:0 auto}.section-tag{display:inline-block;font-size:.9rem;color:var(--color-accent);text-transform:uppercase;letter-spacing:1px;margin-bottom:1rem;font-weight:600}.about-story{padding:2rem 0}.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}.about-text p{margin-bottom:1.5rem;color:var(--color-text-muted);line-height:1.7}.about-image-wrapper{position:relative;border-radius:var(--radius-lg);overflow:hidden;box-shadow:0 20px 40px #0000004d}.about-img{width:100%;height:auto;display:block;transition:transform .5s ease}.about-image-wrapper:hover .about-img{transform:scale(1.05)}.stat-row{display:flex;gap:2rem;margin-top:2rem;border-top:1px solid var(--color-border);padding-top:2rem}.stat-box{display:flex;flex-direction:column}.stat-num{font-size:2rem;font-weight:700;color:var(--color-text);line-height:1;margin-bottom:.3rem}.stat-label{font-size:.9rem;color:var(--color-text-muted)}.about-mission{background:var(--color-surface);padding:6rem 0}.mission-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem}.mission-card{background:var(--color-background);padding:2.5rem;border-radius:var(--radius-md);border:1px solid var(--color-border);transition:var(--transition)}.mission-card:hover{border-color:var(--color-accent);transform:translateY(-5px)}.mission-icon{color:var(--color-accent);margin-bottom:1.5rem}.mission-card h3{font-size:1.5rem;margin-bottom:1rem}.mission-card p{color:var(--color-text-muted);line-height:1.6}.about-values{padding:6rem 0}.values-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:2rem;margin-top:3rem}.value-item{text-align:center;padding:2rem;background:var(--color-surface);border-radius:var(--radius-md);border:1px solid var(--color-border)}.value-item h4{font-size:1.2rem;margin-bottom:.8rem;color:var(--color-text)}.value-item p{font-size:.95rem;color:var(--color-text-muted)}@media (max-width: 768px){.container{padding:0 1.5rem}.section-title{font-size:2rem}.section-subtitle{font-size:1rem}.hero .container{flex-direction:column;text-align:center;gap:2rem}.hero-content{max-width:100%;align-items:center}.hero-title{font-size:2.5rem}.hero-visual{width:100%;justify-content:center}.basket-container{width:280px;height:280px}.feature-grid{grid-template-columns:1fr;gap:1.5rem}.featured-section .products-grid{grid-template-columns:1fr}.about-grid{grid-template-columns:1fr;gap:2rem}.about-image{height:300px;order:-1}.contact-wrapper{grid-template-columns:1fr;gap:3rem}.contact-info{order:-1}.footer-grid{grid-template-columns:1fr;text-align:left;gap:2rem}.footer-brand,.footer-links,.footer-form{align-items:flex-start}.social-links{justify-content:flex-start}}@media (max-width: 768px){.filter-list.main-categories{flex-wrap:nowrap!important;white-space:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;padding-bottom:.5rem}.subcategory-bar{flex-wrap:nowrap!important;white-space:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;padding-bottom:.5rem;margin-top:0;top:115px;background:var(--color-background)}.subcategory-group{flex-wrap:nowrap!important}.products-sidebar{z-index:100;background:var(--color-background)}.products-page-container{padding-top:1rem}}.breadcrumbs{font-family:Inter,sans-serif;font-size:.85rem;color:var(--color-text-muted);margin-bottom:1.5rem;display:flex;align-items:center;gap:.5rem}.breadcrumbs a{color:var(--color-text-muted);transition:color .3s ease}.breadcrumbs a:hover{color:var(--color-accent)}.breadcrumbs .separator{color:#555;font-size:.7rem}.breadcrumbs .current{color:var(--color-white);font-weight:500}.control-bar{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem;padding-bottom:1rem;border-bottom:1px solid var(--color-border)}.result-count{font-family:Inter,sans-serif;font-size:.9rem;color:var(--color-text-muted)}.result-count span{color:var(--color-white);font-weight:600}.sort-wrapper{display:flex;align-items:center;gap:.8rem}.sort-wrapper label{font-size:.9rem;color:var(--color-text-muted)}.sort-select{background:var(--color-surface);color:var(--color-white);border:1px solid var(--color-border);padding:.4rem .8rem;border-radius:4px;font-family:Inter,sans-serif;font-size:.9rem;cursor:pointer;outline:none}.sort-select:focus{border-color:var(--color-accent)}.accordion-item{border-bottom:1px solid var(--color-border);margin-bottom:1rem}.accordion-header{width:100%;display:flex;justify-content:space-between;align-items:center;background:none;border:none;color:var(--color-white);font-family:Inter,sans-serif;font-size:1rem;font-weight:600;padding:.8rem 0;cursor:pointer;transition:color .3s ease}.accordion-header:hover{color:var(--color-accent)}.accordion-icon{transition:transform .3s ease}.accordion-item.active .accordion-icon{transform:rotate(180deg)}.accordion-content{max-height:0;overflow:hidden;transition:max-height .4s ease}.accordion-item.active .accordion-content{max-height:500px}.checkbox-filter{display:flex;align-items:center;gap:.8rem;padding:.5rem 0;cursor:pointer;font-size:.95rem;color:var(--color-text-muted);transition:color .3s ease;position:relative;-webkit-user-select:none;user-select:none}.checkbox-filter:hover{color:var(--color-white)}.checkbox-filter input{position:absolute;opacity:0;cursor:pointer;height:0;width:0}.checkmark{height:18px;width:18px;background-color:transparent;border:1px solid var(--color-border);border-radius:3px;position:relative;transition:all .2s ease}.checkbox-filter:hover input~.checkmark{border-color:var(--color-accent)}.checkbox-filter input:checked~.checkmark{background-color:var(--color-accent);border-color:var(--color-accent)}.checkmark:after{content:"";position:absolute;display:none}.checkbox-filter input:checked~.checkmark:after{display:block}.checkbox-filter .checkmark:after{left:6px;top:2px;width:4px;height:9px;border:solid #000;border-width:0 2px 2px 0;transform:rotate(45deg)}.product-badge{position:absolute;top:10px;left:10px;background-color:var(--color-accent);color:var(--color-black);font-size:.75rem;font-weight:700;text-transform:uppercase;padding:.3rem .6rem;border-radius:2px;z-index:10;box-shadow:0 2px 5px #0003}.product-badge.hot{background-color:var(--color-error);color:var(--color-white)}@media (max-width: 768px){.control-bar{flex-direction:column;align-items:flex-start;gap:1rem}.sort-wrapper{width:100%;justify-content:space-between}.products-sidebar{position:relative;top:0;z-index:95;padding:0 1rem;margin-bottom:1rem}.accordion-header{font-size:.9rem}.products-page-container{padding-top:1rem}.category-bar{top:60px}}.products-page-container{display:grid;grid-template-columns:250px 1fr;gap:4rem;padding-top:8rem;padding-bottom:8rem;align-items:start}.products-sidebar{position:sticky;top:120px}.sidebar-heading{font-size:2rem;font-weight:500;color:var(--color-white);margin-bottom:2rem}.subcategory-item{color:#666;font-size:1.1rem;cursor:pointer;transition:color .3s ease;font-weight:500}.subcategory-item:hover,.subcategory-item.active{color:var(--color-white)}.products-main{width:100%}.page-heading{display:none}.category-tabs{display:flex;gap:2rem;margin-bottom:3rem;border-bottom:1px solid #222;padding-bottom:1rem}.category-tab{color:#666;font-size:1.1rem;font-weight:600;cursor:pointer;transition:color .3s ease;background:transparent;padding:0;border:none}.category-tab:hover,.category-tab.active{color:var(--color-white);background:transparent}.products-grid-new{display:grid;grid-template-columns:repeat(3,1fr);gap:3rem}.product-card-new{background:transparent;display:flex;flex-direction:column;gap:1rem;cursor:pointer;transition:var(--transition);border-radius:var(--radius-md);overflow:hidden;position:relative;will-change:transform,opacity;contain:content}.product-card-new:hover{transform:translateY(-5px)}.product-image-box{background:var(--color-surface);border-radius:var(--radius-md);aspect-ratio:4/3;display:flex;align-items:center;justify-content:center;overflow:hidden;border:1px solid var(--color-border)}.product-image-box img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}.product-card-new:hover .product-image-box img{transform:scale(1.05)}.product-details-new{text-align:left}.product-title-new{font-size:1.1rem;font-weight:600;color:var(--color-text);margin-bottom:.25rem}.product-desc-new{font-size:.9rem;color:var(--color-text-muted)}@media (max-width: 968px){.products-grid-new{grid-template-columns:repeat(2,1fr)}}@media (max-width: 768px){.products-page-container{grid-template-columns:1fr;gap:2rem}.products-sidebar{display:none}.products-grid-new{grid-template-columns:1fr}}.contact-hero{padding:8rem 0 4rem;text-align:center;background:radial-gradient(circle at top center,rgba(255,107,0,.15) 0%,transparent 60%)}.contact-section{padding-bottom:8rem}.contact-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:6rem;align-items:start}.contact-info-wrapper{display:flex;flex-direction:column;gap:3rem;padding-top:1rem}.contact-card{display:flex;align-items:flex-start;gap:1.5rem;background:transparent;border:none;padding:0}.contact-card:hover{transform:translate(5px)}.icon-box{width:56px;height:56px;background:#ff6b001a;border-radius:12px;display:flex;align-items:center;justify-content:center;color:var(--color-accent);flex-shrink:0;font-size:1.5rem;border:1px solid rgba(255,107,0,.2)}.card-content h3{font-size:1.2rem;margin-bottom:.5rem;color:var(--color-primary);font-weight:600}.card-content p{color:var(--color-text-muted);font-size:1rem;line-height:1.6}.contact-form-wrapper{background:#0a0a0a;padding:3rem;border-radius:24px;border:1px solid rgba(255,255,255,.08);box-shadow:0 20px 40px #0006;height:100%;display:flex;flex-direction:column;justify-content:center}.modern-form{display:flex;flex-direction:column;gap:1.5rem}.modern-form .form-group{margin-bottom:0}.modern-form label{display:block;margin-bottom:.5rem;font-weight:500;font-size:.75rem;color:var(--color-text-muted);letter-spacing:.5px;text-transform:uppercase}.modern-form input,.modern-form select,.modern-form textarea{width:100%;padding:.8rem 0;background:transparent;border:none;border-bottom:1px solid var(--color-border);border-radius:0;color:var(--color-text);font-family:var(--font-body);font-size:1rem;transition:var(--transition)}.modern-form select{cursor:pointer}.modern-form select option{background-color:#0a0a0a;color:var(--color-text);padding:10px}.modern-form input:focus,.modern-form select:focus,.modern-form textarea:focus{outline:none;border-color:var(--color-accent);box-shadow:none;background:linear-gradient(to bottom,transparent 95%,rgba(255,107,0,.1) 100%)}.btn-block{width:100%;padding:1.2rem;font-size:1rem;margin-top:1.5rem;letter-spacing:1px;text-transform:uppercase;font-weight:600}@media (max-width: 900px){.contact-grid{grid-template-columns:1fr;gap:4rem}.contact-form-wrapper{padding:2rem}}@media (max-width: 600px){.form-row{grid-template-columns:1fr;gap:0}.contact-hero{padding:6rem 0 3rem}.btn,.btn-outline,.btn-block{display:flex!important;width:100%!important;justify-content:center!important;align-items:center!important;opacity:1!important;visibility:visible!important;min-height:48px}.hero-content .btn{margin-bottom:1rem}.hero-content div[style*="display: flex"]{flex-direction:column;width:100%}}.testimonials-section{padding:8rem 0;background-color:transparent;border-top:1px solid var(--color-border)}.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}.testimonial-card{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-md);padding:2.5rem;transition:var(--transition);position:relative;overflow:hidden}.testimonial-card:hover{transform:translateY(-5px);border-color:var(--color-text-muted);background:var(--color-surface-hover)}.testimonial-content{display:flex;flex-direction:column;height:100%}.quote-icon{color:var(--color-accent);opacity:.3;margin-bottom:1.5rem}.testimonial-text{font-size:1.05rem;color:var(--color-text);line-height:1.7;margin-bottom:2rem;font-style:italic;flex-grow:1}.testimonial-author{margin-top:auto}.author-name{font-size:1.1rem;font-weight:700;color:var(--color-text);margin-bottom:.2rem}.author-role{font-size:.9rem;color:var(--color-text-muted)}.testimonial-rating{color:gold;margin-top:1rem;font-size:1.2rem;letter-spacing:2px}@media (max-width: 968px){.testimonials-grid{grid-template-columns:repeat(2,1fr)}}@media (max-width: 600px){.testimonials-grid{grid-template-columns:1fr}}.product-details-section{padding:10rem 0 6rem}.product-detail-image{width:100%;aspect-ratio:1/1;background:var(--color-surface);border-radius:var(--radius-md);overflow:hidden;border:1px solid var(--color-border);display:flex;align-items:center;justify-content:center}.product-details-section{padding-top:6rem;padding-bottom:4rem}.back-link{display:inline-flex;align-items:center;gap:.5rem;color:var(--color-text-muted);font-size:.9rem;font-weight:500;margin-bottom:2rem;transition:var(--transition);text-transform:uppercase;letter-spacing:1px}.back-link:hover{color:var(--color-accent)}.product-details-wrapper{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start}.product-detail-image{width:100%;aspect-ratio:4/3;background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-md);overflow:hidden;display:flex;align-items:center;justify-content:center}.product-detail-image img{width:100%;height:100%;object-fit:cover}.product-detail-info{display:flex;flex-direction:column;gap:1.5rem}.product-category{color:var(--color-accent);font-size:.9rem;font-weight:600;text-transform:uppercase;letter-spacing:1px}.detail-title{font-family:Playfair Display,serif;font-size:3.5rem;font-weight:700;color:var(--color-text);line-height:1.1;margin-top:-.5rem}.detail-desc{font-size:1.05rem;color:var(--color-text-muted);line-height:1.7;max-width:100%}.product-specs{background:#ffffff08;border:1px solid var(--color-border);padding:2rem;border-radius:var(--radius-md);margin-top:1rem}.specs-title{font-size:.9rem;font-weight:700;text-transform:uppercase;letter-spacing:1px;color:var(--color-text-muted);margin-bottom:1.5rem}.specs-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem 2rem}.spec-item{display:flex;align-items:center;gap:.75rem;color:var(--color-text);font-weight:500;font-size:.95rem}.spec-icon{color:var(--color-accent);display:flex;align-items:center}.action-area{display:flex;align-items:center;gap:2rem;margin-top:1.5rem;flex-wrap:wrap}.btn-request{background:var(--color-black);color:var(--color-white);border:1px solid var(--color-accent);padding:1rem 2.5rem;border-radius:4px;font-weight:600;text-transform:uppercase;letter-spacing:1px;cursor:pointer;transition:all .3s ease;box-shadow:0 4px 15px #ff6b001a}.btn-request:hover{background:var(--color-accent);color:var(--color-black);transform:translateY(-2px);box-shadow:0 8px 25px #ff6b004d}.wholesale-note{display:flex;align-items:center;gap:.5rem;color:var(--color-text-muted);font-size:.85rem}.wholesale-note .icon{font-size:1.2rem}.related-products-section{padding:4rem 0 8rem;border-top:1px solid var(--color-border)}.related-products-section .section-title{margin-bottom:3rem;font-size:2rem}@media (max-width: 900px){.product-details-wrapper{grid-template-columns:1fr;gap:2rem}.detail-title{font-size:2.5rem}}.btn-nav{background:var(--color-black);color:#fff!important;border:1px solid rgba(255,255,255,.1);padding:.7rem 1.8rem;border-radius:6px;font-weight:500;cursor:pointer;transition:all .3s ease;text-transform:none;font-size:1rem;display:inline-flex;align-items:center;justify-content:center;box-shadow:0 4px 25px #ff6b0026}.btn-nav:hover{background:var(--color-accent);color:#000!important;border-color:var(--color-accent);box-shadow:0 4px 20px #ff6b0066;transform:translateY(-2px)}.products-page-container{display:grid;grid-template-columns:250px 1fr;gap:4rem;padding-top:8rem;padding-bottom:6rem}.products-sidebar{position:sticky;top:120px;height:fit-content}.sidebar-heading{font-size:2rem;font-weight:500;color:var(--color-text);margin-bottom:2rem;letter-spacing:-.02em}.subcategory-list{display:flex;flex-direction:column;gap:1.5rem}.subcategory-item{color:var(--color-text-muted);cursor:pointer;transition:var(--transition);font-size:1rem;font-weight:400}.subcategory-item:hover,.subcategory-item.active{color:var(--color-text);font-weight:500}.category-tabs{display:flex;gap:2rem;margin-bottom:3rem;border-bottom:1px solid var(--color-border);padding-bottom:1rem}.category-tab{color:var(--color-text-muted);font-size:1.1rem;font-weight:600;cursor:pointer;transition:var(--transition);padding:.5rem 0;position:relative}.category-tab:hover,.category-tab.active{color:var(--color-text)}@media (max-width: 768px){.products-page-container{grid-template-columns:1fr;gap:2rem;padding-top:6rem;padding-bottom:4rem}.products-sidebar,.product-desc-new{display:none}.category-tabs{overflow-x:auto;padding-bottom:.5rem;margin-bottom:2rem;gap:1.5rem;-webkit-overflow-scrolling:touch}.category-tab{white-space:nowrap;font-size:1rem}}.sidebar-group{margin-bottom:0}.sidebar-category-header{font-size:1rem;font-weight:600;color:var(--color-text);margin-bottom:.8rem;text-transform:uppercase;letter-spacing:.5px}.sidebar-divider{height:1px;background:var(--color-border);margin:.1rem 0;opacity:.3}.subcategory-item{display:flex;justify-content:flex-start;align-items:center}.subcategory-count{font-size:.8rem;color:var(--color-text-muted);background:#ffffff0d;padding:2px 6px;border-radius:10px;margin-left:auto}.filter-link.active:before,.facet-link.active:before{content:">";margin-right:8px;color:var(--color-accent);font-weight:700;display:inline-block}.subcategory-item.active:before{content:">";margin-right:4px;color:var(--color-accent);font-weight:700;display:inline-block}.subcategory-item.active,.category-tab.active{padding-left:0!important}
