:root{--color-primary:#111;--color-secondary:#b8924d;--color-text:#333;--color-text-light:#fff;--color-background:#f9f9f9;--color-navbar-bg:rgba(255,255,255,.95);--font-heading:'Cinzel',serif;--font-body:'Inter',sans-serif;--transition-speed:.3s}*{margin:0;padding:0;box-sizing:border-box}body{font-family:var(--font-body);color:var(--color-text);background-color:var(--color-background);line-height:1.6;overflow-x:hidden}h1,h2,h3,h4,h5,h6{font-family:var(--font-heading);font-weight:400}a{text-decoration:none;color:inherit;transition:color var(--transition-speed)}ul{list-style:none}.site-header{position:fixed;top:0;left:0;width:100%;padding:40px 50px;display:flex;justify-content:space-between;align-items:center;z-index:1000;transition:all .4s ease;background-color:transparent;color:var(--color-text-light)}.site-header.scrolled{background-color:var(--color-navbar-bg);color:var(--color-primary);box-shadow:0 4px 30px rgba(0,0,0,.05);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);padding:15px 50px}.site-brand h1{font-size:1.8rem;letter-spacing:2px;text-transform:uppercase}.site-brand .custom-logo-link{display:inline-block;line-height:0}.site-brand .custom-logo{height:56px;width:auto;max-width:220px;display:block;transition:height .4s ease}.site-header.scrolled .site-brand .custom-logo{height:42px}@media (max-width:768px){.site-brand .custom-logo{height:42px}.site-header.scrolled .site-brand .custom-logo{height:34px}}.main-navigation ul{display:flex;gap:30px}.main-navigation a{font-size:.95rem;font-weight:500;text-transform:uppercase;letter-spacing:1px}.main-navigation a:hover{color:var(--color-secondary)}.header-icons{display:flex;gap:20px}.header-icons span{cursor:pointer}.hero-section{position:relative;height:100vh;width:100%;background-image:linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.4)),url(//opticalaser.com.ar/wp-content/themes/optica-theme/assets/images/hero-image.webp);background-size:cover;background-position:center;background-attachment:fixed;display:flex;align-items:center;justify-content:flex-start;text-align:left;padding:0 5vw;color:var(--color-text-light)}.hero-content{max-width:500px;padding:0 20px;animation:fadeIn 1.5s ease forwards}.hero-content h1{font-size:2.7rem;margin-bottom:20px;text-transform:uppercase;letter-spacing:4px}.hero-content p{font-size:.95rem;margin-bottom:40px;font-weight:300;max-width:600px}.hero-buttons{display:flex;gap:20px;justify-content:flex-start}.btn{padding:15px 40px;font-size:1rem;text-transform:uppercase;letter-spacing:1px;border-radius:0;cursor:pointer;transition:all var(--transition-speed);font-weight:500}.btn-primary{background-color:var(--color-secondary);color:var(--color-primary);border:1px solid var(--color-secondary)}.btn-primary:hover{background-color:transparent;color:var(--color-text-light);border-color:var(--color-text-light)}.btn-outline{background-color:transparent;color:var(--color-text-light);border:1px solid var(--color-text-light)}.btn-outline:hover{background-color:var(--color-text-light);color:var(--color-primary)}.scrolling-ticker{background-color:#1c1c1c;color:#eee;padding:14px 0;overflow:hidden;white-space:nowrap;position:absolute;bottom:0;left:0;width:100%}.ticker-content{display:inline-block;animation:ticker 25s linear infinite;white-space:nowrap}.ticker-content span{display:inline-block;padding:0 40px;font-size:.85rem;letter-spacing:1px;font-weight:300}@keyframes ticker{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}.about-section{padding:100px 5vw;background-color:var(--color-background);display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}.about-image img{width:100%;height:auto;object-fit:cover;border-radius:4px;box-shadow:0 20px 40px rgba(0,0,0,.1)}.about-text h2{font-size:2.5rem;margin-bottom:20px;color:var(--color-primary)}.about-text p{font-size:1.1rem;color:#666;margin-bottom:20px}.about-text .btn-dark{background-color:var(--color-primary);color:var(--color-text-light);border:1px solid var(--color-primary);display:inline-block;margin-top:20px}.about-text .btn-dark:hover{background-color:transparent;color:var(--color-primary)}.products-preview{padding:80px 5vw;text-align:center}.products-preview h2{font-size:2.5rem;margin-bottom:50px;position:relative;display:inline-block}.products-preview h2:after{content:'';position:absolute;bottom:-15px;left:50%;transform:translateX(-50%);width:60px;height:2px;background-color:var(--color-secondary)}.product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:30px}@media (max-width:1024px){.product-grid{grid-template-columns:repeat(2,1fr)}}@media (max-width:600px){.product-grid{grid-template-columns:1fr}}.product-card{text-align:center;transition:transform .3s ease}.product-card:hover{transform:translateY(-5px)}.product-image-wrapper{position:relative;overflow:hidden;margin-bottom:20px;background-color:#f8f8f8}.product-image-wrapper img{width:100%;height:350px;object-fit:cover;display:block;transition:opacity .4s ease-in-out,transform .8s ease}.product-image-wrapper .img-hover{position:absolute;top:0;left:0;opacity:0}.product-card:hover .img-front{opacity:0}.product-card:hover .img-hover{opacity:1;transform:scale(1.05)}.product-info h3{font-family:var(--font-body);font-weight:500;font-size:1.1rem;margin-bottom:5px}.product-info .price{font-weight:600;color:var(--color-primary);margin-top:5px;margin-bottom:15px;font-size:1.2rem}.btn-cart{width:100%;padding:12px 20px;background-color:var(--color-primary);color:var(--color-text-light);border:1px solid var(--color-primary);font-size:.9rem;text-transform:uppercase;letter-spacing:1px;cursor:pointer;transition:all var(--transition-speed)}.btn-cart:hover{background-color:var(--color-secondary);border-color:var(--color-secondary);color:var(--color-primary)}@keyframes fadeIn{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@media (max-width:768px){.about-section{grid-template-columns:1fr}.hero-content h1{font-size:2.5rem}.main-navigation{display:none}}.header-icon-link{position:relative;font-size:1.2rem;margin-left:18px;display:inline-flex;align-items:center;justify-content:center;cursor:pointer;transition:opacity var(--transition-speed)}.header-icon-link:hover{opacity:.7}.optica-cart-count{position:absolute;top:-8px;right:-10px;min-width:18px;height:18px;padding:0 5px;background:var(--color-primary);color:var(--color-text-light);border-radius:9px;font-family:var(--font-body);font-size:.7rem;font-weight:600;line-height:18px;text-align:center}.optica-shop .woocommerce-products-header__title,.optica-shop .product_title,.optica-page .entry-title{font-family:var(--font-heading);font-size:2.2rem;color:var(--color-primary);margin-bottom:24px;letter-spacing:1px}.optica-archive ul.products,.optica-archive .woocommerce ul.products{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px, 1fr));gap:32px;padding:0;margin:0;list-style:none}.optica-archive ul.products li.product{width:auto !important;margin:0 !important;background:#fff;padding:24px;border-radius:4px;box-shadow:0 2px 12px rgba(0,0,0,.04);transition:transform .4s ease,box-shadow .4s ease;position:relative}.optica-archive ul.products li.product:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(0,0,0,.08)}.optica-archive ul.products li.product:hover .optica-img-hover{opacity:1 !important}.optica-archive ul.products li.product a img{width:100%;height:220px;object-fit:contain;margin-bottom:16px;background:var(--color-background);border-radius:4px}.optica-archive ul.products li.product .woocommerce-loop-product__title{font-family:var(--font-heading);font-size:1.05rem !important;color:var(--color-primary);padding:0 !important;margin-bottom:8px !important}.optica-archive ul.products li.product .price{font-family:var(--font-body);color:var(--color-primary);font-size:1rem;font-weight:500}.woocommerce a.button,.woocommerce button.button,.woocommerce input.button,.woocommerce #respond input#submit,.woocommerce a.button.alt,.woocommerce button.button.alt,.woocommerce input.button.alt,.woocommerce #respond input#submit.alt{background:var(--color-primary) !important;color:var(--color-text-light) !important;font-family:var(--font-body) !important;font-weight:500 !important;letter-spacing:.5px;padding:12px 28px !important;border-radius:2px !important;border:none !important;text-transform:uppercase;font-size:.85rem !important;transition:background var(--transition-speed),color var(--transition-speed)}.woocommerce a.button:hover,.woocommerce button.button:hover,.woocommerce input.button:hover,.woocommerce #respond input#submit:hover,.woocommerce a.button.alt:hover,.woocommerce button.button.alt:hover{background:var(--color-secondary) !important;color:var(--color-primary) !important}.optica-single .woocommerce div.product .product_title{margin-top:0}.optica-single .woocommerce div.product p.price,.optica-single .woocommerce div.product span.price{color:var(--color-primary);font-size:1.6rem;font-family:var(--font-body);font-weight:500}.optica-single .woocommerce div.product .woocommerce-tabs ul.tabs{border-bottom:1px solid rgba(0,0,0,.08);padding:0}.optica-single .woocommerce div.product .woocommerce-tabs ul.tabs li{background:0 0;border:none;border-radius:0;margin:0 16px 0 0;padding:0}.optica-single .woocommerce div.product .woocommerce-tabs ul.tabs li a{font-family:var(--font-heading);color:var(--color-text);text-transform:uppercase;letter-spacing:1px;font-size:.9rem;padding:12px 0}.optica-single .woocommerce div.product .woocommerce-tabs ul.tabs li.active a{color:var(--color-primary);border-bottom:2px solid var(--color-secondary)}.woocommerce-message,.woocommerce-info,.woocommerce-error{border-top-color:var(--color-secondary) !important;background:#fff !important;font-family:var(--font-body)}.woocommerce-message:before,.woocommerce-info:before{color:var(--color-secondary) !important}.optica-page .woocommerce table.shop_table,.optica-page .woocommerce-cart-form table{border:none;border-collapse:collapse;font-family:var(--font-body)}.optica-page .woocommerce table.shop_table th{font-family:var(--font-heading);text-transform:uppercase;letter-spacing:1px;font-size:.85rem;color:var(--color-primary);border-bottom:2px solid var(--color-primary)}.optica-page .woocommerce-checkout #payment{background:#fff;border-radius:4px}.optica-page .woocommerce form .form-row input.input-text,.optica-page .woocommerce form .form-row textarea,.optica-page .woocommerce form .form-row select{border:1px solid rgba(0,0,0,.12);border-radius:2px;padding:10px 12px;font-family:var(--font-body)}.optica-page .woocommerce-account .woocommerce-MyAccount-navigation ul{list-style:none;padding:0}.optica-page .woocommerce-account .woocommerce-MyAccount-navigation li{border-bottom:1px solid rgba(0,0,0,.08)}.optica-page .woocommerce-account .woocommerce-MyAccount-navigation li a{display:block;padding:12px 0;font-family:var(--font-heading);text-transform:uppercase;letter-spacing:1px;font-size:.85rem;color:var(--color-text)}.optica-page .woocommerce-account .woocommerce-MyAccount-navigation li.is-active a{color:var(--color-primary)}@media (max-width:768px){.optica-archive ul.products{grid-template-columns:repeat(2,1fr);gap:16px}.optica-archive ul.products li.product{padding:16px}.optica-archive ul.products li.product a img{height:160px}}.section-heading{text-align:center;max-width:700px;margin:0 auto 50px}.section-eyebrow{display:inline-block;font-family:var(--font-body);font-size:.75rem;letter-spacing:3px;text-transform:uppercase;color:var(--color-secondary);margin-bottom:12px;font-weight:500}.section-heading h2{font-size:2.4rem;color:var(--color-primary);letter-spacing:1px;margin-bottom:16px}.hero-buttons{display:flex;gap:16px;flex-wrap:wrap}.categories-section{padding:100px 5vw;background:#fff}.categories-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;max-width:1400px;margin:0 auto}.category-card{position:relative;display:block;height:380px;border-radius:4px;overflow:hidden;cursor:pointer;text-decoration:none}.category-image{position:absolute;inset:0;background-size:cover;background-position:center;transition:transform .8s ease}.category-card:hover .category-image{transform:scale(1.08)}.category-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(0,0,0,.1) 30%,rgba(0,0,0,.75) 100%);transition:background .4s ease}.category-card:hover .category-overlay{background:linear-gradient(to bottom,rgba(0,0,0,.2) 20%,rgba(0,0,0,.85) 100%)}.category-info{position:absolute;bottom:0;left:0;right:0;padding:28px 24px;color:var(--color-text-light);z-index:2}.category-info h3{font-family:var(--font-heading);font-size:1.4rem;letter-spacing:1px;margin-bottom:8px;text-transform:uppercase}.category-link{font-family:var(--font-body);font-size:.85rem;color:#fff;letter-spacing:1px;font-weight:500;text-transform:uppercase}.benefits-section{background:var(--color-primary);padding:70px 5vw}.benefits-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px;max-width:1400px;margin:0 auto}.benefit-item{text-align:center;color:var(--color-text-light)}.benefit-item h4{font-family:var(--font-heading);font-size:1rem;letter-spacing:1px;text-transform:uppercase;color:var(--color-text-light);margin-bottom:6px}.benefit-item p{font-size:.85rem;font-weight:300;color:rgba(255,255,255,.8);line-height:1.5}.about-text .section-eyebrow{margin-bottom:20px}.brands-section{padding:80px 0;background:var(--color-background)}.brands-section .section-heading{padding:0 5vw}.brands-marquee{position:relative;width:100%;overflow:hidden;-webkit-mask-image:linear-gradient(to right,transparent 0,#000 80px,#000 calc(100% - 80px), transparent 100%);mask-image:linear-gradient(to right,transparent 0,#000 80px,#000 calc(100% - 80px), transparent 100%)}.brands-track{display:inline-flex;align-items:center;gap:80px;padding:16px 40px;white-space:nowrap;animation:brands-scroll 35s linear infinite}@keyframes brands-scroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}.brands-marquee:hover .brands-track{animation-play-state:paused}.brand-logo{flex-shrink:0;display:inline-flex;align-items:center;gap:8px;color:#888;font-family:var(--font-body);font-size:1.6rem;font-weight:500;letter-spacing:2px;transition:color .4s ease,transform .4s ease;cursor:default;user-select:none;min-width:140px;justify-content:center}.brand-logo:hover{color:var(--color-primary);transform:scale(1.05)}.brand-rayban{font-family:'Helvetica Neue',Arial,sans-serif;font-weight:800;font-size:1.7rem;letter-spacing:-.5px;text-transform:none}.brand-rayban .brand-dot{font-size:2.2rem;line-height:0;margin:0 -2px;color:var(--color-secondary)}.brand-persol{font-family:var(--font-heading);font-weight:600;font-size:1.5rem;letter-spacing:6px}.brand-vulk{font-family:'Helvetica Neue',Arial,sans-serif;font-weight:900;font-size:1.8rem;letter-spacing:1px;font-style:italic}.brand-oakley{font-family:'Helvetica Neue',Arial,sans-serif;font-weight:800;font-size:1.4rem;letter-spacing:4px}.brand-oakley .brand-mark{display:inline-block;width:28px;height:14px;border:2px solid currentColor;border-radius:50%;font-size:0;margin-right:4px}.brand-carrera{font-family:Georgia,'Times New Roman',serif;font-style:italic;font-weight:700;font-size:1.9rem;letter-spacing:-1px;text-transform:none}.brand-carrera em{font-style:italic}.brand-prada{font-family:'Times New Roman',Times,serif;font-weight:400;font-size:1.5rem;letter-spacing:8px}.brand-gucci{font-family:Georgia,'Times New Roman',serif;font-weight:700;font-size:1.5rem;letter-spacing:6px}.brand-tomford{font-family:'Helvetica Neue',Arial,sans-serif;font-weight:300;font-size:1.4rem;letter-spacing:6px}.brand-logo img{height:36px;width:auto;max-width:160px;object-fit:contain;filter:grayscale(1) opacity(.55);transition:filter .4s ease}.brand-logo:hover img{filter:grayscale(0) opacity(1)}.reviews-section{padding:100px 5vw;background:#fff}.reviews-rating{margin-top:16px;display:flex;flex-direction:column;align-items:center;gap:6px}.reviews-stars{color:var(--color-secondary);font-size:1.4rem;letter-spacing:4px}.reviews-meta{font-size:.85rem;color:#888;letter-spacing:.5px}.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;max-width:1200px;margin:0 auto}.review-card{background:var(--color-background);padding:32px 28px;border-radius:4px;position:relative;transition:transform .4s ease,box-shadow .4s ease}.review-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(0,0,0,.06)}.review-stars{color:var(--color-secondary);font-size:1.1rem;letter-spacing:3px;margin-bottom:16px}.review-text{font-style:italic;color:var(--color-text);font-size:.95rem;line-height:1.7;margin-bottom:20px}.review-author{font-family:var(--font-heading);font-size:.9rem;color:var(--color-primary);letter-spacing:1px}.cta-section{padding:100px 5vw;background:linear-gradient(rgba(17,17,17,.85),rgba(17,17,17,.85)),url('https://images.unsplash.com/photo-1556306535-0f09a537f0a3?w=1600&q=80') center/cover no-repeat;color:var(--color-text-light)}.cta-content{max-width:700px;margin:0 auto;text-align:center}.cta-content .section-eyebrow{color:var(--color-secondary)}.cta-content h2{font-size:2.2rem;margin-bottom:16px;color:var(--color-text-light);letter-spacing:1px}.cta-content p{font-size:1rem;font-weight:300;margin-bottom:32px;opacity:.85}.cta-form{display:flex;gap:0;max-width:500px;margin:0 auto 24px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.2)}.cta-form input[type=email]{flex:1;padding:16px 20px;background:0 0;border:none;color:var(--color-text-light);font-family:var(--font-body);font-size:.95rem;outline:none}.cta-form input[type=email]::placeholder{color:rgba(255,255,255,.5)}.cta-form button{border-radius:0}.cta-whatsapp{display:inline-block;margin-top:8px;font-family:var(--font-body);color:var(--color-secondary);font-size:.95rem;letter-spacing:.5px;border-bottom:1px solid var(--color-secondary);padding-bottom:2px}.cta-whatsapp:hover{color:var(--color-text-light);border-color:var(--color-text-light)}.site-footer{background:var(--color-primary);color:var(--color-text-light);padding:80px 5vw 24px}.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:48px;max-width:1400px;margin:0 auto 48px}.footer-col h4{font-family:var(--font-heading);font-size:1rem;text-transform:uppercase;letter-spacing:2px;color:var(--color-secondary);margin-bottom:24px}.footer-brand-name{font-family:var(--font-heading);font-size:1.4rem !important;letter-spacing:4px !important;color:var(--color-text-light) !important;margin-bottom:16px !important}.footer-brand p{font-size:.9rem;color:rgba(255,255,255,.7);line-height:1.7;margin-bottom:24px;max-width:320px}.footer-social{display:flex;gap:16px}.footer-social a{width:38px;height:38px;border:1px solid rgba(255,255,255,.25);border-radius:50%;display:flex;align-items:center;justify-content:center;transition:all .3s ease;font-size:1rem}.footer-social a:hover{background:var(--color-secondary);border-color:var(--color-secondary);color:var(--color-primary)}.footer-col ul{list-style:none;padding:0}.footer-col ul li{margin-bottom:10px;font-size:.9rem;color:rgba(255,255,255,.75);line-height:1.6}.footer-col ul li a{color:rgba(255,255,255,.75);transition:color .3s ease}.footer-col ul li a:hover{color:var(--color-secondary)}.footer-hours{margin-top:12px}.footer-trust{display:flex;flex-wrap:wrap;gap:48px;padding:32px 0;border-top:1px solid rgba(255,255,255,.1);border-bottom:1px solid rgba(255,255,255,.1);margin-bottom:32px}.trust-block{display:flex;align-items:center;gap:16px;flex-wrap:wrap}.trust-label{font-family:var(--font-heading);font-size:.75rem;text-transform:uppercase;letter-spacing:2px;color:var(--color-secondary)}.trust-icons{display:flex;gap:8px;flex-wrap:wrap}.payment-badge{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);padding:6px 12px;border-radius:2px;font-size:.75rem;letter-spacing:.5px;font-weight:500;color:rgba(255,255,255,.9)}.payment-badge.mp{background:rgba(0,159,227,.15);border-color:rgba(0,159,227,.4)}.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:24px;border-top:1px solid rgba(255,255,255,.08);font-size:.8rem;color:rgba(255,255,255,.5);flex-wrap:wrap;gap:16px}.footer-credit a{color:var(--color-secondary);border-bottom:1px solid transparent;transition:border-color .3s ease}.footer-credit a:hover{border-bottom-color:var(--color-secondary)}@media (max-width:1024px){.categories-grid{grid-template-columns:repeat(2,1fr)}.benefits-grid{grid-template-columns:repeat(2,1fr);gap:24px}.reviews-grid{grid-template-columns:1fr}.footer-grid{grid-template-columns:1fr 1fr}}@media (max-width:600px){.categories-grid{grid-template-columns:1fr}.category-card{height:280px}.benefits-grid{grid-template-columns:1fr}.brands-strip{gap:28px}.brand-logo{font-size:1rem;letter-spacing:2px}.section-heading h2{font-size:1.8rem}.footer-grid{grid-template-columns:1fr;gap:32px}.cta-form{flex-direction:column;gap:8px;background:0 0;border:none}.cta-form input[type=email]{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.2)}}.optica-icon{display:inline-block;vertical-align:middle;flex-shrink:0;stroke:currentColor;fill:none}.header-icon-link{width:24px;height:24px}.header-icon-link .optica-icon{width:22px;height:22px}.optica-cart-link{width:auto;position:relative}.optica-cart-link .optica-icon-shopping-bag{width:22px;height:22px}.benefit-icon{display:inline-flex;align-items:center;justify-content:center;width:64px;height:64px;margin:0 auto 18px;border:1px solid rgba(255,255,255,.25);border-radius:50%;color:var(--color-text-light);transition:all .4s ease}.benefit-item:hover .benefit-icon{background:var(--color-secondary);border-color:var(--color-secondary);color:var(--color-primary);transform:scale(1.05)}.cta-whatsapp{display:inline-flex;align-items:center;gap:8px;margin-top:12px;font-family:var(--font-body);color:var(--color-secondary);font-size:.95rem;letter-spacing:.5px;border-bottom:1px solid var(--color-secondary);padding-bottom:4px}.footer-social a .optica-icon{width:18px;height:18px}.footer-contact-list li{display:flex;align-items:flex-start;gap:10px;margin-bottom:12px;font-size:.9rem;color:rgba(255,255,255,.75);line-height:1.6}.footer-contact-list li .optica-icon{flex-shrink:0;margin-top:2px;color:var(--color-secondary);width:16px;height:16px}.footer-contact-list li span{flex:1}.review-meta{color:#999;font-family:var(--font-body);font-weight:400;font-size:.8rem;letter-spacing:.3px;text-transform:none}.section-eyebrow.is-accent{color:#78020c}.btn-primary.is-accent{background-color:#78020c;border-color:#78020c;color:#fff}.btn-primary.is-accent:hover{background-color:transparent;color:#fff;border-color:#fff}.menu-toggle{display:none;background:0 0;border:0;width:44px;height:44px;padding:0;cursor:pointer;position:relative;z-index:1100;color:inherit;margin-left:8px}.menu-toggle .bar{display:block;width:26px;height:2px;background:currentColor;margin:6px auto;transition:transform .3s ease,opacity .3s ease}.menu-toggle[aria-expanded=true]{color:#fff}.menu-toggle[aria-expanded=true] .bar:nth-child(1){transform:translateY(8px) rotate(45deg)}.menu-toggle[aria-expanded=true] .bar:nth-child(2){opacity:0}.menu-toggle[aria-expanded=true] .bar:nth-child(3){transform:translateY(-8px) rotate(-45deg)}body.menu-open{overflow:hidden}@media (max-width:1024px){.site-header{padding:24px 32px}.site-header.scrolled{padding:12px 32px}.hero-content h1{font-size:clamp(2rem, 5vw, 2.4rem);letter-spacing:3px}.about-section,.categories-section,.reviews-section,.cta-section,.brands-section{padding-top:70px;padding-bottom:70px}.benefits-section{padding-top:50px;padding-bottom:50px}}@media (max-width:768px){.site-header{padding:14px 18px;justify-content:flex-start;gap:6px}.site-header.scrolled{padding:10px 18px}.site-brand{margin-right:auto}.site-brand h1{font-size:1.3rem;letter-spacing:1.5px}.menu-toggle{display:block}.main-navigation{position:fixed;inset:0;background:rgba(17,17,17,.97);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);display:flex !important;align-items:center;justify-content:center;padding:80px 24px 40px;transform:translateX(100%);transition:transform .35s ease;z-index:1050;visibility:hidden}.main-navigation.is-open{transform:translateX(0);visibility:visible}.main-navigation ul{flex-direction:column;gap:8px;align-items:center;width:100%;padding:0;margin:0}.main-navigation li{width:100%;text-align:center}.main-navigation a{display:block;color:#fff;font-size:1.15rem;letter-spacing:2px;padding:14px 16px;min-height:48px}.main-navigation a:hover,.main-navigation a:focus{color:var(--color-secondary)}.header-icons{gap:10px}.header-icon-link{width:40px;height:40px;margin-left:0;justify-content:center}.header-icon-link .optica-icon{width:22px;height:22px}.optica-cart-count{top:-2px;right:-4px}.hero-section{height:auto;min-height:58vh;background-attachment:scroll;background-position:center 30%;padding:96px 5vw 80px;align-items:flex-start;text-align:left}.hero-content{max-width:100%;padding:0}.hero-content h1{font-size:clamp(1.5rem, 6vw, 2rem);line-height:1.15;letter-spacing:2px;margin-bottom:16px}.hero-content p{font-size:.95rem;margin-bottom:28px;max-width:100%}.hero-buttons{flex-direction:column;align-items:stretch;gap:12px}.hero-buttons .btn{width:100%;text-align:center;padding:14px 24px;min-height:48px;font-size:.95rem}.scrolling-ticker{padding:10px 0}.ticker-content span{padding:0 20px;font-size:.75rem;letter-spacing:.5px}.about-section{padding:60px 5vw;gap:30px}.about-text h2{font-size:1.8rem}.about-text p{font-size:1rem}.categories-section,.reviews-section,.cta-section{padding:60px 5vw}.brands-section{padding:50px 0}.benefits-section{padding:50px 5vw}.benefits-grid{gap:28px}.benefit-icon{width:52px;height:52px;margin-bottom:12px}.benefit-icon svg{width:28px;height:28px}.benefit-item h4{font-size:.95rem}.benefit-item p{font-size:.85rem}.section-heading{margin-bottom:32px}.section-heading h2{font-size:1.7rem;line-height:1.2}.section-eyebrow{font-size:.7rem;letter-spacing:2px}.category-card{height:260px}.cta-content h2{font-size:1.7rem}.cta-content p{font-size:.95rem}.site-footer{padding:60px 5vw 24px}.footer-grid{gap:36px;margin-bottom:32px}.footer-trust{gap:24px;padding:24px 0;margin-bottom:24px}.trust-block{gap:10px}.footer-bottom{flex-direction:column;align-items:flex-start;gap:8px;text-align:left}.woocommerce a.button,.woocommerce button.button,.woocommerce input.button,.woocommerce #respond input#submit{min-height:48px;padding:14px 22px !important;font-size:.85rem !important}.brands-track{gap:50px;padding:12px 24px}.brand-logo{min-width:110px;font-size:1.2rem !important;letter-spacing:2px !important}.brand-rayban,.brand-vulk{font-size:1.3rem !important}.brand-carrera{font-size:1.4rem !important}.review-card{padding:24px 22px}.review-text{font-size:.9rem}.hero-section .scrolling-ticker{bottom:0}}@media (max-width:480px){.site-header,.site-header.scrolled{padding-left:14px;padding-right:14px}.site-brand .custom-logo,.site-header.scrolled .site-brand .custom-logo{height:34px}.site-brand h1{font-size:1.15rem;letter-spacing:1px}.hero-section{min-height:52vh}.hero-content h1{font-size:clamp(1.35rem, 6.5vw, 1.65rem);letter-spacing:1.5px}.about-text h2,.section-heading h2,.cta-content h2{font-size:1.5rem}.category-card{height:220px}.review-card{padding:22px 18px}}.woocommerce ul.products li.product{position:relative}.woocommerce ul.products li.product .woocommerce-loop-product__title,.woocommerce ul.products li.product .price{text-align:center !important}.woocommerce ul.products li.product:hover .optica-img-hover{opacity:1 !important}.woocommerce ul.products li.product{background:#fff !important;border:none !important;box-shadow:none !important;padding:0 !important}.woocommerce ul.products li.product a img{background:#fff !important;padding:20px !important;box-sizing:border-box}.woocommerce ul.products li.product .woocommerce-loop-product__title{font-family:'Instrument Sans',-apple-system,BlinkMacSystemFont,sans-serif !important;font-size:12px !important;font-weight:400 !important;letter-spacing:2.16px !important;text-transform:uppercase !important;color:#1c1c1c !important;text-align:center !important;line-height:1.6 !important;margin:16px 0 8px !important;padding:0 !important}.woocommerce ul.products li.product .price,.woocommerce ul.products li.product .price .amount,.woocommerce ul.products li.product .price bdi{font-family:'Instrument Sans',-apple-system,BlinkMacSystemFont,sans-serif !important;font-size:14px !important;font-weight:400 !important;letter-spacing:.5px !important;color:#1c1c1c !important;text-align:center !important}.woocommerce ul.products li.product .add_to_cart_button{display:inline-block !important;font-family:'Instrument Sans',sans-serif !important;font-size:11px !important;font-weight:500 !important;letter-spacing:2px !important;text-transform:uppercase !important;color:#1c1c1c !important;background:0 0 !important;border:1px solid #1c1c1c !important;padding:10px 20px !important;margin:14px auto 0 !important;border-radius:0 !important;text-align:center !important;width:auto !important;transition:all .2s ease}.woocommerce ul.products li.product .add_to_cart_button:hover{background:#1c1c1c !important;color:#fff !important}.woocommerce ul.products li.product{display:flex !important;flex-direction:column !important;align-items:center !important}.woocommerce ul.products li.product>a{width:100% !important}html{overflow-x:hidden}@media (max-width:768px){footer.elementor-89 .elementor-element-62c000f>.e-con-inner{flex-direction:column !important;flex-wrap:nowrap !important;gap:32px !important;align-items:center !important;text-align:center}footer.elementor-89 .elementor-element-62c000f>.e-con-inner>.e-con{width:100% !important;max-width:100% !important}footer.elementor-89 .elementor-icon-list-items{align-items:center}footer.elementor-89 .elementor-icon-list-text{overflow-wrap:anywhere}}.woocommerce ul.products li.product .woocommerce-loop-product__title,.woocommerce ul.products li.product .price,.woocommerce ul.products li.product .price .amount,.woocommerce ul.products li.product .add_to_cart_button{font-family:var(--font-body) !important}footer.elementor-89 .elementor-heading-title{font-family:var(--font-heading) !important}footer.elementor-89,footer.elementor-89 .elementor-icon-list-text,footer.elementor-89 p,footer.elementor-89 a,footer.elementor-89 span{font-family:var(--font-body) !important}@media (max-width:768px){.site-header.scrolled{-webkit-backdrop-filter:none !important;backdrop-filter:none !important}}.optica-trust-badges{list-style:none;margin:26px 0 0;padding:22px 0 4px;border-top:1px solid rgba(0,0,0,.1);display:grid;gap:13px}.optica-trust-badges li{position:relative;padding-left:30px;font-family:var(--font-body);font-size:.95rem;color:var(--color-text);line-height:1.35}.optica-trust-badges li:before{content:"✓";position:absolute;left:0;top:0;color:var(--color-secondary);font-weight:700;font-size:1.05rem}.optica-stock-urgency{margin:18px 0 0;font-family:var(--font-body);font-size:.95rem;font-weight:600;color:#b03a2e;letter-spacing:.3px}.optica-features{list-style:none;margin:18px 0 0;padding:0;display:grid;gap:9px}.optica-features li{position:relative;padding-left:18px;font-family:var(--font-body);font-size:.92rem;color:var(--color-text);line-height:1.4}.optica-features li:before{content:"•";position:absolute;left:0;color:var(--color-secondary);font-weight:700}.optica-features li strong{color:var(--color-primary);font-weight:600}.optica-archive ul.products:before,.optica-archive ul.products:after,.optica-archive .woocommerce ul.products:before,.optica-archive .woocommerce ul.products:after,.woocommerce ul.products:before,.woocommerce ul.products:after{content:none !important;display:none !important}.elementor-widget-woocommerce-product-content .elementor-widget-container,.elementor-widget-woocommerce-product-content p{font-family:"Inter",sans-serif;color:#555;font-size:16px;line-height:1.85}.elementor-widget-woocommerce-product-content p:last-child{margin-bottom:0}.optica-price-extra{margin:-6px 0 4px;display:flex;flex-direction:column;gap:3px}.optica-price-extra .ope-cuotas{font-family:"Inter";font-size:14px;color:#444}.optica-price-extra .ope-transfer{font-family:"Inter";font-size:13px;color:#b8924d;font-weight:600}.optica-price-extra .ope-transfer b{font-weight:700}.optica-buy-assurance{margin-top:12px;font-family:"Inter";font-size:12.5px;color:#777;letter-spacing:.3px;text-align:center}.optica-sticky-buy{display:none}@media (max-width:768px){.optica-sticky-buy{display:flex;align-items:center;justify-content:space-between;gap:12px;position:fixed;left:0;right:0;bottom:0;z-index:9999;background:#fff;border-top:1px solid #e5e5e5;padding:10px 16px;box-shadow:0 -2px 14px rgba(0,0,0,.1)}.optica-sticky-buy .osb-price{font-family:"Inter";font-weight:700;font-size:18px;color:#111;white-space:nowrap}.optica-sticky-buy .osb-price del{font-weight:400;font-size:13px;color:#999}.optica-sticky-buy .osb-btn{flex:1;max-width:58%;text-align:center;background:#111;color:#fff !important;padding:14px 16px;border-radius:4px;text-decoration:none;font-family:"Inter";font-weight:600;letter-spacing:.5px;text-transform:uppercase;font-size:12.5px;line-height:1;transition:background .25s ease}.optica-sticky-buy .osb-btn:hover{background:#b8924d}body.single-product{padding-bottom:74px}}.location-section{padding:100px 5vw;background:var(--color-background);text-align:center}.location-info{display:flex;flex-wrap:wrap;justify-content:center;gap:40px;max-width:920px;margin:0 auto 36px}.location-item{display:flex;align-items:center;gap:12px;font-family:var(--font-body);color:var(--color-text);font-size:.98rem;line-height:1.45;text-align:left}.location-item svg{flex-shrink:0;width:26px;height:26px;color:var(--color-primary)}.location-item a{color:var(--color-text);transition:color var(--transition-speed)}.location-item a:hover{color:var(--color-primary)}.location-actions{display:flex;flex-wrap:wrap;justify-content:center;gap:16px;margin-bottom:48px}.location-btn{display:inline-block;padding:14px 34px;font-family:var(--font-body);font-size:.8rem;letter-spacing:2px;text-transform:uppercase;font-weight:500;border-radius:2px;transition:all var(--transition-speed)}.location-btn--primary{background:var(--color-primary);color:var(--color-text-light);border:1px solid var(--color-primary)}.location-btn--primary:hover{background:0 0;color:var(--color-primary)}.location-btn--ghost{background:#25d366;color:#fff;border:1px solid #25d366}.location-btn--ghost:hover{background:#1ebe5d;border-color:#1ebe5d;color:#fff}.location-map{max-width:1000px;margin:0 auto;border-radius:6px;overflow:hidden;box-shadow:0 18px 40px rgba(0,0,0,.12);border:1px solid rgba(0,0,0,.08);line-height:0}.location-map iframe{width:100%;height:420px;border:0;display:block;filter:grayscale(.2) contrast(1.05)}.location-media{display:flex;gap:24px;max-width:1100px;margin:0 auto;align-items:stretch}.location-media .location-map{flex:1 1 58%;max-width:none;margin:0}.location-media .location-map iframe{height:400px}.location-photo{flex:1 1 42%;border-radius:6px;overflow:hidden;box-shadow:0 18px 40px rgba(0,0,0,.12);border:1px solid rgba(0,0,0,.08);line-height:0}.location-photo img{width:100%;height:100%;object-fit:cover;display:block}@media (max-width:900px){.location-media{flex-direction:column}.location-media .location-map iframe{height:320px}.location-photo{height:260px}}@media (max-width:767px){.location-section{padding:70px 6vw}.location-info{gap:22px;flex-direction:column;align-items:center}.location-item{width:100%;max-width:260px}.location-actions{gap:12px}.location-btn{padding:12px 26px}.location-map iframe{height:320px}}.wa-float{position:fixed;right:24px;bottom:24px;z-index:9999;width:58px;height:58px;border-radius:50%;background:#25d366;color:#fff;display:flex;align-items:center;justify-content:center;box-shadow:0 6px 18px rgba(0,0,0,.25);transition:transform var(--transition-speed),box-shadow var(--transition-speed);animation:waPulse 2.6s infinite}.wa-float:hover{transform:scale(1.08);color:#fff}.wa-float svg{width:34px;height:34px}@keyframes waPulse{0%{box-shadow:0 6px 18px rgba(0,0,0,.25),0 0 0 0 rgba(37,211,102,.5)}70%{box-shadow:0 6px 18px rgba(0,0,0,.25),0 0 0 14px rgba(37,211,102,0)}100%{box-shadow:0 6px 18px rgba(0,0,0,.25),0 0 0 0 rgba(37,211,102,0)}}@media (max-width:767px){.wa-float{right:16px;bottom:16px;width:52px;height:52px}.wa-float svg{width:30px;height:30px}body.single-product .wa-float{bottom:84px}}.woocommerce span.onsale,.woocommerce ul.products li.product span.onsale{position:absolute;top:14px;right:14px;left:auto;width:auto;height:auto;min-width:0 !important;min-height:0 !important;margin:0 !important;padding:5px 13px !important;background-color:#b03a2e !important;color:#fff !important;font-family:var(--font-body) !important;font-size:10.5px !important;font-weight:600 !important;letter-spacing:1.6px !important;text-transform:uppercase !important;line-height:1.5 !important;text-align:center;border-radius:3px !important;box-shadow:0 2px 8px rgba(176,58,46,.28) !important;z-index:10}.woocommerce ul.products li.product a.woocommerce-LoopProduct-link,.optica-archive ul.products li.product a.woocommerce-LoopProduct-link{position:relative;display:block}.woocommerce ul.products li.product .optica-img-hover,.optica-archive ul.products li.product .optica-img-hover{position:absolute;top:0;left:0;width:100%;margin:0 !important;opacity:0;transition:opacity .4s ease;pointer-events:none;z-index:3}body:not(.home) .site-header{color:var(--color-primary)}body:not(.home) .main-navigation a,body:not(.home) .header-icons,body:not(.home) .header-icon-link,body:not(.home) .header-icon-link .optica-icon,body:not(.home) .menu-toggle{color:var(--color-primary)}body:not(.home) .main-navigation a:hover{color:var(--color-secondary)}.bestsellers-section{padding:40px 5vw 0}@media (max-width:768px){.bestsellers-section{padding-top:28px}}.bestsellers-section .section-heading{margin:0 auto}.bestsellers-section .section-heading h2{margin-bottom:0}.elementor-element-c9359cb img{max-width:100% !important;width:auto !important;height:32px !important;object-fit:contain !important}@media (max-width:767px){.elementor-element-c9359cb{display:flex !important;flex-wrap:nowrap !important;justify-content:space-between !important;align-items:center !important;gap:4px !important;width:100% !important}.elementor-element-c9359cb img{height:12px !important;width:auto !important;max-width:26px !important;flex-shrink:1 !important}}