body{box-sizing:border-box}.container{max-width:1400px;padding:0 2rem;margin:0 auto}@media(max-width:768px){.container{padding:0 1rem}}.profile-icon{position:relative;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .3s cubic-bezier(.4,0,.2,1)}.profile-icon:hover{transform:scale(1.05)}.profile-icon:active{transform:scale(.98)}.profile-icon:focus{outline:none;box-shadow:0 0 0 3px hsl(var(--primary)/.3);border-radius:50%}.profile-icon__avatar{position:relative;width:2.5rem;height:2.5rem;border-radius:50%;overflow:hidden;display:flex;align-items:center;justify-content:center;transition:all .3s ease;border:2px solid hsl(var(--border))}.profile-icon__image{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;border-radius:50%;transition:all .3s ease}.profile-icon__user-icon{color:hsl(var(--muted-foreground));transition:all .3s ease}.profile-icon__status{position:absolute;bottom:2px;right:2px;width:10px;height:10px;border-radius:50%;border:2px solid hsl(var(--background));transition:all .3s ease}.profile-icon__status--online{background-color:#10b981;box-shadow:0 0 0 2px hsl(var(--background))}.profile-icon--placeholder .profile-icon__avatar{background:hsl(var(--muted));border:2px solid hsl(var(--border));box-shadow:0 2px 8px hsl(var(--foreground)/.1),inset 0 1px 0 hsl(var(--background)/.1)}.profile-icon--placeholder:hover .profile-icon__avatar{background:hsl(var(--muted)/.8);border-color:hsl(var(--primary));box-shadow:0 4px 12px hsl(var(--foreground)/.15),inset 0 1px 0 hsl(var(--background)/.2)}.profile-icon--placeholder:hover .profile-icon__user-icon{color:hsl(var(--primary));transform:scale(1.1)}.profile-icon--image .profile-icon__avatar{border:2px solid hsl(var(--border));box-shadow:0 2px 8px hsl(var(--foreground)/.1),0 1px 3px hsl(var(--foreground)/.05)}.profile-icon--image:hover .profile-icon__avatar{border-color:hsl(var(--primary));box-shadow:0 4px 16px hsl(var(--foreground)/.2),0 2px 6px hsl(var(--foreground)/.1)}.profile-icon--image:hover .profile-icon__image{transform:scale(1.05)}.profile-icon--image:hover .profile-icon__status--online{background-color:#059669;transform:scale(1.1)}@media(max-width:768px){.profile-icon__avatar{width:2rem;height:2rem}.profile-icon__user-icon{width:16px;height:16px}.profile-icon__status{width:8px;height:8px;bottom:1px;right:1px}}@keyframes statusPulse{0%,to{opacity:1}50%{opacity:.7}}.profile-icon__status--online{animation:statusPulse 2s ease-in-out infinite}@media(prefers-reduced-motion:reduce){.profile-icon,.profile-icon__avatar,.profile-icon__image,.profile-icon__status,.profile-icon__user-icon{transition-duration:.1s}.profile-icon__status--online{animation:none}}.profile-dropdown{position:relative;display:inline-block}.profile-dropdown__trigger{background:none;border:none;cursor:pointer;padding:0;border-radius:50%;transition:all .2s ease}.profile-dropdown__trigger:focus{outline:none;box-shadow:0 0 0 2px hsl(var(--primary)/.3)}.profile-dropdown__trigger:hover{transform:scale(1.05)}.profile-dropdown__menu{position:absolute;top:100%;right:0;margin-top:.5rem;min-width:240px;background:hsl(var(--background));border:1px solid hsl(var(--border));border-radius:.75rem;box-shadow:0 10px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04);z-index:1000;overflow:hidden;animation:slideInDropdown .2s ease-out}@media(prefers-color-scheme:dark){.profile-dropdown__menu{box-shadow:0 10px 25px -5px rgba(0,0,0,.3),0 10px 10px -5px rgba(0,0,0,.2)}}[data-theme=dark] .profile-dropdown__menu{box-shadow:0 10px 25px -5px rgba(0,0,0,.3),0 10px 10px -5px rgba(0,0,0,.2)}.profile-dropdown__header{padding:1rem;background:hsl(var(--muted)/.3);border-bottom:1px solid hsl(var(--border))}.profile-dropdown__user-info{display:flex;align-items:center;gap:.75rem}.profile-dropdown__avatar{width:2.5rem;height:2.5rem;border-radius:50%;-o-object-fit:cover;object-fit:cover;border:2px solid hsl(var(--border))}.profile-dropdown__avatar--placeholder{background:hsl(var(--muted));display:flex;align-items:center;justify-content:center;color:hsl(var(--muted-foreground))}.profile-dropdown__details{flex:1;min-width:0}.profile-dropdown__name{font-weight:600;font-size:.875rem;color:hsl(var(--foreground));line-height:1.2;word-break:break-word}.profile-dropdown__email{font-size:.75rem;color:hsl(var(--muted-foreground));line-height:1.2;margin-top:.125rem;word-break:break-all}.profile-dropdown__divider{height:1px;background:hsl(var(--border));margin:0}.profile-dropdown__items{padding:.5rem 0}.profile-dropdown__item{display:flex;align-items:center;gap:.75rem;width:100%;padding:.625rem 1rem;text-decoration:none;color:hsl(var(--foreground));font-size:.875rem;font-weight:500;background:none;border:none;cursor:pointer;transition:all .15s ease;text-align:left}.profile-dropdown__item:hover{background:hsl(var(--muted));color:hsl(var(--foreground))}.profile-dropdown__item:focus{outline:none;background:hsl(var(--muted))}.profile-dropdown__item svg{flex-shrink:0;color:hsl(var(--muted-foreground));transition:color .15s ease}.profile-dropdown__item:hover svg{color:hsl(var(--foreground))}.profile-dropdown__item span{flex:1}.profile-dropdown__item--danger{color:#dc2626}.profile-dropdown__item--danger:hover{background:#fef2f2;color:#dc2626}.profile-dropdown__item--danger svg,.profile-dropdown__item--danger:hover svg{color:#dc2626}@media(prefers-color-scheme:dark){.profile-dropdown__item--danger{color:#ef4444}.profile-dropdown__item--danger:hover{background:rgba(239,68,68,.1);color:#ef4444}.profile-dropdown__item--danger svg,.profile-dropdown__item--danger:hover svg{color:#ef4444}}[data-theme=dark] .profile-dropdown__item--danger{color:#ef4444}[data-theme=dark] .profile-dropdown__item--danger:hover{background:rgba(239,68,68,.1);color:#ef4444}[data-theme=dark] .profile-dropdown__item--danger svg,[data-theme=dark] .profile-dropdown__item--danger:hover svg{color:#ef4444}@keyframes slideInDropdown{0%{opacity:0;transform:translateY(-8px) scale(.95)}to{opacity:1;transform:translateY(0) scale(1)}}@media(max-width:768px){.profile-dropdown__menu{min-width:220px;right:-1rem}.profile-dropdown__name{font-size:.8125rem}.profile-dropdown__email{font-size:.6875rem}.profile-dropdown__item{font-size:.8125rem;padding:.75rem 1rem}}@media(prefers-reduced-motion:reduce){.profile-dropdown__menu{animation:none}.profile-dropdown__item,.profile-dropdown__trigger{transition:none}}.theme-toggle{background:none;border:none;cursor:pointer;padding:2px;border-radius:1.5rem;transition:all .3s cubic-bezier(.4,0,.2,1)}.theme-toggle:hover{transform:scale(1.05)}.theme-toggle:focus{outline:none;box-shadow:0 0 0 2px hsl(var(--primary)/.5)}.theme-toggle:active{transform:scale(.98)}.theme-toggle__track{position:relative;width:3.5rem;height:1.75rem;border-radius:1rem;overflow:hidden;transition:all .4s cubic-bezier(.4,0,.2,1);border:1px solid hsl(var(--border));background:linear-gradient(135deg,hsl(var(--muted)) 0,hsl(var(--muted)/.8) 100%);backdrop-filter:blur(10px);box-shadow:inset 0 1px 2px rgba(0,0,0,.1),0 1px 3px rgba(0,0,0,.1)}.theme-toggle--light .theme-toggle__track{background:linear-gradient(135deg,hsl(45,100%,85%),hsl(45,100%,75%));border-color:hsl(45,50%,70%);box-shadow:inset 0 1px 2px rgba(0,0,0,.05),0 1px 3px rgba(0,0,0,.1)}.theme-toggle--dark .theme-toggle__track{background:linear-gradient(135deg,hsl(240,20%,25%),hsl(240,25%,15%));border-color:hsl(240,20%,35%);box-shadow:inset 0 1px 2px rgba(0,0,0,.3),0 1px 3px rgba(0,0,0,.2)}.theme-toggle__thumb{position:absolute;top:2px;left:2px;width:1.375rem;height:1.375rem;border-radius:50%;transition:all .4s cubic-bezier(.4,0,.2,1);display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,hsl(var(--background)) 0,hsl(var(--muted-foreground)/.1) 100%);border:1px solid hsl(var(--border));box-shadow:0 2px 8px rgba(0,0,0,.15),0 1px 3px rgba(0,0,0,.1)}.theme-toggle--light .theme-toggle__thumb{transform:translateX(0);background:linear-gradient(135deg,#fff,#fef9c3);box-shadow:0 2px 8px rgba(245,158,11,.3),0 1px 3px rgba(0,0,0,.1);border-color:hsl(45,50%,80%)}.theme-toggle--dark .theme-toggle__thumb{transform:translateX(1.75rem);background:linear-gradient(135deg,hsl(240,15%,85%),hsl(240,20%,75%));box-shadow:0 2px 8px rgba(99,102,241,.3),0 1px 3px rgba(0,0,0,.2);border-color:hsl(240,20%,60%)}.theme-toggle__icon{position:absolute;display:flex;align-items:center;justify-content:center;width:100%;height:100%;transition:all .3s cubic-bezier(.4,0,.2,1)}.theme-toggle__icon--sun{color:#f59e0b;opacity:1;transform:rotate(0deg) scale(1)}.theme-toggle--dark .theme-toggle__icon--sun{opacity:0;transform:rotate(180deg) scale(.5)}.theme-toggle__icon--moon{color:#6366f1;opacity:0;transform:rotate(-180deg) scale(.5)}.theme-toggle--dark .theme-toggle__icon--moon{opacity:1;transform:rotate(0deg) scale(1)}.theme-toggle__bg-icon{position:absolute;top:50%;transform:translateY(-50%);transition:all .4s cubic-bezier(.4,0,.2,1);opacity:.3;pointer-events:none}.theme-toggle__bg-icon--sun{right:8px;color:#f59e0b;opacity:0;transform:translateY(-50%) rotate(-90deg) scale(.8)}.theme-toggle--light .theme-toggle__bg-icon--sun{opacity:.2;transform:translateY(-50%) rotate(0deg) scale(1)}.theme-toggle__bg-icon--moon{left:8px;color:#6366f1;opacity:0;transform:translateY(-50%) rotate(90deg) scale(.8)}.theme-toggle--dark .theme-toggle__bg-icon--moon{opacity:.2;transform:translateY(-50%) rotate(0deg) scale(1)}.theme-toggle:hover .theme-toggle__thumb{box-shadow:0 4px 12px rgba(0,0,0,.2),0 2px 6px rgba(0,0,0,.1)}.theme-toggle:hover.theme-toggle--light .theme-toggle__thumb{box-shadow:0 4px 12px rgba(245,158,11,.4),0 2px 6px rgba(0,0,0,.1)}.theme-toggle:hover.theme-toggle--dark .theme-toggle__thumb{box-shadow:0 4px 12px rgba(99,102,241,.4),0 2px 6px rgba(0,0,0,.2)}.theme-toggle__thumb:empty{background:linear-gradient(135deg,hsl(var(--muted)) 0,hsl(var(--muted-foreground)/.2) 100%)}@media(prefers-reduced-motion:reduce){.theme-toggle,.theme-toggle__bg-icon,.theme-toggle__icon,.theme-toggle__thumb,.theme-toggle__track{transition-duration:.1s}}.navigation__desktop-actions .language-switcher{min-width:120px}.mobile-menu__language-switcher{padding:1rem;border-top:1px solid var(--border);display:flex;justify-content:center;align-items:center}.mobile-menu__language-switcher button{transition:all .2s ease}.mobile-menu__language-switcher button:hover{transform:translateY(-1px)}.mobile-menu__language-switcher button:active{transform:translateY(0)}.mobile-menu__actions{display:flex;flex-direction:column;gap:1rem;padding:1rem;margin-top:auto;border-top:1px solid var(--border)}.hero-banner{position:relative;min-height:100vh;display:flex;align-items:center;overflow:hidden;background:hsl(var(--background))}.hero-banner__background{position:absolute;inset:0;pointer-events:none;overflow:hidden}.hero-banner__gradient-orb{position:absolute;border-radius:50%;filter:blur(120px);opacity:.15;animation:float 25s ease-in-out infinite}.hero-banner__gradient-orb--1{width:600px;height:600px;background:hsl(var(--primary));top:-300px;right:-200px;animation-delay:0s;z-index:1}.hero-banner__gradient-orb--2{width:500px;height:500px;background:hsl(var(--secondary));bottom:-250px;left:-250px;animation-delay:8s;z-index:2;opacity:.4}.hero-banner__pattern{position:absolute;inset:0;background-image:radial-gradient(circle at 20% 50%,transparent 0,hsl(var(--background)) 70%),radial-gradient(circle at 80% 50%,transparent 0,hsl(var(--background)) 70%)}.hero-banner__container{position:relative;z-index:10;width:100%;max-width:1400px;margin:0 auto;padding:2rem}.hero-banner__content{display:grid;grid-template-columns:1.2fr 1fr;gap:4rem;align-items:center;margin-bottom:5rem}@media(max-width:1024px){.hero-banner__content{grid-template-columns:1fr;gap:3rem;margin-bottom:3rem}}.hero-banner__main{animation:slideInLeft .8s ease-out;max-width:600px}.hero-banner__badge{display:inline-flex;align-items:center;gap:.5rem;padding:.5rem 1rem;background:hsl(var(--accent));border:2px solid hsl(var(--accent));border-radius:.25rem;font-size:.875rem;font-weight:700;margin-bottom:1.5rem;animation:pulse 3s infinite;text-transform:uppercase;letter-spacing:.05em}.hero-banner__badge,.hero-banner__badge svg{color:hsl(var(--accent-foreground))}.hero-banner__title{font-size:clamp(2.5rem,5vw,3.5rem);font-weight:900;line-height:1.3;margin-bottom:1.5rem;color:hsl(var(--foreground));text-transform:uppercase}.hero-banner__title-highlight{display:inline-block;color:hsl(var(--primary));position:relative}.hero-banner__title-highlight:after{content:"";position:absolute;bottom:0;left:0;right:0;height:4px;background:hsl(var(--primary));transform:scaleX(0);transform-origin:left;animation:underline-slide 1s ease-out .5s forwards}.hero-banner__description{font-size:1.125rem;line-height:1.7;color:hsl(var(--muted-foreground));margin-bottom:2rem}.hero-banner__cta-group{display:flex;flex-wrap:wrap;gap:1rem;margin-bottom:2rem}@media(max-width:480px){.hero-banner__cta-group{flex-direction:column}.hero-banner__cta-group button{width:100%;font-size:.75rem}}.hero-banner__cta-primary{background:hsl(var(--primary));border:3px solid hsl(var(--primary));color:hsl(var(--primary-foreground));font-weight:700;padding:1rem 2.5rem;transition:all .2s ease;text-transform:uppercase;letter-spacing:.05em}.hero-banner__cta-primary:hover{transform:translateY(-3px);box-shadow:0 15px 30px hsla(var(--primary-rgb),.4)}.hero-banner__cta-primary:active{transform:translateY(-1px)}.hero-banner__cta-secondary{border:3px solid hsl(var(--secondary));background:rgba(0,0,0,0);color:hsl(var(--secondary));font-weight:700;padding:1rem 2.5rem;transition:all .2s ease;text-transform:uppercase;letter-spacing:.05em}.hero-banner__cta-secondary:hover{background:hsl(var(--secondary));color:hsl(var(--secondary-foreground));transform:translateY(-3px);box-shadow:0 15px 30px hsla(var(--secondary-rgb),.3)}.hero-banner__cta-secondary:active{transform:translateY(-1px)}.hero-banner__trust-features{display:flex;flex-wrap:wrap;gap:1.5rem;animation:fadeIn .8s ease-out .4s both}.hero-banner__trust-item{display:flex;align-items:center;gap:.5rem;font-size:.875rem;font-weight:600;color:hsl(var(--foreground));text-transform:uppercase;letter-spacing:.03em}.hero-banner__trust-item svg{color:hsl(var(--primary));flex-shrink:0}.hero-banner__visual{position:relative;animation:slideInRight .8s ease-out}@media(max-width:1024px){.hero-banner__visual{max-width:600px;margin:0 auto}}.hero-banner__showcase-grid{display:grid;grid-template-columns:2fr 1fr;grid-template-rows:repeat(2,1fr);gap:1rem;height:500px}@media(max-width:768px){.hero-banner__showcase-grid{height:400px;grid-template-columns:1fr;grid-template-rows:2fr 1fr 1fr}}.hero-banner__showcase-item{position:relative;border-radius:0;overflow:hidden;background:hsl(var(--card));border:3px solid hsl(var(--foreground));transition:all .2s ease}.hero-banner__showcase-item:hover{transform:translateY(-8px) rotate(-1deg);box-shadow:8px 8px 0 hsl(var(--primary)),0 20px 40px hsla(var(--foreground)/.2)}.hero-banner__showcase-item:hover .hero-banner__showcase-image{transform:scale(1.05)}.hero-banner__showcase-item--main{grid-row:span 2;border-color:hsl(var(--primary))}@media(max-width:768px){.hero-banner__showcase-item--main{grid-row:span 1}}.hero-banner__showcase-item--secondary{animation:fadeInUp .8s ease-out .2s both;border-color:hsl(var(--secondary))}.hero-banner__showcase-item--tertiary{animation:fadeInUp .8s ease-out .3s both;border-color:hsl(var(--accent))}.hero-banner__showcase-image{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;transition:transform .5s ease}.hero-banner__showcase-tag{top:1rem;left:1rem;padding:.5rem 1rem;background:hsl(var(--primary));color:hsl(var(--primary-foreground));font-size:.75rem;border-radius:0;letter-spacing:.1em;transform:rotate(-2deg)}.hero-banner__showcase-label,.hero-banner__showcase-tag{position:absolute;font-weight:900;text-transform:uppercase}.hero-banner__showcase-label{bottom:0;left:0;right:0;padding:1rem;background:hsl(var(--foreground));color:hsl(var(--background));text-align:center;letter-spacing:.05em}.hero-banner__process{position:relative;padding:3rem 2rem;background:hsl(var(--card));border:4px solid hsl(var(--foreground));border-radius:0;animation:slideUp .8s ease-out .5s both;box-shadow:10px 10px 0 hsl(var(--accent)),10px 10px 0 2px hsl(var(--foreground))}.hero-banner__process-title{text-align:center;font-size:1.75rem;font-weight:900;margin-bottom:3rem;color:hsl(var(--foreground));text-transform:uppercase;letter-spacing:.05em}.hero-banner__process-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;position:relative}@media(max-width:768px){.hero-banner__process-steps{grid-template-columns:1fr;gap:2rem}}.hero-banner__process-steps:before{content:"";position:absolute;top:35px;left:20%;right:20%;height:3px;background-image:repeating-linear-gradient(90deg,hsl(var(--primary)),hsl(var(--primary)) 10px,transparent 10px,transparent 20px);z-index:0}@media(max-width:768px){.hero-banner__process-steps:before{display:none}}.hero-banner__process-step{position:relative;text-align:center;z-index:1;transition:transform .2s ease}.hero-banner__process-step:hover{transform:translateY(-5px) scale(1.05)}.hero-banner__process-step:hover .hero-banner__process-icon{background:hsl(var(--primary));color:hsl(var(--primary-foreground));transform:rotate(-5deg);box-shadow:5px 5px 0 hsl(var(--secondary)),5px 5px 0 2px hsl(var(--foreground))}.hero-banner__process-step:hover .hero-banner__process-number{background:hsl(var(--primary));color:hsl(var(--primary-foreground));border-color:hsl(var(--primary))}.hero-banner__process-number{position:absolute;top:0;left:50%;transform:translateX(-50%);width:35px;height:35px;background:hsl(var(--accent));border:3px solid hsl(var(--foreground));border-radius:50%;font-weight:900;font-size:.875rem;color:hsl(var(--accent-foreground));z-index:2}.hero-banner__process-icon,.hero-banner__process-number{display:flex;align-items:center;justify-content:center;transition:all .2s ease}.hero-banner__process-icon{width:70px;height:70px;margin:0 auto 1rem;background:hsl(var(--foreground));border:3px solid hsl(var(--foreground));border-radius:0;color:hsl(var(--secondary-foreground))}.hero-banner__process-step-title{font-size:1.125rem;font-weight:900;margin-bottom:.5rem;color:hsl(var(--foreground));text-transform:uppercase;letter-spacing:.03em}.hero-banner__process-step-desc{font-size:.875rem;color:hsl(var(--muted-foreground));line-height:1.5}@keyframes float{0%,to{transform:translate(0) scale(1)}33%{transform:translate(30px,-30px) scale(1.1)}66%{transform:translate(-20px,20px) scale(.9)}}@keyframes underline-slide{to{transform:scaleX(1)}}@keyframes slideInLeft{0%{opacity:0;transform:translateX(-30px)}to{opacity:1;transform:translateX(0)}}@keyframes slideInRight{0%{opacity:0;transform:translateX(30px)}to{opacity:1;transform:translateX(0)}}.featured-products{padding:5rem 0;background:hsl(var(--background));position:relative;overflow:hidden}.featured-products:before{content:"";position:absolute;top:0;left:0;right:0;height:4px;background:repeating-linear-gradient(90deg,hsl(var(--primary)),hsl(var(--primary)) 20px,hsl(var(--secondary)) 20px,hsl(var(--secondary)) 40px,hsl(var(--accent)) 40px,hsl(var(--accent)) 60px)}.featured-products__container{max-width:1400px;margin:0 auto;padding:0 2rem}.featured-products__header{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:3rem;flex-wrap:wrap;gap:2rem}@media(max-width:768px){.featured-products__header{flex-direction:column;align-items:center;text-align:center}}.featured-products__title-wrapper{position:relative}.featured-products__title{font-size:clamp(2rem,4vw,3rem);font-weight:900;text-transform:uppercase;letter-spacing:.05em;line-height:1.2;color:hsl(var(--foreground))}.featured-products__title-accent{display:block;color:hsl(var(--primary));position:relative}.featured-products__title-underline{position:absolute;bottom:-10px;left:0;width:100px;height:5px;background:hsl(var(--accent));animation:slideInLeftProduct .8s ease-out}.featured-products__header-actions .btn__icon{margin-left:.5rem}.featured-products__grid{grid-template-columns:repeat(auto-fit,minmax(300px,1fr));margin-bottom:4rem}@media(max-width:768px){.featured-products__grid{grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:1.5rem}}@media(max-width:480px){.featured-products__grid{grid-template-columns:1fr}}.featured-products__bottom-cta{text-align:center;padding:3rem 0;border-top:3px dashed hsl(var(--border))}.featured-products__cta-text{font-size:1.125rem;margin-bottom:1.5rem;color:hsl(var(--muted-foreground));text-transform:uppercase;letter-spacing:.03em;font-weight:700}@keyframes slideInLeftProduct{0%{transform:scaleX(0)}to{transform:scaleX(1)}}.skeleton{background:linear-gradient(90deg,hsl(var(--muted)) 0,hsl(var(--muted)/.5) 50%,hsl(var(--muted)) 100%);animation:skeleton-loading 1.5s ease-in-out infinite;border-radius:0}.skeleton--image{min-height:300px}.skeleton--text{height:1.2em;margin-bottom:.75rem}.skeleton--text-sm{width:40%}.skeleton--text-md{width:60%}.skeleton--text-lg{width:80%}.error-message{text-align:center;padding:3rem 2rem;background:hsl(var(--card));border:3px solid hsl(var(--destructive));margin:2rem 0}.error-message p{font-size:1.125rem;font-weight:700;color:hsl(var(--destructive));margin-bottom:1.5rem;text-transform:uppercase}.empty-state{text-align:center;padding:4rem 2rem;background:hsl(var(--card));border:3px dashed hsl(var(--border))}.empty-state p{font-size:1.125rem;font-weight:700;color:hsl(var(--muted-foreground));text-transform:uppercase}.animate-spin{animation:spin 1s linear infinite}.btn{display:inline-flex;align-items:center;justify-content:center;font-weight:900;text-transform:uppercase;letter-spacing:.05em;transition:all .2s ease;cursor:pointer;position:relative;border:3px solid;outline:none;text-decoration:none;background:none;font-family:inherit}.btn--sm{padding:.5rem 1rem;font-size:.75rem;border-width:2px}.btn--md{padding:.75rem 1.5rem;font-size:.875rem}.btn--lg{padding:1rem 2.5rem;font-size:1rem}.btn--xl{padding:1.25rem 3rem;font-size:1.125rem;border-width:4px}.btn--full{width:100%}.btn--primary{background:hsl(var(--primary));border-color:hsl(var(--primary));color:hsl(var(--primary-foreground))}.btn--primary:hover:not(:disabled){transform:translateY(-3px);box-shadow:0 10px 0 hsla(var(--primary-rgb),.5),0 15px 25px hsla(var(--primary-rgb),.3)}.btn--primary:active:not(:disabled){transform:translateY(-1px);box-shadow:0 5px 0 hsla(var(--primary-rgb),.5),0 8px 15px hsla(var(--primary-rgb),.3)}.btn--secondary{background:hsl(var(--secondary));border-color:hsl(var(--secondary));color:hsl(var(--secondary-foreground))}.btn--secondary:hover:not(:disabled){transform:translateY(-3px);box-shadow:0 10px 0 hsla(var(--secondary-rgb),.5),0 15px 25px hsla(var(--secondary-rgb),.3)}.btn--secondary:active:not(:disabled){transform:translateY(-1px);box-shadow:0 5px 0 hsla(var(--secondary-rgb),.5),0 8px 15px hsla(var(--secondary-rgb),.3)}.btn--accent{background:hsl(var(--accent));border-color:hsl(var(--foreground));color:hsl(var(--accent-foreground))}.btn--accent:hover:not(:disabled){transform:translateY(-3px) rotate(-2deg);box-shadow:5px 5px 0 hsl(var(--foreground)),5px 5px 25px hsla(var(--accent-rgb),.4)}.btn--accent:active:not(:disabled){transform:translateY(-1px) rotate(-1deg);box-shadow:2px 2px 0 hsl(var(--foreground)),2px 2px 15px hsla(var(--accent-rgb),.4)}.btn--outline{background:rgba(0,0,0,0)}.btn--outline-primary{border-color:hsl(var(--primary));color:hsl(var(--primary))}.btn--outline-primary:hover:not(:disabled){background:hsl(var(--primary));color:hsl(var(--primary-foreground));transform:translateY(-3px);box-shadow:0 10px 0 hsla(var(--primary-rgb),.3),0 15px 25px hsla(var(--primary-rgb),.2)}.btn--outline-secondary{border-color:hsl(var(--secondary));color:hsl(var(--secondary))}.btn--outline-secondary:hover:not(:disabled){background:hsl(var(--secondary));color:hsl(var(--secondary-foreground));transform:translateY(-3px);box-shadow:0 10px 0 hsla(var(--secondary-rgb),.3),0 15px 25px hsla(var(--secondary-rgb),.2)}.btn--ghost{border-color:rgba(0,0,0,0);background:rgba(0,0,0,0);color:hsl(var(--foreground))}.btn--ghost:hover:not(:disabled){background:hsl(var(--muted));transform:translateX(5px)}.btn--brutalist{background:hsl(var(--background));border-color:hsl(var(--foreground));color:hsl(var(--foreground));box-shadow:5px 5px 0 hsl(var(--foreground))}.btn--brutalist:hover:not(:disabled){transform:translate(-2px,-2px);box-shadow:7px 7px 0 hsl(var(--primary)),7px 7px 0 2px hsl(var(--foreground))}.btn--brutalist:active:not(:disabled){transform:translate(0);box-shadow:3px 3px 0 hsl(var(--primary)),3px 3px 0 2px hsl(var(--foreground))}.btn--icon-left svg{margin-right:.5rem}.btn--icon-right svg{margin-left:.5rem}.btn--icon-only{aspect-ratio:1;padding:.75rem}.btn--icon-only.btn--sm{padding:.5rem}.btn--icon-only.btn--lg{padding:1rem}.btn:disabled{opacity:.5;cursor:not-allowed;transform:none!important;box-shadow:none!important}.btn--loading{color:rgba(0,0,0,0);pointer-events:none}.btn--loading:after{content:"";position:absolute;width:1rem;height:1rem;border:3px solid hsl(var(--primary-foreground));border-right:3px solid rgba(0,0,0,0);border-radius:50%;animation:spin .6s linear infinite}@media(max-width:640px){.btn--responsive{width:100%}.btn--responsive.btn--sm{padding:.625rem 1rem;font-size:.875rem}.btn--responsive.btn--md{padding:.875rem 1.5rem;font-size:1rem}.btn--responsive.btn--lg{padding:1rem 2rem;font-size:1.125rem}}.btn-group{display:inline-flex;gap:.5rem}.btn-group--vertical{flex-direction:column}.btn-group--attached{gap:0}.btn-group--attached .btn{border-radius:0}.btn-group--attached .btn:not(:last-child){border-right:none}.btn-fab{position:fixed;bottom:2rem;right:2rem;width:60px;height:60px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:hsl(var(--primary));border:3px solid hsl(var(--foreground));color:hsl(var(--primary-foreground));box-shadow:5px 5px 0 hsl(var(--foreground)),5px 5px 25px hsla(var(--foreground)/.3);transition:all .2s ease;z-index:100}.btn-fab:hover{transform:scale(1.1) rotate(-10deg);box-shadow:7px 7px 0 hsl(var(--accent)),7px 7px 0 2px hsl(var(--foreground)),7px 7px 30px hsla(var(--foreground)/.4)}@media(max-width:640px){.btn-fab{bottom:1rem;right:1rem;width:50px;height:50px}}.product-categories{padding:5rem 0;background:hsl(var(--background));position:relative;overflow:hidden}.product-categories:before{content:"";position:absolute;top:0;left:0;right:0;height:4px;background:repeating-linear-gradient(90deg,hsl(var(--accent)),hsl(var(--accent)) 20px,hsl(var(--primary)) 20px,hsl(var(--primary)) 40px,hsl(var(--secondary)) 40px,hsl(var(--secondary)) 60px)}.product-categories__container{max-width:1400px;margin:0 auto;padding:0 2rem}.product-categories__header{text-align:center;margin-bottom:4rem;animation:fadeInUp .8s ease-out}.product-categories__title-wrapper{position:relative;display:inline-block;margin-bottom:1rem}.product-categories__title{font-size:clamp(2rem,4vw,3rem);font-weight:900;text-transform:uppercase;letter-spacing:.05em;line-height:1.2;color:hsl(var(--foreground))}.product-categories__title-accent{display:block;color:hsl(var(--primary));position:relative}.product-categories__title-underline{position:absolute;bottom:-10px;left:50%;transform:translateX(-50%);width:120px;height:5px;background:hsl(var(--accent));animation:expandWidth .8s ease-out .2s both}.product-categories__subtitle{font-size:1.125rem;color:hsl(var(--muted-foreground));max-width:600px;margin:0 auto;text-transform:uppercase;letter-spacing:.03em;font-weight:600}.product-categories__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem;margin-bottom:4rem}@media(max-width:768px){.product-categories__grid{grid-template-columns:1fr;gap:2rem}}.product-categories__bottom-cta{text-align:center;padding:3rem;background:hsl(var(--card));border:4px solid hsl(var(--foreground));position:relative;animation:slideUp .8s ease-out .6s both}.product-categories__bottom-cta:after,.product-categories__bottom-cta:before{content:"";position:absolute;width:40px;height:40px;border:4px solid hsl(var(--primary))}.product-categories__bottom-cta:before{top:-4px;left:-4px;border-right:none;border-bottom:none}.product-categories__bottom-cta:after{bottom:-4px;right:-4px;border-left:none;border-top:none}.product-categories__cta-content{position:relative;z-index:1}.product-categories__cta-text{font-size:1.25rem;font-weight:900;text-transform:uppercase;letter-spacing:.05em;color:hsl(var(--foreground));margin-bottom:1.5rem}.category-card{position:relative;display:block;background:hsl(var(--card));border:4px solid hsl(var(--foreground));transition:all .3s ease;text-decoration:none;overflow:hidden;animation:fadeInUp .8s ease-out both}.category-card--primary .category-card__icon-badge{border-color:hsl(var(--primary))}.category-card--primary .category-card__count,.category-card--primary .category-card__icon-badge{background:hsl(var(--primary));color:hsl(var(--primary-foreground))}.category-card--primary .category-card__cta-icon{color:hsl(var(--primary))}.category-card--primary:hover{border-color:hsl(var(--primary));box-shadow:10px 10px 0 hsl(var(--primary)),10px 10px 0 4px hsl(var(--foreground))}.category-card--secondary .category-card__icon-badge{border-color:hsl(var(--secondary))}.category-card--secondary .category-card__count,.category-card--secondary .category-card__icon-badge{background:hsl(var(--secondary));color:hsl(var(--secondary-foreground))}.category-card--secondary .category-card__cta-icon{color:hsl(var(--secondary))}.category-card--secondary:hover{border-color:hsl(var(--secondary));box-shadow:10px 10px 0 hsl(var(--secondary)),10px 10px 0 4px hsl(var(--foreground))}.category-card--accent .category-card__icon-badge{border-color:hsl(var(--accent))}.category-card--accent .category-card__count,.category-card--accent .category-card__icon-badge{background:hsl(var(--accent));color:hsl(var(--accent-foreground))}.category-card--accent .category-card__cta-icon{color:hsl(var(--accent))}.category-card--accent:hover{border-color:hsl(var(--accent));box-shadow:10px 10px 0 hsl(var(--accent)),10px 10px 0 4px hsl(var(--foreground))}.category-card--neutral .category-card__icon-badge{border-color:hsl(var(--foreground))}.category-card--neutral .category-card__count,.category-card--neutral .category-card__icon-badge{background:hsl(var(--foreground));color:hsl(var(--background))}.category-card--neutral .category-card__cta-icon{color:hsl(var(--foreground))}.category-card--neutral:hover{border-color:hsl(var(--foreground));box-shadow:10px 10px 0 hsl(var(--muted)),10px 10px 0 4px hsl(var(--foreground))}.category-card:hover{transform:translateY(-8px)}.category-card:hover .category-card__image{transform:scale(1.1)}.category-card:hover .category-card__overlay{opacity:.9}.category-card:hover .category-card__cta{transform:translateX(5px)}.category-card:hover .category-card__corner{transform:scale(1.2)}.category-card__icon-badge{position:absolute;top:1rem;left:1rem;width:50px;height:50px;display:flex;align-items:center;justify-content:center;border:3px solid;z-index:10;transition:all .3s ease;transform:rotate(-5deg)}.category-card__icon-badge:hover{transform:rotate(5deg) scale(1.1)}.category-card__count{bottom:1rem;left:1rem}.category-card__count,.category-card__special-badge{position:absolute;padding:.5rem 1rem;border:3px solid hsl(var(--foreground));font-size:.75rem;font-weight:900;text-transform:uppercase;letter-spacing:.05em;z-index:10}.category-card__special-badge{top:1rem;right:1rem;background:hsl(var(--accent));color:hsl(var(--accent-foreground));display:flex;align-items:center;gap:.25rem;animation:pulse 2s infinite;transform:rotate(3deg)}.category-card__image-container{position:relative;height:280px;overflow:hidden;border-bottom:4px solid hsl(var(--foreground))}@media(max-width:640px){.category-card__image-container{height:220px}}.category-card__image{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;transition:transform .5s ease}.category-card__overlay{position:absolute;inset:0;background:linear-gradient(180deg,transparent 0,hsla(var(--foreground)/.8) 100%);opacity:.7;transition:opacity .3s ease}.category-card__content{padding:2rem 1.5rem}.category-card__name{font-size:1.5rem;font-weight:900;text-transform:uppercase;letter-spacing:.05em;color:hsl(var(--foreground));margin-bottom:.75rem;line-height:1.2}.category-card__description{font-size:.875rem;color:hsl(var(--muted-foreground));margin-bottom:1.5rem;line-height:1.6}.category-card__cta{display:flex;align-items:center;justify-content:space-between;padding-top:1rem;border-top:2px dashed hsl(var(--border));transition:transform .3s ease}.category-card__cta-text{font-size:.875rem;font-weight:900;text-transform:uppercase;letter-spacing:.05em;color:hsl(var(--foreground))}.category-card__cta-icon{width:20px;height:20px;transition:transform .3s ease}.category-card__corner{position:absolute;bottom:0;right:0;width:40px;height:40px;background:hsl(var(--accent));clip-path:polygon(100% 0,100% 100%,0 100%);transition:transform .3s ease}@keyframes fadeInUp{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}@keyframes expandWidth{0%{width:0}to{width:120px}}@keyframes pulse{0%,to{transform:rotate(3deg) scale(1)}50%{transform:rotate(3deg) scale(1.05)}}.product-card{position:relative;background:hsl(var(--card));border:3px solid hsl(var(--foreground));transition:transform .2s ease,box-shadow .2s ease;display:flex;flex-direction:column;cursor:pointer}.product-card__badge{position:absolute;top:1rem;left:1rem;padding:.5rem 1rem;font-size:.75rem;font-weight:900;text-transform:uppercase;letter-spacing:.05em;z-index:10;display:flex;align-items:center;gap:.25rem;transform:rotate(-3deg);border:2px solid hsl(var(--foreground))}.product-card__badge--new{background:hsl(var(--secondary));color:hsl(var(--secondary-foreground))}.product-card__badge--hot{background:hsl(var(--primary));color:hsl(var(--primary-foreground))}.product-card__badge--sale{background:hsl(var(--accent));color:hsl(var(--accent-foreground))}.product-card__badge--limited{background:hsl(var(--foreground));color:hsl(var(--background))}.product-card__discount{width:50px;height:50px;background:hsl(var(--primary));color:hsl(var(--primary-foreground));border:3px solid hsl(var(--foreground));border-radius:50%;font-weight:900;font-size:.875rem;transform:rotate(15deg)}.product-card__discount,.product-card__favorite{position:absolute;top:1rem;right:1rem;display:flex;align-items:center;justify-content:center;z-index:10}.product-card__favorite{width:40px;height:40px;background:hsl(var(--background));border:3px solid hsl(var(--foreground));cursor:pointer;transition:all .2s ease}.product-card__favorite:hover{background:hsl(var(--accent));transform:scale(1.05)}.product-card__favorite--active{background:hsl(var(--primary));color:hsl(var(--primary-foreground))}.product-card__favorite--active svg{fill:currentColor}.product-card:has(.product-card__discount) .product-card__favorite{right:auto;left:1rem;top:4rem}.product-card__image-container{position:relative;height:350px;overflow:hidden;display:block;border-bottom:3px solid hsl(var(--foreground));background:hsl(var(--muted))}.product-card__image-container--changing .product-card__image{opacity:.7}.product-card__image{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;transition:opacity .3s ease}.product-card__view-details{position:absolute;bottom:0;left:0;right:0;padding:.75rem;background:linear-gradient(to top,hsla(var(--background)/.95),transparent);display:flex;align-items:center;justify-content:center;gap:.5rem;font-size:.875rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:hsl(var(--foreground));transform:translateY(100%)}.product-card__view-details,.product-card__view-details svg{transition:transform .3s ease}.product-card:hover .product-card__view-details{transform:translateY(0)}.product-card:hover .product-card__view-details svg{transform:translateX(4px)}.product-card__view-dots{position:absolute;bottom:1rem;left:1rem;display:flex;gap:.5rem;z-index:2}.product-card__view-dot{width:6px;height:6px;border-radius:50%;background:hsla(var(--foreground)/.3);transition:background .3s ease}.product-card__view-dot--active{background:hsl(var(--foreground))}.product-card__info{padding:1.5rem;flex:1;display:flex;flex-direction:column;gap:.75rem;cursor:default}.product-card__header{display:flex;flex-direction:column;gap:.5rem}.product-card__category{font-size:.75rem;text-transform:uppercase;letter-spacing:.1em;color:hsl(var(--muted-foreground));font-weight:700}.product-card__name{font-size:1.25rem;font-weight:900;text-transform:uppercase;color:hsl(var(--foreground));line-height:1.2}.product-card__description{font-size:.875rem;color:hsl(var(--muted-foreground));line-height:1.5;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.product-card__variants{padding:.75rem 0;border-top:1px solid hsl(var(--border))}.product-card__variants-row{display:flex;align-items:center;gap:.75rem}.product-card__variants-row+.product-card__variants-row{margin-top:.625rem}.product-card__variants-label{font-size:.625rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:hsl(var(--muted-foreground));min-width:45px;display:flex;align-items:center}.product-card__variants-label svg{width:12px;height:12px;margin-right:.25rem;opacity:.5}.product-card__variants-options{display:flex;gap:.375rem;flex-wrap:wrap;flex:1}.product-card__color-wrapper{position:relative}.product-card__color{width:28px;height:28px;border:2px solid rgba(0,0,0,0);border-radius:50%;cursor:pointer;transition:all .2s cubic-bezier(.4,0,.2,1);position:relative;overflow:hidden;box-shadow:inset 0 0 0 1px rgba(0,0,0,.1)}.product-card__color:before{content:"";position:absolute;inset:2px;border-radius:50%;background:inherit;z-index:1}.product-card__color:after{content:"";position:absolute;inset:0;transform:translateX(-100%) translateY(-100%);transition:transform .6s ease;z-index:2}.product-card__color:hover{transform:scale(1.15) rotate(5deg);border-color:hsl(var(--foreground));box-shadow:inset 0 0 0 1px rgba(0,0,0,.2),0 4px 12px rgba(0,0,0,.15)}.product-card__color:hover:after{transform:translateX(100%) translateY(100%)}.product-card__color--active{transform:scale(1.1);border-color:hsl(var(--foreground))}.product-card__color--active:after{content:"";position:absolute;top:50%;left:50%;width:12px;height:8px;border-left:2px solid #fff;border-bottom:2px solid #fff;transform:translate(-50%,-60%) rotate(-45deg);filter:drop-shadow(0 1px 2px rgba(0,0,0,.3));z-index:3;animation:checkmark-pop .3s ease}.product-card__color--active:hover{transform:scale(1.15)}.product-card__color--light{box-shadow:inset 0 0 0 1px rgba(0,0,0,.15),0 1px 3px rgba(0,0,0,.1)}.product-card__color--light.product-card__color--active:after{border-color:hsl(var(--foreground))}.product-card__color-tooltip{position:absolute;bottom:100%;left:50%;transform:translateX(-50%);padding:.25rem .5rem;background:hsl(var(--foreground));color:hsl(var(--background));font-size:.625rem;font-weight:600;white-space:nowrap;border-radius:4px;pointer-events:none;opacity:0;transition:opacity .2s ease,transform .2s ease;margin-bottom:.25rem;z-index:10}.product-card__color-tooltip:after{content:"";position:absolute;top:100%;left:50%;transform:translateX(-50%);border:4px solid rgba(0,0,0,0);border-top:4px solid hsl(var(--foreground))}.product-card__color:hover .product-card__color-tooltip{opacity:1;transform:translateX(-50%) translateY(-2px)}.product-card__size{position:relative;min-width:36px;height:28px;padding:0 .75rem;background:hsl(var(--background));border:2px solid hsl(var(--border));border-radius:16px;font-size:.7rem;font-weight:700;text-transform:uppercase;cursor:pointer;transition:all .2s cubic-bezier(.4,0,.2,1);display:inline-flex;align-items:center;justify-content:center;overflow:hidden}.product-card__size:before{content:"";position:absolute;inset:0;background:hsl(var(--primary));transform:scaleX(0);transform-origin:left;transition:transform .3s cubic-bezier(.4,0,.2,1);border-radius:inherit;z-index:0}.product-card__size span{position:relative;z-index:1}.product-card__size:hover:not(.product-card__size--active):not(.product-card__size--out-of-stock){border-color:hsl(var(--foreground));transform:translateY(-2px);box-shadow:0 4px 8px rgba(0,0,0,.1)}.product-card__size:hover:not(.product-card__size--active):not(.product-card__size--out-of-stock):before{transform:scaleX(.1)}.product-card__size:active:not(.product-card__size--active){transform:translateY(0);box-shadow:0 2px 4px rgba(0,0,0,.1)}.product-card__size--active{background:hsl(var(--foreground));border-color:hsl(var(--foreground));color:hsl(var(--background));font-weight:900;transform:scale(1.05)}.product-card__size--active:before{transform:scaleX(1);background:hsl(var(--foreground))}.product-card__size--active:hover{transform:scale(1.08)}.product-card__size--out-of-stock{opacity:.4;cursor:not-allowed;text-decoration:line-through}.product-card__size--out-of-stock:hover{transform:none;border-color:hsl(var(--border));box-shadow:none}.product-card__size--tag{min-width:auto;height:28px;padding:0 .625rem;border-radius:6px;font-size:.7rem;border-width:1.5px}.product-card__size--tag.product-card__size--active{box-shadow:0 0 0 1.5px hsl(var(--background)),0 0 0 3px hsl(var(--primary)),0 2px 8px rgba(0,0,0,.1)}.product-card__footer{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-top:auto;padding-top:.75rem;border-top:1px solid hsl(var(--border))}.product-card__price-wrapper{display:flex;align-items:baseline;gap:.5rem}.product-card__price{font-size:1.5rem;font-weight:900;color:hsl(var(--foreground))}.product-card__original-price{font-size:1rem;color:hsl(var(--muted-foreground));text-decoration:line-through;opacity:.6}.product-card__add-to-cart{width:48px;height:48px;background:hsl(var(--primary));color:hsl(var(--primary-foreground));border:3px solid hsl(var(--foreground));border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .2s ease}.product-card__add-to-cart:hover:not(:disabled){background:hsl(var(--foreground));color:hsl(var(--background));transform:scale(1.1)}.product-card__add-to-cart:active:not(:disabled){transform:scale(.95)}.product-card__add-to-cart:disabled{opacity:.5;cursor:not-allowed}.product-card__add-to-cart--loading{animation:spin 1s linear infinite}.product-card__add-to-cart svg{width:20px;height:20px}.product-card__stock-warning{padding:.5rem;background:hsl(var(--destructive)/.1);border:2px solid hsl(var(--destructive));text-align:center;font-size:.75rem;font-weight:900;color:hsl(var(--destructive));text-transform:uppercase;letter-spacing:.05em;margin-top:.5rem}@keyframes checkmark-pop{0%{transform:translate(-50%,-60%) rotate(-45deg) scale(0);opacity:0}50%{transform:translate(-50%,-60%) rotate(-45deg) scale(1.2);opacity:1}to{transform:translate(-50%,-60%) rotate(-45deg) scale(1);opacity:1}}.product-card--loading{pointer-events:none;opacity:.6}.product-card--loading .product-card__image,.skeleton{animation:skeleton-pulse 1.5s ease-in-out infinite}.skeleton{background:linear-gradient(90deg,hsl(var(--muted)) 0,hsl(var(--muted-foreground)/.1) 50%,hsl(var(--muted)) 100%);background-size:200% 100%;border-radius:4px}.skeleton--image{width:100%;height:100%}.skeleton--text{height:1em;margin:.5em 0}.skeleton--text--sm{width:60%}.skeleton--text--md{width:80%}.skeleton--text--lg{width:100%}@keyframes skeleton-pulse{0%,to{background-position:200% 0}50%{background-position:-200% 0}}@media(max-width:768px){.product-card__image-container{height:280px}.product-card__name{font-size:1.125rem}.product-card__price{font-size:1.25rem}.product-card__footer{padding-top:.5rem}.product-card__add-to-cart{width:42px;height:42px}.product-card__add-to-cart svg{width:18px;height:18px}.product-card__size{min-width:38px;height:30px;font-size:.7rem;padding:0 .625rem}.product-card__variants-label{display:none}}@media(max-width:480px){.product-card__image-container{height:240px}.product-card__info{padding:1rem}.product-card__view-details{font-size:.75rem;padding:.5rem}.product-card__color{width:28px;height:28px}.product-card__size{min-width:36px;height:28px;padding:0 .5rem}}@media(prefers-reduced-motion:reduce){.product-card,.product-card__add-to-cart,.product-card__color,.product-card__image,.product-card__size,.product-card__view-details{transition:none!important;animation:none!important}}.featured-products__grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:2rem;margin-top:2rem}@media(min-width:768px){.featured-products__grid{grid-template-columns:repeat(2,1fr)}}@media(min-width:1024px){.featured-products__grid{grid-template-columns:repeat(3,1fr)}}@media(min-width:1280px){.featured-products__grid{grid-template-columns:repeat(4,1fr)}}.value-props-bar{background:hsl(var(--background));border-top:3px solid hsl(var(--foreground));border-bottom:3px solid hsl(var(--foreground));padding:2rem 0;margin:4rem 0}.value-props-bar__container{max-width:1280px;margin:0 auto;padding:0 1rem}.value-props-bar__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:2rem}@media(max-width:768px){.value-props-bar__grid{grid-template-columns:repeat(2,1fr);gap:1rem}}@media(max-width:480px){.value-props-bar__grid{grid-template-columns:1fr}}.value-props-bar__item{display:flex;align-items:center;gap:1rem;padding:1.5rem;background:hsl(var(--card));border:3px solid hsl(var(--foreground));transform:rotate(-1deg);transition:all .2s ease;animation:slideUpValueProps .6s ease-out backwards}.value-props-bar__item:nth-child(2n){transform:rotate(1deg)}.value-props-bar__item:hover{transform:rotate(0deg) scale(1.05);box-shadow:6px 6px 0 hsl(var(--primary))}@media(max-width:768px){.value-props-bar__item{padding:1rem;gap:.75rem}}.value-props-bar__icon{flex-shrink:0;width:56px;height:56px;background:hsl(var(--primary));color:hsl(var(--primary-foreground));border:3px solid hsl(var(--foreground));display:flex;align-items:center;justify-content:center;transform:rotate(45deg);transition:transform .3s ease}.value-props-bar__icon svg{transform:rotate(-45deg)}@media(max-width:768px){.value-props-bar__icon{width:48px;height:48px}}.value-props-bar__item:hover .value-props-bar__icon,.value-props-bar__item:hover .value-props-bar__icon svg{transform:rotate(0deg)}.value-props-bar__content{flex:1}.value-props-bar__title{font-size:.875rem;font-weight:900;text-transform:uppercase;letter-spacing:.05em;color:hsl(var(--foreground));margin-bottom:.25rem}.value-props-bar__description{font-size:.75rem;color:hsl(var(--muted-foreground));line-height:1.4}@keyframes slideUpValueProps{0%{opacity:0;transform:translateY(20px) rotate(-1deg)}to{opacity:1;transform:translateY(0) rotate(-1deg)}}.about-section{padding:4rem 0;background:hsl(var(--background));position:relative;overflow:hidden}.about-section:before{content:"";position:absolute;top:0;left:-50%;width:200%;height:100%;background:repeating-linear-gradient(45deg,transparent,transparent 10px,hsl(var(--muted)/.05) 10px,hsl(var(--muted)/.05) 20px);z-index:0}.about-section__container{max-width:1280px;margin:0 auto;padding:0 1rem;position:relative;z-index:1}.about-section__header{text-align:center;margin-bottom:3rem}.about-section__title{font-size:clamp(2.5rem,5vw,4rem);font-weight:900;text-transform:uppercase;letter-spacing:-.02em;line-height:1;color:hsl(var(--foreground));margin-bottom:.5rem}.about-section__title-accent{display:inline-block;color:hsl(var(--primary));transform:rotate(-2deg);margin-left:.5rem;padding:.25rem 1rem;background:hsl(var(--secondary));border:3px solid hsl(var(--foreground))}.about-section__title-underline{width:100px;height:6px;background:hsl(var(--primary));margin:1rem auto;transform:skew(-20deg);border:2px solid hsl(var(--foreground))}.about-section__content{max-width:1000px;margin:0 auto}.about-section__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem;margin-bottom:3rem}@media(max-width:768px){.about-section__grid{grid-template-columns:1fr;gap:1.5rem}}.about-section__card{background:hsl(var(--card));border:3px solid hsl(var(--foreground));padding:2rem;position:relative;transition:all .3s ease}.about-section__card:before{content:"";position:absolute;inset:0;background:hsl(var(--primary)/.05);opacity:0;transition:opacity .3s ease}.about-section__card:hover{transform:translateY(-4px) rotate(-1deg);box-shadow:8px 8px 0 hsl(var(--foreground))}.about-section__card:hover:before{opacity:1}.about-section__card--story{transform:rotate(-1deg)}.about-section__card--quality{transform:rotate(1deg)}.about-section__card--mission{transform:rotate(-.5deg)}.about-section__card-icon{width:60px;height:60px;background:hsl(var(--primary));color:hsl(var(--primary-foreground));border:3px solid hsl(var(--foreground));display:flex;align-items:center;justify-content:center;margin-bottom:1rem;transform:rotate(45deg);transition:transform .3s ease}.about-section__card-icon svg{transform:rotate(-45deg)}.about-section__card:hover .about-section__card-icon,.about-section__card:hover .about-section__card-icon svg{transform:rotate(0deg)}.about-section__card-title{font-size:1.25rem;font-weight:900;text-transform:uppercase;letter-spacing:.05em;color:hsl(var(--foreground));margin-bottom:1rem}.about-section__card-text{font-size:.95rem;line-height:1.6;color:hsl(var(--muted-foreground))}.about-section__cta{text-align:center;padding:2rem;background:hsl(var(--muted));border:3px solid hsl(var(--foreground));transform:rotate(-.5deg);transition:all .3s ease}.about-section__cta:hover{transform:rotate(0deg);box-shadow:6px 6px 0 hsl(var(--primary))}.about-section__cta-text{font-size:1.125rem;font-weight:700;color:hsl(var(--foreground));text-transform:uppercase;letter-spacing:.05em;margin:0}@media(max-width:768px){.about-section{padding:3rem 0}.about-section__header{margin-bottom:2rem}.about-section__title{font-size:2rem}.about-section__title-accent{display:block;margin:.5rem auto 0;width:-moz-fit-content;width:fit-content}.about-section__card{padding:1.5rem}.about-section__cta-text{font-size:1rem}}.footer{background:hsl(var(--foreground));color:hsl(var(--background));border-top:6px solid hsl(var(--primary));position:relative}.footer:before{content:"";position:absolute;top:-6px;left:0;right:0;height:6px;background:repeating-linear-gradient(90deg,hsl(var(--primary)),hsl(var(--primary)) 10px,hsl(var(--secondary)) 10px,hsl(var(--secondary)) 20px)}.footer__container{max-width:1280px;margin:0 auto;padding:0 1rem}.footer__content{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;padding:4rem 0;border-bottom:3px solid hsl(var(--background)/.2)}@media(max-width:1024px){.footer__content{grid-template-columns:1fr 1fr;gap:2rem}}@media(max-width:640px){.footer__content{grid-template-columns:1fr;padding:3rem 0}}@media(max-width:1024px){.footer__section--brand{grid-column:span 2}}@media(max-width:640px){.footer__section--brand{grid-column:span 1}}.footer__brand-name{font-size:2.5rem;font-weight:900;letter-spacing:-.02em;margin-bottom:.5rem;color:hsl(var(--background));text-transform:uppercase;transform:rotate(-2deg);transform-origin:left center;display:inline-block}.footer__brand-tagline{font-size:.875rem;line-height:1.5;margin-bottom:1.5rem;color:hsl(var(--background)/.8);text-transform:uppercase;letter-spacing:.05em;max-width:300px}.footer__social{display:flex;gap:.5rem}.footer__social-link{width:48px;height:48px;background:hsl(var(--background));color:hsl(var(--foreground));border:3px solid hsl(var(--background));display:flex;align-items:center;justify-content:center;transform:rotate(45deg);transition:all .2s ease}.footer__social-link svg{transform:rotate(-45deg)}.footer__social-link:hover{background:hsl(var(--primary));color:hsl(var(--primary-foreground));transform:rotate(0deg) scale(1.1);box-shadow:4px 4px 0 hsl(var(--background))}.footer__social-link:hover svg{transform:rotate(0deg)}.footer__title{font-size:1.125rem;font-weight:900;text-transform:uppercase;letter-spacing:.1em;margin-bottom:1rem;color:hsl(var(--background));position:relative;padding-bottom:.5rem}.footer__title:after{content:"";position:absolute;bottom:0;left:0;width:40px;height:3px;background:hsl(var(--primary))}.footer__links{list-style:none;padding:0;margin:0}.footer__links li{margin-bottom:.75rem}.footer__links a{color:hsl(var(--background)/.8);text-decoration:none;font-size:.875rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;transition:all .2s ease;display:inline-block;position:relative}.footer__links a:before{content:"→";position:absolute;left:-20px;opacity:0;transition:all .2s ease}.footer__links a:hover{color:hsl(var(--background));transform:translateX(20px)}.footer__links a:hover:before{opacity:1;left:-15px}.footer__links .theme-switcher{margin-top:.75rem}.footer__links .theme-switcher button{background:hsl(var(--background));color:hsl(var(--foreground));border:2px solid hsl(var(--background));padding:.5rem 1rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;font-size:.75rem;transition:all .2s ease;cursor:pointer}.footer__links .theme-switcher button:hover{background:hsl(var(--primary));color:hsl(var(--primary-foreground));transform:translateY(-2px);box-shadow:3px 3px 0 hsl(var(--background))}.footer__bottom{padding:2rem 0;background:hsl(var(--background)/.05)}.footer__bottom-content{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:2rem}@media(max-width:768px){.footer__bottom-content{flex-direction:column;text-align:center}}.footer__badges{display:flex;gap:1rem;flex-wrap:wrap}@media(max-width:640px){.footer__badges{justify-content:center}}.footer__badge{display:flex;align-items:center;gap:.5rem;padding:.5rem 1rem;background:hsl(var(--background));color:hsl(var(--foreground));border:2px solid hsl(var(--background));font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;transform:rotate(-1deg);transition:all .2s ease}.footer__badge:nth-child(2n){transform:rotate(1deg)}.footer__badge:hover{transform:rotate(0deg) scale(1.05);background:hsl(var(--primary));color:hsl(var(--primary-foreground));box-shadow:4px 4px 0 hsl(var(--background))}.footer__copyright{text-align:right}@media(max-width:768px){.footer__copyright{text-align:center}}.footer__copyright p{margin:.25rem 0;font-size:.875rem;color:hsl(var(--background)/.8);font-weight:700;text-transform:uppercase;letter-spacing:.05em}.footer__powered{display:flex;align-items:center;gap:.5rem;justify-content:flex-end}@media(max-width:768px){.footer__powered{justify-content:center}}.footer__powered-link{color:hsl(var(--primary));text-decoration:none;font-weight:900;transition:all .2s ease;padding:0 .25rem}.footer__powered-link:hover{color:hsl(var(--background));background:hsl(var(--primary));transform:rotate(-2deg) scale(1.1)}.dark .footer__badge:hover,.dark .footer__social-link:hover{box-shadow:4px 4px 0 hsl(var(--background)/.5)}.newsletter-signup{background:hsl(var(--secondary));border-top:3px solid hsl(var(--foreground));border-bottom:3px solid hsl(var(--foreground));padding:4rem 0;position:relative;overflow:hidden}.newsletter-signup:before{content:"";position:absolute;top:-50%;right:-25%;width:50%;height:200%;background:hsl(var(--primary)/.05);transform:rotate(45deg)}.newsletter-signup:after{content:"";position:absolute;bottom:-50%;left:-25%;width:50%;height:200%;background:hsl(var(--accent)/.05);transform:rotate(-45deg)}.newsletter-signup__container{max-width:800px;margin:0 auto;padding:0 1rem;position:relative;z-index:1}.newsletter-signup__content{background:hsl(var(--card));border:3px solid hsl(var(--foreground));padding:3rem;transform:rotate(-.5deg);box-shadow:8px 8px 0 hsl(var(--foreground))}@media(max-width:768px){.newsletter-signup__content{padding:2rem 1.5rem;transform:none}}.newsletter-signup__header{gap:1rem;margin-bottom:1.5rem}.newsletter-signup__header,.newsletter-signup__icon{display:flex;align-items:center;justify-content:center}.newsletter-signup__icon{width:80px;height:80px;background:hsl(var(--primary));color:hsl(var(--primary-foreground));border:3px solid hsl(var(--foreground));transform:rotate(45deg);flex-shrink:0}.newsletter-signup__icon svg{transform:rotate(-45deg)}@media(max-width:768px){.newsletter-signup__icon{width:60px;height:60px}}.newsletter-signup__title{font-size:clamp(2rem,4vw,3rem);font-weight:900;text-transform:uppercase;letter-spacing:-.02em;line-height:1;color:hsl(var(--foreground))}.newsletter-signup__title-accent{display:inline-block;color:hsl(var(--primary-foreground));background:hsl(var(--primary));padding:.25rem .75rem;border:3px solid hsl(var(--foreground));transform:rotate(-2deg);margin-left:.5rem}.newsletter-signup__description{text-align:center;font-size:1.125rem;line-height:1.6;color:hsl(var(--muted-foreground));margin-bottom:2rem;max-width:600px;margin-left:auto;margin-right:auto}@media(max-width:768px){.newsletter-signup__description{font-size:1rem}}.newsletter-signup__form{max-width:500px;margin:0 auto 1.5rem}.newsletter-signup__input-group{display:flex;gap:0;position:relative}@media(max-width:640px){.newsletter-signup__input-group{flex-direction:column}}.newsletter-signup__input{flex:1;padding:1rem 1.5rem;font-size:1rem;font-weight:700;background:hsl(var(--background));border:3px solid hsl(var(--foreground));border-right:none;text-transform:uppercase;letter-spacing:.05em;transition:all .2s ease}@media(max-width:640px){.newsletter-signup__input{border-right:3px solid hsl(var(--foreground));border-bottom:none}}.newsletter-signup__input::-moz-placeholder{color:hsl(var(--muted-foreground));text-transform:none;letter-spacing:normal}.newsletter-signup__input::placeholder{color:hsl(var(--muted-foreground));text-transform:none;letter-spacing:normal}.newsletter-signup__input:focus{outline:none;background:hsl(var(--muted));transform:translateY(-2px)}.newsletter-signup__input:disabled{opacity:.5;cursor:not-allowed}.newsletter-signup__button{padding:1rem 2rem;background:hsl(var(--foreground));color:hsl(var(--background));border:3px solid hsl(var(--foreground));font-size:1rem;font-weight:900;text-transform:uppercase;letter-spacing:.05em;cursor:pointer;transition:all .2s ease;display:flex;align-items:center;gap:.5rem}@media(max-width:640px){.newsletter-signup__button{justify-content:center}}.newsletter-signup__button:hover:not(:disabled){background:hsl(var(--primary));color:hsl(var(--primary-foreground));transform:translateY(-2px);box-shadow:4px 4px 0 hsl(var(--foreground))}.newsletter-signup__button:active:not(:disabled){transform:translateY(0);box-shadow:none}.newsletter-signup__button:disabled{opacity:.7;cursor:not-allowed}.newsletter-signup__button--success{background:hsl(var(--primary));color:hsl(var(--primary-foreground))}.newsletter-signup__button--error{background:hsl(var(--destructive));color:hsl(var(--destructive-foreground))}@media(max-width:480px){.newsletter-signup__button-text{display:none}}.newsletter-signup__spinner{width:20px;height:20px;border:3px solid hsl(var(--background)/.3);border-top-color:hsl(var(--background));border-radius:50%;animation:spin .8s linear infinite}.newsletter-signup__message{margin-top:1rem;padding:1rem;border:3px solid hsl(var(--foreground));font-weight:700;text-align:center;animation:slideDown .3s ease-out}.newsletter-signup__message--success{background:hsl(var(--primary)/.1);color:hsl(var(--primary))}.newsletter-signup__message--error{background:hsl(var(--destructive)/.1);color:hsl(var(--destructive))}.newsletter-signup__disclaimer{text-align:center;font-size:.875rem;color:hsl(var(--muted-foreground));margin-bottom:2rem}.newsletter-signup__benefits{display:flex;justify-content:center;gap:2rem;flex-wrap:wrap}@media(max-width:640px){.newsletter-signup__benefits{gap:1rem}}.newsletter-signup__benefit{display:flex;align-items:center;gap:.5rem;padding:.75rem 1rem;background:hsl(var(--muted));border:2px solid hsl(var(--foreground));font-size:.875rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;transform:rotate(-1deg);transition:all .2s ease}.newsletter-signup__benefit:nth-child(2){transform:rotate(1deg)}.newsletter-signup__benefit:nth-child(3){transform:rotate(-.5deg)}.newsletter-signup__benefit:hover{transform:rotate(0deg) translateY(-2px);box-shadow:4px 4px 0 hsl(var(--primary))}.newsletter-signup__benefit-icon{font-size:1.25rem}@keyframes spin{to{transform:rotate(1turn)}}@keyframes slideDown{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}.wishlist-page{min-height:calc(100vh - 4rem);padding:2rem 0 4rem;background:hsl(var(--background))}.wishlist-page .container{max-width:1200px;margin:0 auto;padding:0 1.25rem}.wishlist-page__header{margin-bottom:3rem;text-align:center}@media(min-width:768px){.wishlist-page__header{display:flex;justify-content:space-between;align-items:center;text-align:left}}.wishlist-page__title{display:flex;align-items:center;gap:.75rem;font-size:2rem;font-weight:700;color:hsl(var(--foreground));margin-bottom:.5rem;justify-content:center}@media(min-width:768px){.wishlist-page__title{font-size:2.5rem;justify-content:flex-start;margin-bottom:0}}.wishlist-page__title svg{color:hsl(var(--primary))}.wishlist-page__subtitle{font-size:1rem;color:hsl(var(--muted-foreground));margin-top:.5rem}@media(min-width:768px){.wishlist-page__subtitle{margin-top:0}}.wishlist-page .empty-state{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:400px;text-align:center;padding:3rem 1.5rem}.wishlist-page .empty-state svg{width:80px;height:80px;color:hsl(var(--muted-foreground));opacity:.5;margin-bottom:1.5rem}.wishlist-page .empty-state h3{font-size:1.5rem;font-weight:600;color:hsl(var(--foreground));margin-bottom:.75rem}.wishlist-page .empty-state p{font-size:1rem;color:hsl(var(--muted-foreground));margin-bottom:2rem;max-width:400px}.wishlist-page .empty-state .btn{min-width:200px}.wishlist-page .empty-state__actions{display:flex;gap:1rem;flex-wrap:wrap;justify-content:center}.wishlist-page .skeleton{background:linear-gradient(90deg,hsl(var(--muted)/.2) 25%,hsl(var(--muted)/.3) 50%,hsl(var(--muted)/.2) 75%);background-size:200% 100%;animation:skeleton-loading 1.5s ease-in-out infinite;border-radius:.5rem}.wishlist-page .skeleton--title{width:300px;height:2.5rem;margin-bottom:1rem}.wishlist-page .skeleton--text{width:200px;height:1rem}@keyframes skeleton-loading{0%{background-position:200% 0}to{background-position:-200% 0}}.product-detail{min-height:100vh;background:hsl(var(--background));padding-bottom:4rem}.product-detail__container{max-width:1200px;margin:0 auto;padding:2rem 1.25rem}@media(max-width:768px){.product-detail__container{padding:1rem}}.product-detail__breadcrumb{display:flex;align-items:center;gap:.5rem;font-size:.875rem;color:hsl(var(--muted-foreground));margin-bottom:2rem}.product-detail__breadcrumb a{color:hsl(var(--muted-foreground));text-decoration:none;transition:color .3s ease}.product-detail__breadcrumb a:hover{color:hsl(var(--primary))}.product-detail__breadcrumb svg{flex-shrink:0}.product-detail__grid{display:grid;grid-template-columns:60% 40%;gap:3rem;align-items:start}@media(max-width:1024px){.product-detail__grid{grid-template-columns:1fr;gap:2rem}}.product-detail__image-section{position:relative}.product-detail__info-section{position:sticky;top:6rem;height:-moz-fit-content;height:fit-content}@media(max-width:1024px){.product-detail__info-section{position:static}}.product-detail__back-btn{display:inline-flex;align-items:center;gap:.5rem;padding:.5rem 1rem;margin-bottom:1.5rem;font-size:.875rem;color:hsl(var(--foreground));background:rgba(0,0,0,0);border:1px solid hsl(var(--border));border-radius:8px;cursor:pointer;transition:all .3s ease}.product-detail__back-btn:hover{background:hsl(var(--muted));border-color:hsl(var(--primary))}.image-gallery__main{margin-bottom:1rem}.image-gallery__main-container{position:relative;aspect-ratio:1/1;background:hsl(var(--muted)/.3);border-radius:12px;overflow:hidden;cursor:zoom-in;transition:all .3s ease}.image-gallery__main-container:hover .image-gallery__nav,.image-gallery__main-container:hover .image-gallery__zoom-hint{opacity:1}.image-gallery__main-image{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;transition:transform .3s ease}.image-gallery__badge{position:absolute;top:1rem;right:1rem;z-index:10}.image-gallery__zoom-hint{right:1rem;display:flex;align-items:center;gap:.5rem;padding:.5rem 1rem;border-radius:8px;opacity:0;transition:opacity .3s ease}.image-gallery__counter,.image-gallery__zoom-hint{position:absolute;bottom:1rem;background:hsl(var(--background)/.9);font-size:.875rem;backdrop-filter:blur(10px)}.image-gallery__counter{left:1rem;padding:.375rem .75rem;border-radius:6px;font-weight:500}.image-gallery__nav{position:absolute;top:50%;transform:translateY(-50%);background:hsl(var(--background)/.9);border:1px solid hsl(var(--border));border-radius:50%;width:40px;height:40px;display:flex;align-items:center;justify-content:center;cursor:pointer;opacity:0;transition:all .3s ease;backdrop-filter:blur(10px)}.image-gallery__nav:hover{background:hsl(var(--background));border-color:hsl(var(--primary))}.image-gallery__nav--prev{left:1rem}.image-gallery__nav--next{right:1rem}.image-gallery__thumbnails{overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:thin;scrollbar-color:hsl(var(--border)) rgba(0,0,0,0)}.image-gallery__thumbnails::-webkit-scrollbar{height:6px}.image-gallery__thumbnails::-webkit-scrollbar-track{background:rgba(0,0,0,0)}.image-gallery__thumbnails::-webkit-scrollbar-thumb{background:hsl(var(--border));border-radius:3px}.image-gallery__thumbnails-track{display:flex;gap:.75rem;padding-bottom:.5rem}.image-gallery__thumbnail{position:relative;flex-shrink:0;width:80px;height:80px;border-radius:8px;overflow:hidden;border:2px solid rgba(0,0,0,0);cursor:pointer;transition:all .3s ease;background:hsl(var(--muted)/.3)}.image-gallery__thumbnail img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.image-gallery__thumbnail:hover{border-color:hsl(var(--primary)/.5)}.image-gallery__thumbnail--active{border-color:hsl(var(--primary));box-shadow:0 0 0 2px hsl(var(--background)),0 0 0 4px hsl(var(--primary)/.3)}.image-gallery__thumbnail-check{position:absolute;top:4px;right:4px;background:hsl(var(--primary));color:#fff;width:20px;height:20px;border-radius:50%;display:flex;align-items:center;justify-content:center}.image-gallery__lightbox{position:fixed;top:0;left:0;right:0;bottom:0;background:hsl(var(--background)/.98);z-index:1000;display:flex;align-items:center;justify-content:center;animation:fadeIn .3s ease;backdrop-filter:blur(10px)}.image-gallery__lightbox-content{position:relative;max-width:90vw;max-height:90vh;display:flex;align-items:center;justify-content:center}.image-gallery__lightbox-image{max-width:100%;max-height:90vh;-o-object-fit:contain;object-fit:contain;border-radius:12px;box-shadow:0 8px 32px rgba(0,0,0,.2)}.image-gallery__lightbox-close{position:absolute;top:-50px;right:0;background:hsl(var(--background));border:1px solid hsl(var(--border));border-radius:50%;width:40px;height:40px;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .3s ease}.image-gallery__lightbox-close:hover{background:hsl(var(--muted))}.image-gallery__lightbox-nav{position:absolute;top:50%;transform:translateY(-50%);background:hsl(var(--background));border:1px solid hsl(var(--border));border-radius:50%;width:48px;height:48px;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .3s ease}.image-gallery__lightbox-nav:hover{background:hsl(var(--muted));border-color:hsl(var(--primary))}.image-gallery__lightbox-nav--prev{left:-60px}.image-gallery__lightbox-nav--next{right:-60px}.image-gallery__lightbox-counter{position:absolute;bottom:-50px;left:50%;transform:translateX(-50%);padding:.5rem 1rem;background:hsl(var(--background));border:1px solid hsl(var(--border));border-radius:8px;font-size:.875rem;font-weight:500}.variant-selector{display:flex;flex-direction:column;gap:1.5rem}.variant-selector__section{display:flex;flex-direction:column;gap:.75rem}.variant-selector__label{font-size:.875rem;font-weight:600;color:hsl(var(--foreground))}.variant-selector__selected-value{font-weight:400;color:hsl(var(--muted-foreground))}.variant-selector__label-row{display:flex;justify-content:space-between;align-items:center}.variant-selector__size-guide{display:flex;align-items:center;gap:.375rem;font-size:.8125rem;color:hsl(var(--primary));background:none;border:none;cursor:pointer;padding:0;transition:opacity .3s ease}.variant-selector__size-guide:hover{opacity:.8;text-decoration:underline}.variant-selector__colors{display:flex;gap:.75rem;flex-wrap:wrap}.variant-selector__color{position:relative;width:44px;height:44px;border-radius:50%;border:2px solid hsl(var(--border));cursor:pointer;transition:all .3s ease;background:none;padding:0}.variant-selector__color:hover{transform:scale(1.1);box-shadow:0 2px 8px rgba(0,0,0,.15)}.variant-selector__color--active{border-color:hsl(var(--primary));box-shadow:0 0 0 2px hsl(var(--background)),0 0 0 4px hsl(var(--primary))}.variant-selector__color--light{border-color:hsl(var(--border))}.variant-selector__color-check{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);color:#fff;filter:drop-shadow(0 1px 2px rgba(0,0,0,.3))}.variant-selector__sizes{display:flex;gap:.5rem;flex-wrap:wrap}.variant-selector__size{position:relative;min-width:60px;padding:.75rem 1.25rem;font-size:.875rem;font-weight:500;color:hsl(var(--foreground));background:hsl(var(--background));border:1.5px solid hsl(var(--border));border-radius:8px;cursor:pointer;transition:all .3s ease}.variant-selector__size:hover:not(.variant-selector__size--disabled){border-color:hsl(var(--primary));background:hsl(var(--primary)/.05)}.variant-selector__size--active{background:hsl(var(--primary));border-color:hsl(var(--primary));color:#fff}.variant-selector__size--active:hover{background:hsl(var(--primary)/.9)}.variant-selector__size--disabled{opacity:.4;cursor:not-allowed}.variant-selector__size-label{position:relative;z-index:1}.variant-selector__size-line{position:absolute;top:50%;left:10%;right:10%;height:1.5px;background:hsl(var(--foreground));transform:translateY(-50%) rotate(-15deg)}.variant-selector__hint{font-size:.8125rem;color:hsl(var(--muted-foreground));font-style:italic}.product-tabs{margin-top:3rem}.product-tabs__headers{display:flex;gap:.5rem;border-bottom:2px solid hsl(var(--border));overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none}.product-tabs__headers::-webkit-scrollbar{display:none}.product-tabs__header{display:flex;align-items:center;gap:.5rem;padding:1rem 1.5rem;font-size:.9375rem;font-weight:500;color:hsl(var(--muted-foreground));background:none;border:none;border-bottom:2px solid rgba(0,0,0,0);cursor:pointer;transition:all .3s ease;white-space:nowrap;margin-bottom:-2px}.product-tabs__header:hover{color:hsl(var(--foreground));background:hsl(var(--muted)/.3)}.product-tabs__header--active{color:hsl(var(--primary));border-bottom-color:hsl(var(--primary))}.product-tabs__header svg{flex-shrink:0}.product-tabs__content{padding:2rem 0}.product-tabs__panel{animation:fadeIn .3s ease}.product-tabs__subtitle{font-size:1.125rem;font-weight:600;color:hsl(var(--foreground));margin-bottom:1rem}.product-tabs__section{margin-bottom:2rem}.product-tabs__section:last-child{margin-bottom:0}.product-tabs__section p{color:hsl(var(--foreground));line-height:1.6}.product-tabs__features,.product-tabs__materials,.product-tabs__shipping,.product-tabs__size-guide{max-width:700px}.product-tabs__list{list-style:none;padding:0;margin:1rem 0}.product-tabs__list li{position:relative;padding-left:1.5rem;margin-bottom:.75rem;color:hsl(var(--foreground));line-height:1.6}.product-tabs__list li:before{content:"•";position:absolute;left:0;color:hsl(var(--primary));font-weight:700}.product-tabs__table-wrapper{overflow-x:auto;margin:1.5rem 0;border-radius:8px;border:1px solid hsl(var(--border))}.product-tabs__table{width:100%;border-collapse:collapse;font-size:.875rem}.product-tabs__table td,.product-tabs__table th{padding:.75rem 1rem;text-align:left;border-bottom:1px solid hsl(var(--border))}.product-tabs__table th{background:hsl(var(--muted)/.5);font-weight:600}.product-tabs__table td,.product-tabs__table th{color:hsl(var(--foreground))}.product-tabs__table tbody tr:last-child td{border-bottom:none}.product-tabs__table tbody tr:hover{background:hsl(var(--muted)/.3)}.size-guide-modal{position:fixed;top:0;left:0;right:0;bottom:0;background:hsl(var(--background)/.95);z-index:1000;display:flex;align-items:center;justify-content:center;padding:1rem;animation:fadeIn .3s ease;backdrop-filter:blur(8px)}.size-guide-modal__content{background:hsl(var(--background));border:1px solid hsl(var(--border));border-radius:12px;max-width:800px;width:100%;max-height:90vh;overflow-y:auto;box-shadow:0 8px 32px rgba(0,0,0,.15);animation:slideUp .3s ease}.size-guide-modal__header{display:flex;justify-content:space-between;align-items:center;padding:1.5rem;border-bottom:1px solid hsl(var(--border));position:sticky;top:0;background:hsl(var(--background));z-index:10}.size-guide-modal__title{font-size:1.5rem;font-weight:700;color:hsl(var(--foreground))}.size-guide-modal__close{display:flex;align-items:center;justify-content:center;width:36px;height:36px;background:none;border:none;border-radius:50%;cursor:pointer;transition:all .3s ease;color:hsl(var(--foreground))}.size-guide-modal__close:hover{background:hsl(var(--muted))}.size-guide-modal__body{padding:2rem 1.5rem}.size-guide-modal__section{margin-bottom:2.5rem}.size-guide-modal__section:last-child{margin-bottom:0}.size-guide-modal__subtitle{font-size:1.125rem;font-weight:600;color:hsl(var(--foreground));margin-bottom:1rem}.size-guide-modal__table-wrapper{overflow-x:auto;margin:1rem 0;border-radius:8px;border:1px solid hsl(var(--border))}.size-guide-modal__table{width:100%;border-collapse:collapse;font-size:.875rem}.size-guide-modal__table td,.size-guide-modal__table th{padding:.875rem 1rem;text-align:left;border-bottom:1px solid hsl(var(--border))}.size-guide-modal__table th{background:hsl(var(--muted)/.5);font-weight:600}.size-guide-modal__table td,.size-guide-modal__table th{color:hsl(var(--foreground))}.size-guide-modal__table td strong{color:hsl(var(--primary))}.size-guide-modal__table tbody tr:last-child td{border-bottom:none}.size-guide-modal__table tbody tr:hover{background:hsl(var(--muted)/.3)}.size-guide-modal__measurements{display:grid;gap:1rem;margin:1rem 0}.size-guide-modal__measurement strong{display:block;color:hsl(var(--primary));margin-bottom:.25rem}.size-guide-modal__measurement p{color:hsl(var(--foreground));line-height:1.5;font-size:.875rem}.size-guide-modal__fit-info{list-style:none;padding:0;margin:1rem 0}.size-guide-modal__fit-info li{padding:.75rem 0;border-bottom:1px solid hsl(var(--border));color:hsl(var(--foreground))}.size-guide-modal__fit-info li:last-child{border-bottom:none}.size-guide-modal__fit-info li strong{color:hsl(var(--foreground));font-weight:600}.size-guide-modal__tips{background:hsl(var(--muted)/.3);padding:1.5rem;border-radius:8px}.size-guide-modal__tips ul{list-style:none;padding:0;margin:1rem 0 0}.size-guide-modal__tips ul li{position:relative;padding-left:1.5rem;margin-bottom:.75rem;color:hsl(var(--foreground));line-height:1.6;font-size:.875rem}.size-guide-modal__tips ul li:before{content:"💡";position:absolute;left:0}.size-guide-modal__tips ul li:last-child{margin-bottom:0}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes slideUp{0%{transform:translateY(20px);opacity:0}to{transform:translateY(0);opacity:1}}