/* Custom styles for the e-commerce site */

[x-cloak] { display: none !important; }

:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
}

/* Hero section styles */
.hero-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.hero-section h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Custom card styles */
.product-card {
    transition: transform 0.3s ease;
    margin-bottom: 1.5rem;
}

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

/* Custom button styles */
.btn-custom {
    background-color: var(--primary-color);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
}

.btn-custom:hover {
    background-color: #0056b3;
}
