/**
 * BrainChai Cart Manager - Custom Styles
 * Version: 1.0.0
 */

/* Add any custom styles for the cart here */
/* Example styles for potential enhancements */

/* Side cart trigger animation */
.side-cart-trigger {
    transition: all 0.3s ease;
}

.side-cart-trigger:hover {
    transform: scale(1.05);
}

/* Modal animations */
.single-pack-modal {
    animation: fadeInModal 0.3s ease;
}

@keyframes fadeInModal {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Free gift selection highlight - removed БЕЗПЛАТНО badge as per user request */

/* Quantity controls styling */
.modal_add_qty_button {
    display: flex;
    align-items: center;
    gap: 10px;
}

.plus_qty,
.minus_qty {
    cursor: pointer;
    user-select: none;
    transition: opacity 0.2s ease;
}

.plus_qty:hover,
.minus_qty:hover {
    opacity: 0.7;
}

/* Price display styling - adjusted to match original format */
.modal_price {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.modal_price s {
    color: #999;
    font-weight: normal;
    font-size: inherit;
    margin-right: 5px;
}

/* Shipping message styling */
.shipping-message-side-cart {
    color: #28a745;
    font-weight: 500;
}

/* Arrow message styling - removed background as per user request */
.gift_tea_arrow .arrow-text {
    margin-left: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .single-pack-modal {
        width: 95%;
        max-width: none;
    }
    
    .tea_container {
        padding: 10px;
    }
} 