.product-popup{position:fixed;top:0;left:0;width:100%;height:100%;z-index:9999;display:none;align-items:center;justify-content:center;padding:2rem}.product-popup.is-active{display:flex}.product-popup__overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.75);cursor:pointer;display:block!important;animation:fadeIn .3s ease}.product-popup__content{position:relative;background:rgb(var(--color-background));border-radius:12px;max-width:900px;width:100%;max-height:90vh;overflow:auto;box-shadow:0 20px 60px rgba(0,0,0,.3);animation:slideUp .3s ease;z-index:1}.product-popup__close{position:absolute;top:1.5rem;right:1.5rem;background:0 0;border:none;color:rgb(var(--color-foreground));cursor:pointer;padding:.5rem;display:flex;align-items:center;justify-content:center;border-radius:50%;transition:all .2s ease;z-index:2}.product-popup__close:hover{background:rgba(var(--color-foreground),.1);transform:rotate(90deg)}.product-popup__inner{display:grid;grid-template-columns:1fr 1fr;gap:3rem;padding:2rem}@media (max-width:768px){.product-popup__inner{grid-template-columns:1fr;gap:2rem;padding:1.5rem;padding-top:3rem}}.product-popup__image{width:100%;aspect-ratio:1;overflow:hidden;border-radius:8px;background:rgba(var(--color-foreground),.04)}.product-popup__image img{width:100%;height:100%;object-fit:cover;display:block}.product-popup__info{display:flex;flex-direction:column;justify-content:center;gap:1.5rem}.product-popup__title{text-align:center;font-size:4rem;font-weight:700;line-height:1.2;margin:0;color:rgb(var(--color-foreground))}@media (max-width:768px){.product-popup__title{font-size:1.5rem}}.product-popup__description{text-align:center;font-size:1.8rem;line-height:1.6;color:#000}.product-popup__add-to-cart{display:flex;justify-content:center}.product-popup__price{text-align:center;font-size:3rem;font-weight:600;color:rgb(var(--color-foreground))}.product-popup__form{margin-top:.5rem}.product-popup__button{width:100%;padding:1rem 2rem;font-size:1rem;font-weight:600;border:none;border-radius:6px;cursor:pointer;transition:all .2s ease}.product-popup__button:disabled{opacity:.5;cursor:not-allowed}@keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes slideUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}