    /* FORCE 3 COLUMN PRODUCT GRID */
    @media (min-width: 1024px) {
.tf-grid-layout {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px;
}
    }

    @media (max-width: 767px) {
        .hair-card{
            display: none !important;
        }
    }

/* FIX PRODUCT CARD WIDTH ISSUES */
.card-product {
    width: 100%;
}

/* IMAGE HEIGHT BALANCE */
.card-product-wrapper img {
    height: 180px;
    object-fit: contain;
}
/* ===== COLLECTION SPLIT LAYOUT ===== */
.collection-item-v2 .collection-inner {
    display: flex;
    align-items: stretch;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}

/* LEFT: CONTENT */
.collection-item-v2 .collection-content {
    width: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    padding: 40px;
}

.collection-item-v2 .collection-content .heading {
    color: #000 !important;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.1;
}

.collection-item-v2 .collection-content .subheading {
    color: #666 !important;
    margin-top: 10px;
}

/* Button color fix */
.collection-item-v2 .collection-other-link {
    color: #000;
    border-color: #000;
}

/* RIGHT: IMAGE */
.collection-item-v2 .collection-image {
    width: 50%;
}

.collection-item-v2 .collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* REMOVE OLD OVERLAYS */
.collection-item-v2 .collection-content {
    position: static;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .collection-item-v2 .collection-inner {
        flex-direction: column;
    }

    .collection-item-v2 .collection-content,
    .collection-item-v2 .collection-image {
        width: 100%;
    }
}
/* MAIN CARD */
.hair-card {
    max-width: 980px;
    background: #fff;
    border-radius: 24px;
    display: flex;
    overflow: hidden;
}

/* LEFT IMAGE */
.hair-image {
    position: relative;
    width: 45%;
}

.hair-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXT OVER IMAGE */
.hair-overlay {
    position: absolute;
    inset: 0;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hair-overlay h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hair-overlay .white {
    color: #fff;
}

.hair-overlay .green {
    color: #1e7f5c;
}

.shop-link {
    color: #fff;
    font-weight: 500;
    text-decoration: underline;
    font-size: 20px;
}

.shop-link:hover {
    color: #0dc47e;
}

/* RIGHT CONTENT */
.hair-content {
    width: 55%;
    padding: 50px 60px;
}

.hair-content h3 {
    font-size: 25px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 18px;
}

.hair-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.hair-content ul li {
    font-size: 20px;
    color: #555;
    margin-bottom: 10px;
}

/* BUTTON */
.view-btn {
    display: inline-block;
    padding: 12px 26px;
    border: 1px solid #6BAF92;
    color: #FFFFFF;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    background-color: #6BAF92;
}

.view-btn:hover {
    background: #4E9A78;
    color: #FFFFFF;
}

.page-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin: 30px 0 40px;
    color: #222;
    position: relative;
}
.page-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg,#04862f,#09e62e);
    margin: 12px auto 0;
    border-radius: 2px;
}

body {
    background-color: #fdfdfd;
}