.kitchen-features-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kitchen-features-card {
    background: var(--white, white);
    border-radius: 20px;
    box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 
                0px 4px 6px -2px rgba(16, 24, 40, 0.03);
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    position: relative;
}

.kitchen-features-text {
    display: flex;
    flex-direction: column;
    gap: var(--s);
    padding: var(--section-break-m) var(--section-break-xl) var(--section-break-m) var(--section-break-m);
    width: 600px;
    flex-shrink: 0;
    position: relative;
}

/* Heading Group */
.kitchen-features-heading {
    display: flex;
    flex-direction: column;
    gap: var(--xxs);
    width: 100%;
}

/* Eyebrow Text */
.kitchen-features-eyebrow {
    font-family: 'Blinker', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: var(--light-blue);
    margin: 0;
}

/* Main Heading */
.kitchen-features-title {
    font-family: 'Blinker', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.3;
    color: var(--gunmetal);
    margin: 0;
}

/* Certification Text */
.kitchen-features-certification {
    font-family: "mislab-std";
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--iron);
    margin: 0;
    white-space: pre-wrap;
}

/* Sparkles Icon */
.kitchen-features-icon {
    position: absolute;
    top: 17px;
    left: 493px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kitchen-features-icon i {
    font-size: 80px;
    color: var(--light-blue-2);
    line-height: 0;
}

/* Image Section */
.kitchen-features-image {
    flex: 1;
    height: 100%;
    align-self: stretch;
    display: flex;
    align-items: center;
    width: 400px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.kitchen-features-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.desktop-image{
    display: block;
}
.tablet-image{
    display: none;
}
.mobile-image{
    display: none;
}


@media (max-width: 1024px) {
    .kitchen-features-card {
        flex-direction: column;
        max-width: 645px;
    }
    .kitchen-features-image {
        width: 100%;
    }
    .kitchen-features-text {
        width: 100%;
        padding: var(--xl) 40px;
    }
    .kitchen-features-icon {
        left: 568px;
        top: 20.13px;
        height: 48px;
    }

    .kitchen-features-icon i {
        font-size: 48px;
    }
    .desktop-image{
        display: none;
    }
    .tablet-image{
        display: block;
    }
}

@media (max-width: 767px) {
    .tablet-image{
        display: none;
    }
    .mobile-image{
        display: block;
    }
    .kitchen-features-card {
        max-width: 560px;
    }
}
@media (max-width: 480px) {
    .kitchen-features-card {
        max-width: unset;
        margin-left: 10px;
        margin-right: 10px;
    }

    .kitchen-features-text {
        padding: var(--l) 20px;
    }

    .kitchen-features-title {
        font-size: 24px;
        line-height: 1.4;
    }

    .kitchen-features-icon {
        left: 260px;
        top: 17px;
        height: 40px;
    }

    .kitchen-features-icon i {
        font-size: 40px;
    }

    .kitchen-features-image {
        height: 251.875px;
    }
}

@media (max-width: 360px) {
    .kitchen-features-icon {
        left: auto;
        right: 20px;
    }
}
