.like-product-sec h5 {
    font-weight: 700;
    font-size: 24px;
    text-align: right;
    color: #572D01;
    margin: 3rem 0 28px;
}

.description-box {
    border: 1px solid #572D01;
    border-radius: 1.5rem;
    padding: 1.5rem 2rem;
}

.description-box h5 {
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    text-align: right;
    color: #572D01;
    margin-bottom: 1rem;
}

.description-box article {
    font-weight: 300;
    font-size: 16px;
    line-height: 34px;
    text-align: right;
    color: #000000;
}

.product-box {
    display: flex;
    gap: 1.5rem;
    border: 1px solid #E5E5E5;
    border-radius: 2.75rem;
    padding: 2.25rem;
    box-shadow: 0 8px 24px rgb(0 0 0 / 17%);
    background: #ffffff;
    margin: 3.5rem 0 3rem;
}

.product-details {
    width: 100%;
}

.product-box h1 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 42px;
    line-height: 100%;
    text-align: right;
    color: #572D01;
}

.product-box img {
    width: 100%;
    object-fit: cover;
    border-radius: 2.5rem;
}

.product-box h6,
.product-box label {
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    text-align: right;

}

.product-box label {
    display: flex;
    flex-direction: column;
    display: flex;
    flex-direction: column;
    margin-bottom: 0.75rem;
}

.product-box h6 {
    margin-bottom: 18px;
}

:focus {
    outline: 0;
}

.mydict div {
    display: grid;
    margin-top: 0.5rem;
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
}

.mydict input[type="radio"] {
    clip: rect(0 0 0 0);
    clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.mydict input[type="radio"]:checked + span {
    background: #572D01;
    z-index: 1;
    color: #FFFFFF;
}

.mydict label span {
    display: block;
    cursor: pointer;
    background: #F5EFE6;
    padding: 12px 0;
    position: relative;
    margin-left: .0625em;
    font-weight: 500;
    font-size: 16px;
    color: #000;
    text-align: center;
    transition: background-color .5s ease;
    border-radius: 0.75rem;
    width: 146px;
}

.product-details > div {
    padding: 1.5rem 0;
}

.product-details > div:not(:last-child) {
    border-bottom: 2px solid #F5EFE6;

}

.product-btn {
    border: 0;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    border-radius: 0.75rem;
    text-align: center;
}

.price-box {
    display: flex;
    gap: 2rem;
}

.price-box b {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    text-align: center;
    color: #572D01;
    padding: 1rem 18px;
    border: 1px solid #572D01;
    border-radius: 0.75rem;
}

.mySwiper-product-page-comment .swiper-slide {
    border: 1px solid #EDEDED;
    padding: 1.5rem 2rem;
    border-radius: 0.75rem;
    height: auto;
}

.mySwiper-product-page-comment .swiper-slide > div {
    gap: 0.75rem;
}

.mySwiper-product-page-comment .swiper-slide h6 {
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
    color: #41444B;
}

.mySwiper-product-page-comment .swiper-slide span {
    font-weight: 300;
    font-size: 12px;
    line-height: 24px;
    color: #7B808C;
}

.mySwiper-product-page-comment .swiper-slide p {
    font-weight: 300;
    font-size: 14px;
    line-height: 26px;
    text-align: right;
    color: #2F3136;
    margin-top: 1rem;
}

.comment-nav {
    display: flex;
    gap: 1rem;
}

.comment-nav span {
    cursor: pointer;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    display: flex;
    transition: 0.3s;
    align-items: center;
    justify-content: center;
}

.comment-nav span:hover {
    background: #d5d5d5;
    color: #ffffff;
}

.comment-btn {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.comment-btn .main-btn {
    width: fit-content;
    padding: 0.75rem 2rem;
}

.comment-nav .disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
}

.prev-icon {
    transform: rotate(180deg);
}

.comment-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.comment-modal.active {
    display: block;
}

.comment-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.comment-modal-box {
    position: relative;
    max-width: 500px;
    width: 90%;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin: 10vh auto;
    animation: modalFadeUp 0.3s ease;
}

@keyframes modalFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comment-modal-close {
    position: absolute;
    top: 12px;
    left: 12px;
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-family: inherit;
    resize: none;
}

.comment-form .main-btn {
    border: 0;
}

.comment-modal .comment-modal-box h5 {
    margin: 0 0 1rem;
}

.qty-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background: #f7f7f7;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    border-radius: 6px;
}

.qty-btn:hover {
    background: #eee;
}

.qty-input {
    width: 40px;
    height: 32px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}
.select-label {
    display: block;
}

.weight-select {
    width: 100%;
}

.select2-selection__rendered {
    line-height: 42px !important;
}

.select2-selection__arrow {
    height: 42px !important;
}

.product-details .select2-container--default .select2-selection--single {
    height: 48px;
    background-color: #fff;
    border: 1px solid #572D01;
    border-radius: 12px;
}


label.qty-label {
    gap: 1rem;
    margin-right: 1rem;
}

.a-product-container {
    border: 1px solid #BABABA;
    border-radius: 1rem;
}

.d-flex.flex-column.w-50 {
    min-width: 50%;
}