body{
   overflow-x: hidden;
}

.anubhuti-products-section {
    padding: 90px 20px;
    background: #fff8ef;
    overflow: hidden;
}

.anubhuti-products-container {
    width: min(1180px, 100%);
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.anubhuti-product-item {
    position: relative;
    display: grid;
    grid-template-columns: 46% 54%;
    min-height: 430px;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(74, 33, 13, 0.08);
    border: 1px solid rgba(169, 109, 18, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.anubhuti-product-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(74, 33, 13, 0.14);
}

.anubhuti-product-reverse {
    grid-template-columns: 54% 46%;
}

.anubhuti-product-reverse .anubhuti-product-visual {
    order: 2;
}

.anubhuti-product-reverse .anubhuti-product-content {
    order: 1;
}

.anubhuti-product-visual {
    position: relative;
    min-height: 420px;
    padding: 0;
    overflow: hidden;
    background: #f6ead9;
}

.anubhuti-product-visual img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    max-width: none;

    object-fit: cover;
    object-position: center;

    display: block;

    transition: transform 0.5s ease;
}

.anubhuti-product-item:hover .anubhuti-product-visual img {
    transform: scale(1.03);
}

.anubhuti-product-item:hover .anubhuti-product-visual img {
    transform: scale(1.06) rotate(1deg);
}

.anubhuti-product-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px 60px;
}

.anubhuti-product-label {
    width: fit-content;
    display: inline-flex;
    align-items: center;

    padding: 7px 14px;

    border-radius: 30px;

    background: #fbead1;
    color: #a96d12;

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.anubhuti-product-content h3 {
    margin: 18px 0 12px;

    color: #4a210d;

    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
}

.anubhuti-product-content > p {
    max-width: 520px;
    margin: 0 0 25px;

    color: #765d50;

    font-size: 15px;
    line-height: 1.8;
}


.anubhuti-product-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.anubhuti-info-row {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.anubhuti-info-icon {
    flex-shrink: 0;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #fff2df;
    color: #a96d12;

    font-size: 14px;
}

.anubhuti-info-row div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.anubhuti-info-row strong {
    color: #4a210d;
    font-size: 13px;
}

.anubhuti-info-row span {
    color: #80695c;
    font-size: 13px;
    line-height: 1.5;
}


.anubhuti-product-btn {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 20px;

    border-radius: 8px;

    background: #7a1f2b;
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

.anubhuti-product-btn i {
    transition: transform 0.3s ease;
}

.anubhuti-product-btn:hover {
    background: #4e1219;
    transform: translateX(3px);
}

.anubhuti-product-btn:hover i {
    transform: translateX(5px);
}

.anubhuti-icon-product {
    flex-direction: column;
    gap: 15px;
}

.anubhuti-food-icon {
    position: relative;
    z-index: 3;

    width: 150px;
    height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: #7a1f2b;

    font-size: 75px;

    box-shadow: 0 15px 35px rgba(74, 33, 13, 0.12);

    transition: transform 0.4s ease;
}

.anubhuti-product-item:hover .anubhuti-food-icon {
    transform: scale(1.08) rotate(-4deg);
}

.anubhuti-visual-text {
    position: relative;
    z-index: 3;

    color: #4a210d;

    font-size: 18px;
    font-weight: 800;
}


@media (max-width: 900px) {

    .anubhuti-products-section {
        padding: 70px 18px;
    }

    .anubhuti-product-item,
    .anubhuti-product-reverse {
        grid-template-columns: 1fr;
    }

    .anubhuti-product-reverse .anubhuti-product-visual,
    .anubhuti-product-reverse .anubhuti-product-content {
        order: initial;
    }

  .anubhuti-product-visual {
        width: 100% !important;
        height: 380px !important;
        min-height: 380px !important;
    }

    .anubhuti-product-visual img {
        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
        object-position: center center !important;
    }

    .anubhuti-product-content {
        padding: 40px;
    }

    .anubhuti-product-content h3 {
        font-size: 30px;
    }
}


@media (max-width: 600px) {

    .anubhuti-products-section {
        padding: 50px 14px;
    }

    .anubhuti-products-container {
        gap: 25px;
    }

    .anubhuti-product-item {
        border-radius: 20px;
    }

    .anubhuti-product-visual {
        min-height: 270px;
        padding: 30px;
    }

    .anubhuti-product-visual::before {
        width: 210px;
        height: 210px;
    }

    .anubhuti-product-visual img {
        width: 75%;
        height: 220px;
    }

    .anubhuti-product-number {
        top: 15px;
        left: 15px;

        width: 40px;
        height: 40px;

        font-size: 12px;
    }

    .anubhuti-product-content {
        padding: 30px 24px 32px;
    }

    .anubhuti-product-label {
        font-size: 9px;
        padding: 6px 11px;
    }

    .anubhuti-product-content h3 {
        margin-top: 14px;
        font-size: 25px;
    }

    .anubhuti-product-content > p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .anubhuti-info-row {
        gap: 10px;
    }

    .anubhuti-info-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .anubhuti-info-row strong {
        font-size: 12px;
    }

    .anubhuti-info-row span {
        font-size: 12px;
    }

    .anubhuti-product-btn {
        width: 100%;
        justify-content: center;
    }

    .anubhuti-food-icon {
        width: 115px;
        height: 115px;
        font-size: 55px;
    }

    .anubhuti-visual-text {
        font-size: 16px;
    }
}

@media (max-width: 360px) {

    .anubhuti-product-visual {
        height: 215px;
        min-height: 215px;
    }

    .anubhuti-product-content {
        padding: 22px 16px 24px;
    }

    .anubhuti-product-content h3 {
        font-size: 20px;
    }

    .anubhuti-product-content > p {
        font-size: 11px;
    }

    .anubhuti-info-icon {
        width: 28px;
        height: 28px;
    }
}


