
/* tab */

.tab-container input[type='radio'] {
    display: none;
}


.shopthelook label {
    display: block;
    padding: 0 20px;
    border-right: 1px solid #333;
    cursor: pointer;
    float: right;
    margin-bottom: 25px;
}
.shopthelook input {
    display: none;
}
.tab5_label {
    border: none !important;
    padding-right: 0 !important;
}


.content-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    width: 100%;
}

.tab-content {
    display: none;
}

#tab1:checked ~ .content-area .tab-content {
    display: block;
}
#tab2:checked ~ .content-area .bedroom {
    display: block;
}
#tab3:checked ~ .content-area .dining {
    display: block;
}
#tab4:checked ~ .content-area .living {
    display: block;
}
#tab5:checked ~ .content-area .other {
    display: block;
}


.img-area {
    position: relative;
    overflow: hidden;
}

.hover-effect {
    width: 95%;
    height: 100%;
    background-color: #f2f2f2;
    position: absolute;
    top: 0;
    left: -100%;
    justify-content: center;
    align-items: center;
    display: flex;
    transition: left 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.tab-content:hover .hover-effect{
    left: 0;
    opacity: 0.9;
}

.hover-effect p {
    font-weight: 500;
    font-size: 24px;
}

.card-title {
    letter-spacing: 1px;
    margin-top: 5px;
}
