/* =====================================================
   ANUBHUTI ORIGIN SECTION
   All class names are unique
===================================================== */

.anubhuti-origin-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background: #fffaf3;
}

.anubhuti-origin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}


/* =====================================================
   VISUAL AREA
===================================================== */

.anubhuti-origin-visual {
    position: relative;
    height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.anubhuti-origin-glow {
    position: absolute;

    width: 390px;
    height: 390px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(192, 111, 25, .20),
            rgba(192, 111, 25, 0)
        );

    filter: blur(8px);

    animation:
        anubhuti-glow-animation 5s ease-in-out infinite;
}

@keyframes anubhuti-glow-animation {

    0%,
    100% {
        transform: scale(.85);
        opacity: .6;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}


/* =====================================================
   PRODUCT STAGE
===================================================== */

.anubhuti-product-stage {
    position: relative;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =====================================================
   MAIN PRODUCT
===================================================== */

.anubhuti-main-product {
    position: relative;

    width: 315px;
    height: 425px;

    overflow: hidden;

    border-radius: 28px;

    z-index: 5;

    transform: rotate(-3deg);

    box-shadow:
        0 30px 70px rgba(72, 37, 10, .25);

    animation:
        anubhuti-main-floating 5s ease-in-out infinite;
}

.anubhuti-main-product img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform .8s ease;
}

.anubhuti-main-product:hover img {
    transform: scale(1.08);
}

@keyframes anubhuti-main-floating {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(-3deg);
    }

    50% {
        transform:
            translateY(-18px)
            rotate(2deg);
    }
}


/* =====================================================
   ROTATING CIRCLE
===================================================== */

.anubhuti-rotating-ring {
    position: absolute;

    width: 400px;
    height: 400px;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    border:
        1px dashed rgba(170, 94, 15, .35);

    border-radius: 50%;

    pointer-events: none;

    animation:
        anubhuti-ring-rotate 20s linear infinite;
}

@keyframes anubhuti-ring-rotate {

    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }
}


/* =====================================================
   PRODUCT INFO
===================================================== */

.anubhuti-product-info {
    position: absolute;

    left: 18px;
    right: 18px;
    bottom: 18px;

    padding: 16px;

    color: #fff;

    border-radius: 16px;

    background:
        rgba(38, 18, 5, .68);

    backdrop-filter: blur(12px);

    transform: translateY(10px);

    opacity: .9;

    transition: .4s ease;
}

.anubhuti-main-product:hover
.anubhuti-product-info {
    transform: translateY(0);
    opacity: 1;
}

.anubhuti-product-info small {
    display: block;

    font-size: 9px;

    letter-spacing: 3px;

    opacity: .7;
}

.anubhuti-product-info strong {
    display: block;

    margin-top: 5px;

    font-size: 14px;
}


/* =====================================================
   FLOATING PRODUCT CARDS
===================================================== */

.anubhuti-product-card {
    position: absolute;

    width: 145px;
    height: 180px;

    overflow: hidden;

    border-radius: 20px;

    background: #fff;

    z-index: 3;

    box-shadow:
        0 20px 45px rgba(50, 25, 5, .18);

    transition:
        transform .5s ease,
        box-shadow .5s ease;
}

.anubhuti-product-card:hover {
    z-index: 10;

    box-shadow:
        0 30px 60px rgba(50, 25, 5, .25);

    transform:
        scale(1.08)
        rotate(0deg) !important;
}

.anubhuti-product-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .7s ease;
}

.anubhuti-product-card:hover img {
    transform: scale(1.12);
}

.anubhuti-product-card span {
    position: absolute;

    left: 9px;
    right: 9px;
    bottom: 9px;

    padding: 8px;

    color: #fff;

    text-align: center;

    font-size: 11px;
    font-weight: 600;

    border-radius: 9px;

    background:
        rgba(30, 12, 2, .68);

    backdrop-filter: blur(7px);
}


/* =====================================================
   CARD POSITIONS
===================================================== */

.anubhuti-product-one {
    left: 4%;
    top: 65px;

    transform: rotate(-10deg);

    animation:
        anubhuti-card-one 5s ease-in-out infinite;
}

.anubhuti-product-two {
    right: 3%;
    top: 85px;

    transform: rotate(9deg);

    animation:
        anubhuti-card-two 5.5s ease-in-out infinite;
}

.anubhuti-product-three {
    left: 4%;
    bottom: 60px;

    transform: rotate(8deg);

    animation:
        anubhuti-card-three 5.2s ease-in-out infinite;
}

.anubhuti-product-four {
    right: 4%;
    bottom: 45px;

    transform: rotate(-9deg);

    animation:
        anubhuti-card-four 4.8s ease-in-out infinite;
}


@keyframes anubhuti-card-one {

    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: -18px;
    }
}

@keyframes anubhuti-card-two {

    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: 20px;
    }
}

@keyframes anubhuti-card-three {

    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: -15px;
    }
}

@keyframes anubhuti-card-four {

    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: 18px;
    }
}


/* =====================================================
   FLOATING PARTICLES
===================================================== */

.anubhuti-origin-particle {
    position: absolute;

    color: #b66b1a;

    font-size: 24px;

    opacity: .45;

    z-index: 1;

    animation:
        anubhuti-particle-float
        4s ease-in-out infinite;
}

