/* Custom styles for beauty e-commerce */
:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --dark-color: #2c3e50;
    --light-color: #f7f7f7;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.product-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.product-card img {
    height: 200px;
    object-fit: cover;
}

.category-card {
    text-align: center;
    padding: 20px;
    border: none;
    border-radius: 10px;
    background: white;
    transition: all 0.3s;
    cursor: pointer;
}

.category-card:hover {
    background: var(--primary-color);
    color: white;
}

.category-card:hover .text-primary {
    color: white !important;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 0;
    border-radius: 10px;
    margin-bottom: 50px;
}

.btn-primary {
    background-color: #e62032;
    border-color: #e62032;
}

.btn-primary:hover {
    background-color: #ff5252;
    border-color: #ff5252;
}

.cart-badge {
    position: relative;
    top: -10px;
    left: -5px;
}

.price-tag {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-card img {
        height: 150px;
    }
}