.hero {
    display: grid;
    grid-template-columns: 45% 55%;
    height: auto;
    align-items: center;
}

.hero-text {
    padding: 0rem 0rem 0rem 10%;
    position: relative;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin: 0 0 20px;
}

.hero-text h1 strong {
    font-weight: 800;
}

.highlighted {
    position: relative;
    white-space: nowrap;
    display: inline-block;
}

.highlighted::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.1em;
    width: 100%;
    height: 0.6em;
    background-color: #d7fef2;
    z-index: -1;
}

.hero-text p {
    font-size: 2rem;
    line-height: 1.6;
    margin: 3rem 0 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-section {
    background-image: url('https://storage.googleapis.com/giffycms-puffedup.appspot.com/images/explore-background.png');
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    padding: 5rem 0;
    margin: 0 auto;
    position: relative;
}

.feature-section h2 {
    text-align: center;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}

.feature-section h2 .highlight {
    position: relative;
    white-space: nowrap;
    display: inline-block;
}

.feature-section h2 .highlight::after {
    content: "";
    position: absolute;
    bottom: 0.1em;
    left: 0.2em;
    width: 120%;
    height: 0.6em;
    background-color: #affde5;
    z-index: -1;
}

.feature-section .explore-text {
    text-align: center;
    font-size: 2rem;
    max-width: 80%;
    margin: 3rem auto 5rem;
    line-height: 1.6;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 1rem; */
    align-items: center;
}

.product-image {
    /* text-align: center; */
}

.product-image img {
    max-width: 90%;
    padding-bottom: 5px;
    box-sizing: border-box;
}

.features {
    display: grid;
    gap: 30px;
}

.feature {
    display: grid;
    grid-template-columns: 20% 80%;
    gap: 1rem;
}

.feature-middle {
    margin: 4rem 0;
}

.feature-icon {
    /* min-width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #6ad7f8;
    display: flex;
    align-items: center;
    justify-content: center; */
}

.feature-icon img {
    width: 55%;
}

.feature-text h4 {
    margin: 0;
    font-size: 2.1rem;
    font-weight: 700;
}

.feature-text p {
    margin: 5px 0 0;
    font-size: 2rem;
    line-height: 1.4;
}

.product-section {
    padding: 5rem 0;
    margin: 0 auto;
    text-align: center;
}

.product-section h3 {
    font-size: 3.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-section h3 .highlight {
    position: relative;
    white-space: nowrap;
    display: inline-block;
}

.product-section h3 .highlight::after {
    content: "";
    position: absolute;
    bottom: 0.04em;
    left: 0;
    width: 115%;
    height: 0.6em;
    background-color: #d7fef2;
    z-index: -1;
}

.product-subheading {
    font-size: 2rem;
    margin-bottom: 5rem;
}

.desktop-heading {
    display: block;
}

.mobile-heading {
    display: none;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.3rem;
}

.product-card {
    background-color: #fff;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 1s;
    box-shadow: 0 0 10px rgb(0 0 0 / 12%);
}

.product-card:hover {
    -ms-transform: scale(1.02);
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.product-card img {
    width: 70%;
    height: auto;
    padding: 3.5rem 3rem 0 3rem;
}

.product-info {
    margin-top: 1.5rem;
    text-align: center;
    padding: 0 1rem;
}

.disposable-text {
    font-size: 1.6rem;
    color: #333;
}

.product-info .prod-name {
    font-size: 2.18rem;
    font-weight: 700;
}

.prod-details {
    font-size: 1.45rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 0;
}

.key-ingredients {
    font-size: 1.56rem;
    color: #333;
    margin-bottom: 2rem;
}

.product-info button {
    padding: 10px 35px;
    border: none;
    border-radius: 50px;
    background-color: #6af0e7;
    color: #000;
    font-size: 1.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 6rem;
}

.product-card:hover .product-info button {
    background-color: #ff5758;
    color: #fff;
    box-shadow: 0 0 12px rgb(0 0 0 / 30%);
}

.product-info button:hover {
    background-color: #ff5758;
    color: #fff;
}

.cta-section {
    background-color: #41c5f4;
    background-image: url('https://storage.googleapis.com/giffycms-puffedup.appspot.com/images/cta-background.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    border-radius: 35px;
    color: #222;
    padding: 10rem 10rem;
    position: relative;
}

.cta-heading {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
}

.cta-subtext {
    font-size: 2rem;
    color: #333;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons a {
    padding: 1.3rem 7rem;
    border-radius: 50px;
    font-size: 2.2rem;
    text-decoration: none;
    color: #fff;
    background-color: #ff5758;
    transition: all 0.3s ease;
}

.cta-buttons a:last-child {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-buttons a:last-child:hover {
    background-color: #fff;
    color: #ff5758;
    border: 2px solid #fff;
}

.cta-buttons a:hover {
    background-color: #fff;
    color: #ff5758;
    border: none;
    box-shadow: 0 0 12px rgb(0 0 0 / 30%);
}

@media (max-width: 768px) {

    .hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .slide-in-right {
        transform: unset;
    }

    .hero-text {
        padding: 20px;
        text-align: center;
    }

    .hero-text h1 {
        margin: 4rem 0 3rem;
    }

    .feature-section .explore-text {
        max-width: 100%;
    }

    .product-image img {
        max-width: 100%;
        padding-bottom: 5rem;
    }

    .grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature {
        display: grid;
        grid-template-columns: 20% 80%;
        gap: 1rem;
    }

    .feature-text h4 {
        /* font-size: 1rem; */
        text-align: left;
    }

    .feature-text p {
        /* font-size: 0.9rem; */
        text-align: left;
    }

    .cta-heading {
        font-size: 2.8rem;
    }

    .cta-subtext {
        /* font-size: 1rem; */
    }

    .cta-section {
        padding: 5rem 5rem;
    }

    .cta-buttons a {
        padding: 1.3rem 3rem;
    }

    .desktop-heading {
        display: none;
    }

    .mobile-heading {
        display: block;
    }
}

@media (max-width: 480px) {

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .cta-buttons a {
        padding: 12px 20px;
        font-size: 1.7rem;
    }

    .cta-buttons {
        gap: 10px;
    }

    .cta-section {
        padding: 5rem 2rem 20px;
    }

    .feature-section h2 {
        font-size: 3.5rem;
    }

    .feature-section h2 .highlight::after {
        width: 105%;
    }

    .product-section h3 {
        font-size: 3rem;
    }

    .product-section h3 .highlight::after {
        width: 105%;
    }
}