/* Custom Theme Styles */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --primary-hover: #e55a2b;
    --secondary-hover: #e8840a;
    --primary-rgb: 255, 107, 53;
    --secondary-rgb: 247, 147, 30;
}

/* Enhanced Product Cards */
.enhanced-product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.enhanced-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Cart Notifications */
.cart-success-notification,
.cart-error-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    z-index: 9999;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 300px;
}

.cart-success-notification {
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.3);
}

.cart-error-notification {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.3);
}

.cart-success-notification.show,
.cart-error-notification.show {
    transform: translateX(0);
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cart-success-notification,
    .cart-error-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .cart-success-notification.show,
    .cart-error-notification.show {
        transform: translateY(0);
    }
}















