.ux-quantity {
	display: none !important;
}
.nmn-product-content-tab :is(h1, h2, h3, h4, h5, h6, .heading-font) {
	color: #000000;
}
.product-images-gallery .product-image-item img {
    max-width: 100%;
    max-height: 580px;
    border-radius: 16px;
    min-height: auto;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.product-images-gallery .product-image-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.product-images-gallery .product-image-item:not(:first-child) {
	margin-top: 15px;
}

.product-images-gallery .product-image-item:hover img {
    transform: scale(1.2);
}

.product-images-gallery {
	height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    padding-right: 0;
    max-height: 500px;
    scrollbar-color: rgba(92, 92, 133, .5) rgba(42, 42, 69, .2);
    scrollbar-width: thin;
	border-radius: 20px;
}


.product-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 1;
}
.product-summary {
	background-color: #fff;
    border-radius: 20px;
	padding-bottom: 0;
}
.product-summary form {
	margin-bottom: 0;
}
.product-summary .item-detail .ai-types {
    color: #666666;
    font-size: 12px;
}

.product-summary .item-detail .product_title {
    font-size: 32px;
    margin: 0 0 16px;
    color: #000000;
    font-weight: 700;
}

.product-summary .item-detail .product-stats {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    font-size: 14px;
    color: #000000;
    text-align: center;
}

.product-summary .profile-basic-info .profile-stats {
    display: flex;
    gap: 10px;
    margin: 0;
    font-size: 14px;
    color: #000000;
    text-align: center;
}

.product-summary .profile-basic-info .profile-stats .rating-stas {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #000000;
}
.product-summary .profile-basic-info .profile-stats i, .product-summary .item-detail .product-stats i {
	color: var(--primary-color);
}
.product-summary .profile-basic-info .star-rating {
    margin: 0;
}



/* Custom tooltip styles */
.nmn-tooltip {
    position: relative;
    cursor: help;
}

