.special-product-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s;

	&.show-popup {
		opacity: 1;
	}

	& .popup-content {
		background: white;
		padding: 30px;
		border-radius: 10px;
		max-width: 600px;
		width: 90%;
		text-align: center;
		position: relative;

        & h3 {
            font-size: 1.5rem;
        }
	}

	& .producto-popup {
		display: flex;
		align-items: center;
		margin: 2rem 0;
		text-align: left;
		gap: 15px;
	}

	& .producto-popup img {
		width: 150px;
		height: auto;
		border-radius: 5px;
	}

	& .producto-info {
		flex: 1;

        & h4 {
            font-size: 1.4rem;
            font-weight: 600;
        }
	}

	& .popup-buttons {
		display: flex;
		gap: 10px;
		justify-content: center;
		margin-top: 20px;
	}

	& .popup-button {
		padding: 12px 25px;
		border: none;
		border-radius: 5px;
		cursor: pointer;
		font-weight: bold;
		transition: all 0.3s;
	}

	& .popup-button.aceptar {
		background-color: var(--yellow-color);
		color: white;
	}

	& .popup-button.rechazar {
		background-color: #f1f1f1;
		color: #333;
	}

	& .popup-button:hover {
		opacity: 0.9;
		transform: translateY(-2px);
	}

    & .popup-feedback .success {
        color: green;
        margin-top: 10px;
        padding: 10px;
        background: #e6ffe6;
        border: 1px solid #a3e8a3;
    }
    
    & .popup-feedback .error {
        color: red;
        margin-top: 10px;
        padding: 10px;
        background: #ffebeb;
        border: 1px solid #ffb3b3;
    }
}



@media (width < 768px) {
    .special-product-popup {

        & .popup-content {
            & h3 {
                font-size: 1.3rem;
            }
    
            & .producto-popup {
                flex-wrap: wrap;
    
                & img {
                    width: 60%;
                    margin: auto;
                }
            }
    
            & .producto-info {
                flex: inherit;
    
                & h4 {
                    text-align: center;
                }
            }
        }
    }
}


.woocommerce-cart-form__cart-item.cart_item {
	& .product-quantity {
		text-align: center;
	}
}