.fuel-suggestion-modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:9999;display:flex;align-items:center;justify-content:center;padding:1rem;opacity:0;visibility:hidden;transition:opacity .2s ease,visibility .2s ease}.fuel-suggestion-modal.active{opacity:1;visibility:visible}.fuel-suggestion-modal__overlay{position:absolute;top:0;right:0;bottom:0;left:0;background:#00000080}.fuel-suggestion-modal__content{position:relative;background:rgb(var(--color-base-background-1));border-radius:0;box-shadow:0 4px 20px #0000001a;max-width:420px;width:100%;max-height:90vh;overflow-y:auto;padding:2rem;transform:translateY(8px);transition:transform .2s ease}.fuel-suggestion-modal.active .fuel-suggestion-modal__content{transform:translateY(0)}.fuel-suggestion-modal__close{position:absolute;top:1rem;right:1rem;background:transparent;border:none;cursor:pointer;padding:.5rem;color:rgb(var(--color-base-text));opacity:.6;transition:opacity .2s ease}.fuel-suggestion-modal__close:hover{opacity:1}.fuel-suggestion-modal__header{text-align:center;margin-bottom:1.5rem}.fuel-suggestion-modal__icon{display:inline-flex;align-items:center;justify-content:center;width:60px;height:60px;background:#c9a962;border-radius:0;color:#fff;margin-bottom:1rem}.fuel-suggestion-modal__title{font-size:1.5rem;font-weight:600;margin:0 0 .5rem;color:rgb(var(--color-base-text))}.fuel-suggestion-modal__subtitle{font-size:.95rem;color:rgba(var(--color-base-text),.7);margin:0}.fuel-suggestion-modal__product{display:flex;gap:1rem;padding:1rem;background:rgba(var(--color-base-background-2),.5);border-radius:8px;margin-bottom:1.5rem}.fuel-suggestion-modal__product-image{flex-shrink:0;width:80px;height:80px;border-radius:8px;overflow:hidden;background:rgb(var(--color-base-background-2))}.fuel-suggestion-modal__product-image img{width:100%;height:100%;object-fit:cover}.fuel-suggestion-modal__product-info{flex:1;min-width:0}.fuel-suggestion-modal__product-title{font-size:1rem;font-weight:600;margin:0 0 .25rem;color:rgb(var(--color-base-text))}.fuel-suggestion-modal__product-description{font-size:.85rem;color:rgba(var(--color-base-text),.7);margin:0;line-height:1.4}.fuel-suggestion-modal__options{display:flex;flex-direction:column;gap:.75rem;margin-bottom:1.5rem}.fuel-option{position:relative;cursor:pointer}.fuel-option input{position:absolute;opacity:0;pointer-events:none}.fuel-option__content{display:flex;align-items:center;gap:1rem;padding:1rem;border:2px solid rgba(var(--color-base-text),.15);border-radius:8px;transition:border-color .2s ease,background-color .2s ease}.fuel-option input:checked+.fuel-option__content{border-color:rgb(var(--color-base-primary));background:rgba(var(--color-base-primary),.05)}.fuel-option:hover .fuel-option__content{border-color:rgba(var(--color-base-primary),.5)}.fuel-option__size{font-weight:600;font-size:1rem;color:rgb(var(--color-base-text))}.fuel-option__price{margin-left:auto;font-weight:600;color:rgb(var(--color-base-primary))}.fuel-option__badge{font-size:.7rem;font-weight:600;text-transform:uppercase;padding:.2rem .5rem;border-radius:4px;background:rgb(var(--color-base-primary));color:#fff}.fuel-option__badge--save{background:#22c55e}.fuel-suggestion-modal__quantity{display:flex;align-items:center;gap:1rem;margin-bottom:1.5rem}.fuel-suggestion-modal__quantity label{font-weight:500;color:rgb(var(--color-base-text))}.fuel-suggestion-modal__quantity .quantity-selector{display:flex;align-items:center;border:1px solid rgba(var(--color-base-text),.2);border-radius:8px;overflow:hidden}.fuel-suggestion-modal__quantity .quantity-selector__button{width:44px;height:44px;display:flex;align-items:center;justify-content:center;background:rgba(var(--color-base-text),.03);border:none;cursor:pointer;color:rgb(var(--color-base-text));transition:background-color .2s ease}.fuel-suggestion-modal__quantity .quantity-selector__button:hover{background:rgba(var(--color-base-text),.08)}.fuel-suggestion-modal__quantity .quantity-selector__input{width:70px;height:44px;text-align:center;border:none;border-left:1px solid rgba(var(--color-base-text),.2);border-right:1px solid rgba(var(--color-base-text),.2);font-size:1.125rem;font-weight:600;background:transparent;color:rgb(var(--color-base-text));-moz-appearance:textfield}.fuel-suggestion-modal__quantity .quantity-selector__input::-webkit-outer-spin-button,.fuel-suggestion-modal__quantity .quantity-selector__input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.fuel-suggestion-modal__quantity .quantity-selector__input:focus{outline:none;background:rgba(var(--color-base-primary),.05)}.fuel-suggestion-modal__actions{display:flex;flex-direction:column;gap:.75rem;margin-bottom:1rem}.fuel-suggestion-modal__actions .button{justify-content:center}.fuel-suggestion-modal__actions .button--primary{background:#c9a962;border:none;border-radius:0;color:#000}.fuel-suggestion-modal__actions .button--primary:hover{opacity:.85}.fuel-suggestion-modal__actions .button--secondary{background:transparent;border:1px solid rgba(var(--color-base-text),.2);color:rgba(var(--color-base-text),.8)}.fuel-suggestion-modal__actions .button--secondary:hover{background:rgba(var(--color-base-text),.05)}.fuel-suggestion-modal__note{display:flex;align-items:flex-start;gap:.5rem;padding:.75rem;background:rgba(var(--color-base-accent-1),.1);border-radius:6px;font-size:.85rem;color:rgba(var(--color-base-text),.8)}.fuel-suggestion-modal__note svg{flex-shrink:0;margin-top:2px;color:rgb(var(--color-base-accent-1))}@media screen and (max-width:480px){.fuel-suggestion-modal__content{padding:1.5rem;max-height:85vh}.fuel-suggestion-modal__icon{width:50px;height:50px}.fuel-suggestion-modal__icon svg{width:24px;height:24px}.fuel-suggestion-modal__title{font-size:1.25rem}.fuel-suggestion-modal__product{flex-direction:column;align-items:center;text-align:center}.fuel-suggestion-modal__product-image{width:100px;height:100px}.fuel-option__content{padding:.75rem}}@keyframes fuelAddedPulse{0%{transform:scale(1)}50%{transform:scale(1.05)}to{transform:scale(1)}}.fuel-suggestion-modal__actions .button--primary.success{animation:fuelAddedPulse .3s ease;background:#22c55e}
/*# sourceMappingURL=/cdn/shop/t/5/assets/component-fuel-suggestion.css.map */
