/* Shop By Room Section */
.shop-by-room-section {
    padding: 80px 5%;
    background-color: #fcfbfa; /* Slightly off-white/beige to match design */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    clear: both;
}

.shop-by-room-header {
    flex: 1 1 300px;
    max-width: 400px;
}

.shop-by-room-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.shop-by-room-subtitle i {
    font-size: 14px;
}

.shop-by-room-title {
    font-size: 45px;
    line-height: 1.2;
    color: #222;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif; /* Elegant serif */
}

.shop-by-room-link {
    font-size: 14px;
    color: #222;
    text-decoration: none !important;
    font-weight: 500;
    border-bottom: 1px solid #222;
    padding-bottom: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.shop-by-room-link:hover {
    gap: 15px;
    color: #666;
    border-bottom-color: #666;
}

.shop-by-room-grid {
    flex: 2 1 600px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.room-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    text-decoration: none !important;
    display: block;
}

.room-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.room-card:hover img {
    transform: scale(1.08);
}

.room-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 50%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px;
    transition: padding 0.3s ease;
}

.room-card:hover .room-card-overlay {
    padding-bottom: 25px;
}

.room-card-title {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.room-card-icon {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    transition: all 0.3s ease;
}

.room-card:hover .room-card-icon {
    background: #222;
    color: #fff;
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1199px) {
    .shop-by-room-title {
        font-size: 32px;
    }
    .shop-by-room-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .shop-by-room-section {
        padding: 50px 5%;
    }
    .shop-by-room-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .shop-by-room-title {
        font-size: 28px;
    }
}
