main-product-gift {
    margin: 1rem 0;

    & h3 {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 0.5rem;
    }

    & .main-product-gift-box {
        display: flex;
        border: 2px solid #e6e6e6;
        border-radius: 4px;
    }

    & .main-product-gift-box--feature-img-container {
        flex: 1 0 170px;
        max-width: 170px;

        @media(max-width: 1100px) {
            background-color: #f0efeb;
            display: flex;
            flex-direction: column;
            justify-content: center;

            flex: 1 0 150px;
            max-width: 150px;
        }


        & .main-product-gift-box--feature-img {
            width: 100%;
            display: block;
            object-fit: cover;
            border-radius: 4px;

            @media(min-width: 1100px) {
                height: 100%;
            }
        }
    }


    & .main-product-gift-box--product {
        display: flex;
        padding: 1rem;

        @media(max-width: 1100px) {
            flex-direction: column;
        }

        & .main-product-gift-box--product-info {
            flex: 1 0 60%;

            & .gift-product--title {
                font-size: 1.6rem;
                font-weight: bold;

                @media(max-width: 1100px) {
                    font-size: 1.4rem;
                }
            }

            & .gift-special-price-offer {
                display: flex;
                gap: 5px;
                margin-bottom: 5px;

                @media(max-width: 1100px) {
                    font-size: 1.2rem;
                }

                & .saving-percentage {
                    color: var(--color-orange);
                    margin-left: 5px;
                }
            }

            & .metafield-rich_text_field {
                & p {
                    font-size: 1.4rem;
                }

                @media(max-width: 1100px) {
                    display: none;
                }
            }

            & .gift-swatches {
                margin-top: 10px;

                & div {
                    display: flex;
                    align-items: center;
                    gap: 5px;
                    margin-bottom: 10px;
                }

                & .gift-swatch {
                    display: block;
                    width: 20px;
                    height: 20px;
                }

                & span {
                    flex: 1 0 auto;
                    font-size: 1.2rem;

                    @media(min-width: 700px) {
                        flex: 1 0 30%;
                    }
                }
            }
        }

        & .gift-atc {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            flex: 1 0 80px;

            & button {
                display: block;
                background-color: var(--color-orange);
                color: white;
                font-size: 1.4rem;
                padding: 0.5rem 2rem;
                border-radius: 18px;
                cursor: pointer;

                @media(max-width: 1100px) {
                    width: 100%;
                }
            }

            & span {
                display: block;
                font-size: 1.2rem;
                margin-top: 1rem;
                color: rgba(var(--color-foreground), 0.5)
            }
        }

    }
}