.product-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.product-image {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px var(--gray-dark);
    background: var(--gray);
    max-height: 391px;
}

.product-name {
    padding: 0 12px;
}

.price {
    margin-top: 24px;
    padding: 12px 24px;
    background: var(--red-light);
    border-radius: 6px;
    text-align: center;
    line-height: 24px;
}

.buttons {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.description {
    margin-top: 40px;
    width: 50%;
}

.description a {
    color: var(--blue);
}

/* Button */
.qn__wrapper {
    width: 100%;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    padding: 4px 4px 4px 24px;
    background: var(--gray);
    border-radius: 9999px;
    border: 2px solid var(--gray);
    transition: all 0.2s ease-in-out;
}

.qn__wrapper:hover {
    background: white;
}

.qn__wrapper.active {
    background: white;
    color: var(--red);
}

/* Arrow */
.arrow {
    border-radius: 9999px;
    padding: 12px 28px;
    background: white;
}

.qn__wrapper .arrow path {
    transition: all 0.2s ease-in-out;
}

.qn__wrapper:hover .arrow path {
    stroke: var(--red);
}

.qn__wrapper.active .arrow path {
    stroke: var(--red);
}

.qn__wrapper .arrow svg {
    transition: transform 0.2s ease-in-out;
}

.qn__wrapper.active .arrow svg {
    transform: rotate(-90deg);
}

/* Slot */
.inner__wrapper {
    padding-left: 1rem;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    display: grid;
    grid-template-rows: 0fr;
}

.inner__wrapper.active {
    grid-template-rows: 1fr;
}

.inner {
    overflow: hidden;
    padding-top: 2px;
}

.questions__wrapper {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.question__wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.description ul {
    list-style-type: disc;
    padding-inline-start: 30px;
    list-style-position: inside;
}

@media (max-width: 1439px) {
    .product-wrapper {
        flex-direction: column;
    }

    .product-name {
        padding: 0;
    }

    .buttons {
        flex-direction: column;
    }

    .description {
        width: auto;
    }

    .questions__wrapper {
        flex-direction: column;
    }
}
