.product-description-section .tab-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 0;
    font-size: 20px;
    font-weight: 400;
    opacity: .5;
    margin-right: 2rem;
}
  
.product-description-section .tab-button.active {
    /* border-bottom: 3px solid var(--main-color); */
    opacity: 1;
}
  
.product-description-section .tab-content {
    display: none;
    margin-top: 2rem;
}

.product-description-section .tab-content p {
    font-size: 20px;
    font-weight: 300;
    color: var(--black);
    width: 90%;
}

.product-description-section .tab-content.active {
    display: block;
}

.product-description-section .note {
    font-size: 12px;
    color: gray;
    margin-top: 1.2rem;
}

.product__details-form .product-form__buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 3rem 0 1rem;
}

.product__details-form .product-form__buttons button.button:not(.button--link)::after, .shopline-element-buy-now::after {
    box-shadow: none !important;
}

.product__details-form .product-form__buttons button,
.product__details-form .product-form__buttons .product__details-payment-btn {
    width: 50%;
    height: 52px;
    border: none;
}

.product__details-form .product-form__buttons button {
    /* all: unset; */
    background-color: var(--main-color);
    color: var(--white);
    border: none !important;
    outline: none !important;
    cursor: pointer;
    width: 50%;
    height: 52px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins';
}
.product__details-form .product-form__buttons button:hover {
    background-color: #04af9a !important;
}
.product__details-form .product-form__buttons .product__details-payment-btn {
    background-color: var(--black);
    color: var(--white);
    cursor: pointer;
}

.product__details-shipping-text {
    display: flex;
    font-size: 14px;
    font-weight: 400;
    gap: 10px;
}
  