/* Main styles for WTF Will I Get app */
body {
    background-color: #A6BCFA;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    padding-top: 0;
    margin-top: 0;
}

.container {
    max-width: 960px;
}

h1, h2, h3 {
    font-weight: 700;
}

/* Title banner styles */
.title-banner {
    background-color: #dc3545;
    width: 100%;
    padding: 20px 0;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.title-text {
    font-family: 'Frijole', cursive;
    color: white;
    text-align: center;
    margin: 0;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.title-text:hover {
    transform: scale(1.03);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

/* Header styles */
header h1 {
    color: #dc3545;
}

/* Card styles */
.card {
    transition: transform 0.2s ease;
    margin-bottom: 2rem;
}

.card:hover {
    transform: translateY(-5px);
}

/* Product display */
.product-image {
    max-height: 200px;
    object-fit: contain;
}

.product-price {
    font-size: 1.5rem;
    color: #dc3545;
}

.product-card {
    background-color: #fff;
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Star rating */
.stars {
    display: inline-flex;
    align-items: center;
}

.star {
    font-size: 1.25rem;
    color: #e0e0e0;
    margin-right: 2px;
}

.star.filled {
    color: #ffc107;
}

.star.half-filled {
    color: #ffc107;
    position: relative;
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
}

/* Button styles */
.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

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

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover {
    background-color: #bb2d3b;
    border-color: #b02a37;
}

.btn-success {
    background-color: #198754;
    border-color: #198754;
}

.btn-success:hover {
    background-color: #157347;
    border-color: #146c43;
}

/* Form elements */
.form-check {
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}

.form-check:hover {
    background-color: #f1f3f5;
}

.form-check-input:checked + .form-check-label {
    font-weight: 600;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .product-card .col-md-4 {
        margin-bottom: 1rem;
    }
    
    .title-text {
        font-size: 1.8rem;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .title-text {
        font-size: 1.5rem;
    }
}