.shop-by-age {
    text-align: center;
    font-size: 1.625rem;
    font-weight: 600;
    color: #262831;
}

.apple-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;

    .apple-button {
        position: relative;

        a:hover {
            img {
                filter: brightness(0) saturate(100%) invert(16%) sepia(92%) saturate(4278%) hue-rotate(346deg) brightness(93%) contrast(90%);
            }

            span {
                color: #fff;
            }
        }

        span {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            font-size: 25px;
            font-weight: 600;
            color: #262831;
        }
    }
}

.cloud-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;

    a:hover {
        text-decoration: none;

        .cloud-button-text {
            color: #000;
        }

        .cloud-button {
            .cloud-svg-default {
                transform: translate(-50%, -50%) scale(0) rotate(-90deg);
            }

            .cloud-svg-hover {
                transform: translate(-50%, -50%) scale(1) rotate(0deg);
            }
        }
    }

    .cloud-button {
        position: relative;
        /* flex: 1; */

        svg {
            max-width: 100%;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            transition: transform 0.3s ease;
        }

        .cloud-svg-hover {
            transform: translate(-50%, -50%) scale(0) rotate(90deg);
        }

        .cloud-svg-default {
            transform: translate(-50%, -50%) scale(1) rotate(0deg);
        }

        img {
            position: relative;
            /* width: 100%; */
            height: 320px;
            width: 380px;
            max-width: 100%;
            object-fit: contain;
        }
    }

    .cloud-button-text {
        font-size: 26px;
        font-weight: 600;
        color: #262831;
        text-align: center;
        margin-top: 12px;
    }
}

.testimonials-grid {
    display: flex;
    gap: 16px;

    p {
        margin-bottom: 24px;
    }

    .testimonial-box {
        position: relative;

        .testimonial-content {
            position: absolute;
            top: 0;
            padding: 32px 32px 0 32px;
            color: #262831;
            font-size: 14px;

            .testimonial-content-name {
                font-weight: 700;
            }
        }

        img {
            width: 100%;
            height: 100%;
            border-radius: 16px;
            object-fit: cover;
        }
    }
}

.promotions-grid {
    display: flex;
    flex-direction: column;
    column-gap: 16px;
    row-gap: 16px;

    .promotion-box {
        position: relative;

        .promotion-content {
            position: absolute;
            top: 0;
            left: 5%;
            width: 50%;
            top: 50%;
            transform: translate(0, -50%);

            p {
                margin-bottom: 24px;
            }

            &.promotion-content-small {
                width: 55%;

                .promotion-content-title {
                    font-size: 31px;
                    font-weight: 600;
                    color: #262831;
                    line-height: 36px;
                }

                p {
                    color: #262831;
                }
            }
        }
    }

    img {
        width: 100%;
        border-radius: 16px;
        /* height: 100%;
        border-radius: 16px; */
    }
}

.shop-category-section {
    margin-top: 8px;
    margin-bottom: 24px;

    .shop-category-grid {
        display: grid;
        gap: 8px;
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 1fr;
    }
}

.shop-category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #D6D8E1;
    background: #EDEDF1;
    text-decoration: none;
    color: #262831;
    overflow: hidden;
}

.shop-category-card__text {
    display: flex;
    flex-direction: column;
}

.shop-category-card__eyebrow {
    font-size: 0.875rem;
}

.shop-category-card__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 23px;
}

.shop-category-card__icon {
    align-self: flex-end;
    z-index: 0;
}

.shop-category-card__icon-apple {
    position: absolute;
    bottom: 0;
    right: 0;
}

.featured-products-title {
    font-size: 1.8125rem;
    font-weight: 600;
    color: #262831;
    margin-bottom: 24px;
}

.testimonials-title {
    font-size: 1.8125rem;
    font-weight: 600;
    color: #262831;
    margin-bottom: 24px;
}

.blog-post {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    img {
        border: none;
        padding: 0;
        border-radius: 16px;
        width: 100%;
        max-height: none;
    }
}

@media (min-width: 1440px) {
    .promotions-grid {
        display: grid;
        grid-template-columns: calc(68.1% - 8px) calc(31.9% - 8px);
        grid-template-rows: repeat(2, 1fr);
        column-gap: 16px;
        row-gap: 16px;
        min-width: 1078px;

        .promotion-box {
            position: relative;

            .promotion-content {
                position: absolute;
                top: 0;
                left: 7.5%;
                width: 50%;
                top: 50%;
                transform: translate(0, -50%);

                p {
                    margin-bottom: 24px;
                }

                &.promotion-content-small {
                    width: 55%;

                    .promotion-content-title {
                        font-size: 31px;
                        font-weight: 600;
                        color: #262831;
                        line-height: 36px;
                    }

                    p {
                        color: #262831;
                    }
                }
            }
        }

        img {
            height: 100%;
            border-radius: 16px;
            object-fit: cover;
        }
    }

    .shop-by-age {
        font-size: 2.4375rem;
        font-weight: 600;
    }

    .cloud-buttons {
        flex-direction: row;

        .cloud-button-text {
            font-size: 39px;
            font-weight: 600;
            margin-top: 24px;
        }
    }

    .featured-products-title {
        font-size: 3.0625rem;
        font-weight: 600;
        margin-bottom: 48px;
    }

    .testimonials-title {
        font-size: 3.0625rem;
        font-weight: 600;
        max-width: 687px;
        margin-bottom: 48px;
    }
}

@media (max-width: 1439.98px) {
    .testimonials-grid {
        flex-direction: column;
    }
}