.anubhuti-particle-a {
    top: 40px;
    left: 40%;
}

.anubhuti-particle-b {
    top: 45%;
    right: 10%;

    animation-delay: -1.5s;
}

.anubhuti-particle-c {
    bottom: 15%;
    left: 15%;

    animation-delay: -2.5s;
}

@keyframes anubhuti-particle-float {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(0);
    }

    50% {
        transform:
            translateY(-25px)
            rotate(90deg);
    }
}


/* =====================================================
   FRESH BADGE
===================================================== */

.anubhuti-fresh-label {
    position: absolute;

    bottom: 22px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    align-items: center;

    gap: 11px;

    padding: 11px 17px;

    white-space: nowrap;

    background:
        rgba(255,255,255,.94);

    backdrop-filter: blur(12px);

    border-radius: 50px;

    z-index: 20;

    box-shadow:
        0 15px 35px rgba(0,0,0,.13);
}

.anubhuti-fresh-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    border-radius: 50%;

    background: #873d17;
}

.anubhuti-fresh-label strong {
    display: block;

    font-size: 13px;
}

.anubhuti-fresh-label span {
    display: block;

    font-size: 10px;

    opacity: .65;
}


/* =====================================================
   RIGHT CONTENT
===================================================== */

.anubhuti-origin-content {
    max-width: 590px;
}

.anubhuti-origin-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 17px;

    color: #a85b15;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 5px;
}

.anubhuti-origin-content h2 {
    margin: 0 0 22px;

    font-size:
        42px;
   
    line-height: 1.2;

    letter-spacing: 1px;
}

.anubhuti-origin-content h2 em {
    display: inline-block;
    
    color: #9b4c15;

    font-style: normal;
}

.anubhuti-origin-description {
    max-width: 540px;

    margin-bottom: 35px;

    color: #6e675f;

    font-size: 16px;

    line-height: 1.8;
}


/* =====================================================
   FEATURES
===================================================== */

.anubhuti-origin-features {
    display: flex;
    flex-direction: column;

    gap: 21px;

    margin-bottom: 35px;
}

.anubhuti-origin-feature {
    display: flex;

    gap: 15px;

    transition:
        transform .3s ease;
}

.anubhuti-origin-feature:hover {
    transform: translateX(8px);
}

.anubhuti-feature-icon {
    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #994c13;

    border-radius: 14px;

    background: #f4e0c5;
}

.anubhuti-origin-feature h4 {
    margin: 0 0 4px;

    font-size: 16px;
}

.anubhuti-origin-feature p {
    margin: 0;

    color: #777;

    font-size: 14px;

    line-height: 1.6;
}


/* =====================================================
   BUTTON
===================================================== */

.anubhuti-story-button {
    display: inline-flex;
    align-items: center;

    gap: 15px;

    padding: 6px 7px 6px 22px;

    color: #fff;

    text-decoration: none;

    border-radius: 50px;

    background: #8c4017;

    font-size: 16px;
    font-weight: 700;

    transition: .4s ease;
}

.anubhuti-story-button i {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #8c4017;

    border-radius: 50%;

    background: #fff;

    transition: .4s ease;
}

.anubhuti-story-button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 30px rgba(140,64,23,.25);
}

.anubhuti-story-button:hover i {
    transform: rotate(-45deg);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .anubhuti-origin-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .anubhuti-origin-content {
        max-width: 700px;

        margin: auto;

        text-align: center;
    }

    .anubhuti-origin-eyebrow {
        justify-content: center;
    }

    .anubhuti-origin-description {
        margin-left: auto;
        margin-right: auto;
    }

    .anubhuti-origin-features {
        text-align: left;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .anubhuti-origin-section {
        padding: 70px 0;
    }

    .anubhuti-origin-visual {
        height: 500px;
    }

    .anubhuti-main-product {
        width: 220px;
        height: 310px;
    }

    .anubhuti-rotating-ring {
        width: 280px;
        height: 280px;
    }

    .anubhuti-product-card {
        width: 105px;
        height: 135px;

        border-radius: 15px;
    }

    .anubhuti-product-one {
        left: 0;
        top: 45px;
    }

    .anubhuti-product-two {
        right: 0;
        top: 55px;
    }

    .anubhuti-product-three {
        left: 0;
        bottom: 35px;
    }

    .anubhuti-product-four {
        right: 0;
        bottom: 25px;
    }

    .anubhuti-fresh-label {
        bottom: 0;

        padding: 9px 13px;
    }

    .anubhuti-fresh-icon {
        width: 32px;
        height: 32px;
    }

    .anubhuti-origin-content h2 {
        font-size: 38px;

        letter-spacing: -1px;
    }

    .anubhuti-origin-description {
        font-size: 15px;
    }

    .anubhuti-product-stage {
    position: relative;

    width: 80%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

    
}


/* =====================================================
   EXTRA SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

    .anubhuti-origin-visual {
        height: 440px;
    }
    

    .anubhuti-main-product {
        width: 190px;
        height: 275px;
    }

    .anubhuti-rotating-ring {
        width: 240px;
        height: 240px;
    }

    .anubhuti-product-card {
        width: 85px;
        height: 115px;
    }

    .anubhuti-product-card span {
        font-size: 9px;
    }

    .anubhuti-origin-content h2 {
        font-size: 34px;
    }
}