/* Styles for Clothing Page */

.clothing-main {
    background-color: #f8f9fa; /* Light grey background for a clean, modern feel */
}

.clothing-main .display-4 {
    color: #343a40; /* Dark grey for main title */
    font-weight: bold;
}

.clothing-main .lead {
    color: #6c757d; /* Medium grey for lead text */
    font-size: 1.15rem;
}

.category-title {
    color: #007bff; /* Primary blue for category titles, or use hotel's brand color */
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 1.75rem;
}

.product-card {
    border: 1px solid #dee2e6; /* Lighter border for cards */
    border-radius: 0.5rem; /* Slightly more rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.product-card .card-img-top {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    max-height: 220px; /* Slightly taller images */
    object-fit: cover; /* Ensures images cover the area well */
}

.product-card .card-body {
    padding: 1.5rem; /* More padding in card body */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card .card-title {
    font-size: 1.2rem; /* Larger product titles */
    font-weight: 600;
    color: #343a40; 
    margin-bottom: 0.75rem;
}

.product-card .card-text {
    font-size: 0.95rem; /* Slightly larger product text */
    color: #495057; 
    flex-grow: 1;
    margin-bottom: 1.25rem; /* More space before button */
}

.product-card .btn-outline-primary {
    border-color: #F4931E; /* Hotel's primary orange */
    color: #F4931E;
    font-weight: 500;
    padding: 0.5rem 1rem; /* Adjust button padding */
}

.product-card .btn-outline-primary:hover {
    background-color: #F4931E;
    color: #fff;
}