.nmn-tooltip::before {
    content: attr(title);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.nmn-tooltip::after {
    content: '';
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

.nmn-tooltip:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.nmn-tooltip:hover::after {
    opacity: 1;
    visibility: visible;
}

.product-summary .author-box img {
    width: 19px;
    height: 19px;
    border-radius: 99%;
}

.product-summary .author-box {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    background-color: #fff;
    width: max-content;
    padding: 3px 10px 3px 5px;
    border-radius: 20px;
}

.product-summary .author-box a {
    color: #000;
    font-size: 12px;
    font-weight: 400;
}

.product-summary .profile-basic-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.top-seller-badge {
    background-color: #cbf4c9;
    color: #0e6245;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
}

.top-seller-badge .badge-text {
    font-size: 12px;
    margin-right: 4px;
    font-style: normal;
    font-weight: 600;
}

/* Product description toggle styles */
.product-description-wrapper {
    margin: 20px 0 0 0;
    position: relative;
    max-width: 100%;
}

.product-description-content {
    color: #000000;
    line-height: 1.3em;
    max-height: 120px;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    display: block;
    font-size: 15px;
    background: none;
}

.product-description-content.expanded {
    max-height: none;
    padding-right: 0;
}


.product-description-toggle {
  color: var(--primary-color);
    cursor: pointer;
    font-size: 14px;
	width: 100%;
}

.product-description-content.expanded+.product-description-toggle {
    position: static;
    background: none;
    padding: 0;
    width: auto;
    text-align: left;
    border-radius: 0;
    box-shadow: none;
    color: #ed7400;
}

.product-description-content>p {
    margin-bottom: 0;
}

.product-description-toggle:hover {
    color: var(--primary-color);
}

.product-description-toggle:focus {
    outline: none;
}

.product-summary .quantity {
    display: none;
}

.product-summary .price-wrapper bdi {
    font-size: 28px;
    color: red;
}

.product-summary .price-wrapper del bdi {
    font-size: 20px;
    color: red;
    opacity: 0.5;
}

.product-summary .price-wrapper .product-page-price {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
}
.product-cart {
	padding: 10px 0 0 0;
}
.product-cart button {
    flex: unset;
}
.product-summary .price-wrapper .product-page-price {
	color: red;
}
.product-cart .buy_now_button {
    font-weight: 400;
    background-image: linear-gradient(122deg, #ed7400, #f16000 62%, #f16000);
    color: #fff;
    font-size: 16px;
    display: inline-flex;
    border-radius: 8px;
    padding: 0 15px;
    cursor: pointer;
    transition: opacity .25s ease;
    margin: 0 !important;
    min-height: unset;
    height: unset;
}
.nmn-product-tabs-custom {
	background-color: #ffffff;
    border-radius: 16px;
    padding: 20px;
    color: #000000;
    margin-bottom: 20px;
}
.nmn-product-tabs-custom .nmn-product-content-tab ul {
    margin-left: 25px;
}
.variations label, .variations .ux-swatch__text {
    color: #000000;
}
.woocommerce-variation-price bdi {
    color: red;
}
.product-page-price, .variations .reset_variations, .star_box_left, .star-average, .woocommerce-noreviews, .devvn_cmt_list {
     color: #000000;
}

.product-cart .single_add_to_cart_button {
    border: 1px solid rgba(255, 255, 255, .3);
    color: #ffffff;
    background-image: none;
    width: max-content;
    border-radius: 8px;
}

.product-cart .single_add_to_cart_button i {
    margin: 0;
}

.product-summary .note {
    font-size: 12px;
    opacity: .6;
    margin-top: 16px;
    font-style: italic;
    color: #000000;
}

.product-sidebar-custom {
    background-color: #ffffff;
    position: sticky;
    top: 190px;
}

.product-sidebar-custom .product_title {
    font-size: 18px;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 0;
    font-weight: bold;
    padding: 0 32px;
}

.product-sidebar-custom .product-summary {
    padding: 0 32px;
    color: #000000;
	background-color: unset;
	margin-bottom: 10px;
}

.nmn-user-profile-card {
    border-bottom: 1px dashed #e1e1e1;
    margin-bottom: 25px;
}

.product-sidebar-custom .product-summary .price-wrapper bdi {
    font-size: 20px;
}

.product-sidebar-custom .product-summary .price-wrapper del bdi {
    font-size: 18px;
}

.product-footer .woocommerce-tabs {
    border: none;
    padding: 0;
    color: #ffffffd8;
}
.product-footer .product-small .product-title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
.nmn-product-reviews-tab {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 20px;
}
.product-sidebar-custom .nmn-user-profile-intro, .product-sidebar-custom .nmn-user-profile-joined, .product-sidebar-custom .nmn-user-profile-name a {
	color: #000000;
}
.product-sidebar-custom .nmn-user-profile-intro-toggle, .product-sidebar-custom .nmn-user-profile-followers, .product-sidebar-custom .nmn-user-profile-rank {
	color: #000000 !important;
}
.nmn-product-reviews-tab .woocommerce-Reviews-title,
.nmn-product-reviews-tab strong.woocommerce-review__author,
.nmn-product-reviews-tab .devvn_prod_cmt>strong,
.devvn_cmt_radio label span,
.nmn-product-reviews-tab .devvn_review_mid .description {
    color: #000000;
}
.devvn_review_bottom .reply a, .devvn_review_bottom a {
    color: #999;
}
button#devvn_cmt_submit, button#devvn_cmt_replysubmit {
    background-color: #ed7400;
    color: #000000;
}
.product-gallery-slider img {
	height: 500px;
	object-fit: contain;
}
.product-gallery > .row .woocommerce-product-gallery {
	background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
}
.badge-container {
	display: none;
}
.product-cart .nmn-button-primary {
	border-radius: 8px;
}
.devvn_prod_cmt {
	display: none;
}
@media only screen and (max-width: 48em) {

    /*************** ADD MOBILE ONLY CSS HERE  ***************/
    .product-summary .profile-basic-info {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }

    .product-footer > .container {
        padding: 0 16px;
    }

    div#tab-reviews {
        margin: 0;
    }

    .product-sidebar-custom .product-summary,
    .product-sidebar-custom .product_title {
        padding: 0 10px;
    }

    .product-sidebar-custom .product-summary .price-wrapper bdi {
        font-size: 18px;
    }
    .product-main {
        padding-bottom: 0;
    }
    .product-sidebar-custom {
		position: unset;
        margin-top: 20px;
    }
	.product-main .product-summary {
		margin: 30px 15px 15px 15px;
	}
	#reviews{
		margin-bottom: 0 !important;
	}
	.nmn-product-reviews-tab {
		margin-bottom: 20px;
	}
}