/* --- Category Style Cards --- */

.category-selection-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 10px 0 50px;
    width: 100%;
}

.style-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    width: 31%;
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
}

.style-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
}

.style-card-img {
    height: 250px;
    width: 100%;
    overflow: hidden;
}

.style-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    transform: scale(1.25);
}

.style-card:hover .style-card-img img {
    transform: scale(1.35);
}

.style-card-content {
    padding: 25px;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff, #fdfcfb);
}

.style-card-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #361C16;
    margin-bottom: 10px;
    font-family: 'Rajdhani', sans-serif;
}

.style-card-content p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

.breadcrumb-container {
    padding: 0 0 10px;
    max-width: 1200px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    color: #361C16;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.back-btn i {
    margin-right: 8px;
}

.back-btn:hover {
    color: #d1b29a;
}

@media (max-width: 768px) {
    .style-card {
        width: 100%;
        max-width: 400px;
    }
    .selection-title {
        font-size: 28px;
    }
}

/* --- Selection Header Styling --- */
.selection-page-header {
    text-align: center;
    padding: 20px 0 20px;
    width: 100%;
}

.selection-breadcrumb {
    font-size: 11px;
    letter-spacing: 2px;
    color: #8c7365;
    margin-bottom: 25px;
    font-weight: 500;
}

.selection-breadcrumb a {
    color: #8c7365;
    text-decoration: none;
    transition: color 0.3s;
}

.selection-breadcrumb a:hover {
    color: #361C16;
}

.selection-breadcrumb .separator {
    margin: 0 10px;
    opacity: 0.5;
}

.selection-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #361C16;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.selection-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #d1b29a;
}
