.hct-wrapper {
    margin-bottom: 4rem;
    padding: 2rem;
}

.hct-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2rem;
}

.hct-main-title {
    font-size: 2rem;
    font-weight: normal;
}

.hct-tabs-nav {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.hct-tab-link {
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.hct-tab-link.active {
    color: #000;
    border-bottom: 2px solid #e2cbb2;
}


.hct-tab-content {
    display: none;
    gap: 30px;
}

.hct-tab-content.active {
    display: flex;
}

.hct-left-column {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.hct-left-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hct-category-overlay {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.hct-category-overlay h3 {
    color: #fff;
    font-size: 2.5rem;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}


.hct-right-column {
    flex: 1;
}

.hct-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 991px) {
    .hct-tab-content.active {
        flex-direction: column;
    }
    .hct-left-column {
        flex: 1 1 100%;
    }
}

@media (max-width: 575px) {
    .hct-products-grid {
        grid-template-columns: 1fr;
    }
}