/*============================================================================================
	Start Products Area
==============================================================================================*/
.product-item {
    margin-top: 0;
    transition: all 0.3s ease;
}
.product-item .product-thumb > .yith-wcqv-button {
    display: none;
}
.product-item .product-inner {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 2px dashed #fcd7e5;
    padding: 20px 20px 24px;
    background-color: #fff;
    box-shadow: 0px 6px 16px rgba(44, 44, 84, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-item .product-inner:hover {
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: 0px 14px 28px rgba(44, 44, 84, 0.12);
}
.product-item .product-thumb {
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    background-color: #fef4f2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.product-item .product-thumb img {
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-item .product-thumb.no-image {
    background-color: #fef4f2;
}
.product-item .no-image-icon {
    display: none;
    font-size: 64px;
    color: #f7b3c9;
}
.product-item .product-thumb.no-image .no-image-icon {
    display: block;
}

/* Product details page gallery/thumbnail fallback for missing image files */
.no-image-fallback {
    position: relative;
    background-color: #fef4f2;
}
.no-image-fallback .no-image-icon {
    display: none;
    font-size: 48px;
    color: #f7b3c9;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.single-swiper-thumbs.no-image-fallback .no-image-icon {
    font-size: 24px;
}
.no-image-fallback.no-image .no-image-icon {
    display: block;
}
.product-item .product-thumb > .thumb-link,
.product-item .product-thumb .second-image {
    display: block;
    text-align: center;
    width: 100%;
    height: 100%;
}
.product-item .group-button {
    position: absolute;
    right: 10px;
    bottom: 10px;
    top: auto;
}
.product-item .kodory-product-details__short-description,
.product-item .product-inner > .group-button {
    display: none;
}
.product-item .group-button .add-to-cart,
.product-item .group-button .yith-wcwl-add-to-wishlist,
.product-item .group-button .compare-button,
.product-item .group-button .yith-wcqv-button {
    display: block;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 4px 10px 0 rgba(245, 68, 128, 0.4);
    color: #fff;
}
.product-item .group-button .add-to-cart {
    transition: all 0.25s ease 0s;
}
.product-item .group-button .yith-wcwl-add-to-wishlist {
    transition: all 0.55s ease 0s;
    background-color: #fec84e;
}
.product-item .group-button .add-to-cart::after,
.product-item .group-button .yith-wcwl-add-to-wishlist::after,
.product-item .group-button .yith-wcqv-button::after {
    content: "";
    border: 1px dashed #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    pointer-events: none;
}
.product-item .product-inner:hover .group-button .add-to-cart,
.product-item .product-inner:hover .group-button .yith-wcwl-add-to-wishlist,
.product-item .product-inner:hover .group-button .compare-button,
.product-item .product-inner:hover .group-button .yith-wcqv-button {
    transform: scale(1.1);
}
.product-item .group-button .add-to-cart:hover a,
.product-item .group-button .yith-wcwl-add-to-wishlist:hover a,
.product-item .group-button .compare-button:hover a,
.product-item .group-button .yith-wcqv-button:hover {
    color: #fff;
}
.product-item .product-info {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-item .p-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    height: 28px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 14px;
    padding: 0 12px;
    font-size: 12px;
    line-height: 28px;
    text-align: center;
    font-weight: 700;
}
.product-item .product-name {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 8px;
    margin-top: 4px;
    font-weight: 800;
    color: var(--title-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* Reserve space for 2 lines even when the title is shorter, so every
       card's price sits at the same vertical position regardless of how
       long the neighboring product's name is. */
    min-height: calc(1.3em * 2);
}
.product-item .product-name:hover {
    color: var(--primary-color);
}
.product-item .price {
    font-size: 18px;
    color: #1db6ce;
    font-weight: 700;
}
.product-item .price del {
    color: #b7bac4;
    font-weight: 500;
    margin-right: 4px;
}
.product-item .group-button a {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 47px;
}
.product-item .group-button .wishlist_button.active {
    color: #e0245e;
}

/* Product Details  */
.p-deails-bredcrumbs .menu-list {
    background: var(--offwhite-color);
    border: 1px solid #e4eaef;
    border-radius: 4px;
    display: inline-block;
    padding: 4px 8px;
    margin-top: 24px;
}
.p-deails-bredcrumbs .menu-list li {
    display: inline-block;
    margin-right: 4px;
}
.p-deails-bredcrumbs .menu-list li:last-child {
    margin: 0;
}
.p-deails-bredcrumbs li i {
    font-size: 20px;
    position: relative;
    top: 4px;
    margin-left: 3px;
    display: inline-block;
    color: #999a9a;
}
.p-deails-bredcrumbs li.active {
    color: var(--title-color);
}

.product-details {
    overflow: hidden;
    padding-top: 56px;
    padding-bottom: 80px;
}
.product-view-gallery-slider {
    margin-right: 48px;
}

.product-details .single-slider-img img {
    width: 100%;
    height: 480px;
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}
.product-details .single-slider-img:hover img {
    cursor: zoom-in;
}
.product-details .swiper-thumbs {
    margin-top: 20px;
}
.product-details .single-swiper-thumbs img {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid var(--border-color);
    cursor: pointer;
}
.product-details .swiper-slide-thumb-active img {
    border: 1px solid var(--primary-color);
}

/* Slider Controls */
.product-details .swiper-button-prev,
.product-details .swiper-button-next {
    color: #fff;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 100%;
    transition: all 0.4s ease;
}
.product-details .swiper-button-prev:hover,
.product-details .swiper-button-next:hover {
    background: var(--primary-color);
    color: #fff;
}
.product-details .swiper-button-prev:hover::before,
.product-details .swiper-button-next:hover::after {
    color: #fff;
}
.product-details .swiper-button-prev::after,
.product-details .swiper-button-next::after {
    font-size: 16px;
    font-weight: 600;
}
.product-details .swiper-slide.single-swiper-thumbs {
    width: 80px !important;
    height: 80px !important;
}
.single-product-info-top .hot-deal {
    border: 1px solid var(--alert-color);
    border-radius: 16px;
    padding: 4px 8px;
    display: inline-block;
    color: var(--alert-color);
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 6px;
}
.p-details-modal-g-details {
    margin-bottom: 16px;
}
.single-product-title {
    font-weight: 800;
    line-height: 120%;
    margin-bottom: 12px;
}
.p-details-modal-price span {
    font-weight: 700;
    font-size: 28px;
    line-height: 140%;
    color: var(--title-color);
    margin-right: 8px;
}

.p-details-modal-price del {
    font-weight: 500;
    font-size: 28px;
    line-height: 140%;
    text-decoration-line: line-through;
    color: #383838;
    margin-right: 10px;
}

.p-details-modal-price {
    display: flex;
    align-items: center;
}
.p-details-modal-price-disnt {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #383838;
    margin: 0;
}

.product__details--info__meta--list {
    font-size: 16px;
    font-weight: 500;
}
.product__details--info__meta--list:last-child {
    margin-bottom: 0;
}
.product__details--info__meta--list strong {
    color: var(--title-color);
}
.product__variant--title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--title-color);
}
.product__variant--list {
    margin-top: 16px;
}
.variant__input--fieldset input[type="radio"] + label {
    border: 1px solid var(--primary-color);
}
.variant__input--fieldset input[type="radio"] + label:hover {
    border: 1px solid transparent;
    color: #fff !important;
    background: var(--primary-color);
}
.variant__input--fieldset {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    border: none;
    margin: 0;
    padding: 0;
}

.variant__input--fieldset {
    margin-right: 10px;
}
.variant__input--fieldset input[type="radio"] {
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    position: absolute;
    height: 1px;
    width: 1px;
}
.variant__color--value.black {
    background: black !important;
}
.variant__color--value.red {
    background: red !important;
}
.variant__color--value.pink {
    background: pink !important;
}
.variant__input--fieldset.color-field input[type="radio"]:checked + label {
    border: 3px solid #fff !important;
    box-shadow: none !important;
    outline: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}
.variant__input--fieldset.color-field input[type="radio"] + label {
    border: 3px solid transparent !important;
}
.variant__input--fieldset input[type="radio"]:checked + label {
    border: 1px solid transparent;
    color: #fff;
    box-shadow: none !important;
    background-color: var(--primary-color);
}
.variant__size--value.red.btn.btn-secondary:focus {
    box-shadow: none !important;
    border: transparent;
    background: var(--primary-color);
}
.variant__input--fieldset:last-child {
    margin-right: 0;
}
.variant__color--value {
    width: 24px;
    height: 24px;
    padding: 2px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 7px;
    line-height: 1;
    cursor: pointer;
    overflow: hidden;
}
.variant__color--value:last-child {
    margin-right: 0;
}
.variant__color--value__img {
    border-radius: 50%;
}
.variant__size--value {
    width: 47px;
    height: 32px;
    line-height: 28px;
    display: inline-block;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    margin-right: 7px;
    background: transparent;
    color: var(--primary-color);
    padding: 0;
    transition: all 0.3s ease;
}
.variant__size--value:last-child {
    margin-right: 0;
}
.p-details-modal-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 60%;
    gap: 16px;
    margin-top: 32px;
}
.p-details-modal-buttons .theme-btn {
    background: var(--primary-color);
    border-radius: 4px;
    width: 180px;
    height: 46px;
    text-align: center;
    color: var(--white-color);
    line-height: 10px;
    text-decoration: none;
    padding: 8px 20px;
    border: none !important;
}

.p-details-modal-buttons .theme-btn i {
    position: relative;
    top: 4px;
    margin-right: 5px;
    font-size: 20px;
    color: #fbfcfc;
}
.p-details-modal-qty-btn .qty-count {
    width: 46px;
    height: 46px;
    background: #f544801c;
    text-align: center;
    color: var(--secondary-color);
    font-size: 20px;
    line-height: 37px;
    border: 2px solid #e4eaef;
    transition: all 0.4s ease;
    border-radius: 4px;
    padding: 0;
}
.p-details-modal-qty-btn .qty-count:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.p-details-modal-qty-btn .product-qty {
    width: 50px;
    height: 46px;
    appearance: textfield;
    text-align: center;
    font-size: 23px;
    background: transparent;
    border: none !important;
    color: #383838 !important;
    font-weight: 700;
    line-height: 34px;
    padding: 0;
}
.p-details-modal-qty-btn {
    background: var(--offwhite-color);
    display: inline-block;
    text-align: center;
    width: 180px;
    height: 46px;
    margin-top: 24px;
}
.p-details-modal-qty-btn .qty-count.qty-count--minus {
    float: left;
}
.p-details-modal-qty-btn .qty-count.qty-count--add {
    float: right;
}
.p-details-modal-qty-btn .qty-count {
    text-align: center;
    color: var(--primary-color);
    font-size: 24px;
    line-height: 52px;
}
.buy-cart-btn .theme-btn {
    background: var(--primary-color);
}
.buy-cart-btn .theme-btn:hover {
    background: transparent;
}
.p-details-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.p-details-actions .theme-btn {
    padding: 6px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
}
.p-details-actions .theme-btn i {
    position: relative;
    top: 2px;
}

.p-details-tab {
    margin-top: 40px;
}
.p-details-tab-menu {
    background: rgba(34, 87, 122, 0.06);
    padding: 0px 20px;
    margin-bottom: 32px;
    border-radius: 4px;
}
.p-details-tab-menu .list-group {
    display: flex;
    flex-direction: row;
    justify-content: left;
    margin-bottom: 0;
    padding-left: 0;
}
.p-details-tab-menu .list-group-item {
    border: none;
    color: var(--title-color);
    background: transparent;
    line-height: 120%;
    margin-right: 12px;
    padding: 16px 12px;
    position: relative;
    transition: all 0.4s ease;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}
.p-details-tab-menu .list-group-item::before {
    background: var(--primary-color);
    bottom: 0;
    content: "";
    display: inline-block;
    height: 4px;
    left: 16px;
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    left: 0;
}
.p-details-tab-menu .list-group-item.active::before {
    opacity: 1;
    visibility: visible;
}
.list-group-item + .list-group-item.active {
    margin-top: 0px;
    border-top-width: 0px;
}
.p-details-modal-des-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #383838;
    margin-bottom: 30px;
}

.p-details-modal-des-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 15px;
}

.p-details-modal-des-list li:last-child {
    margin: 0;
}

.p-details-modal-des-list li::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    background: #383838;
    border-radius: 100%;
    top: 11px;
    left: 0;
}

/* Product Video */
.product-video-overview {
    position: relative;
}
.product-video-thumb-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 4px;
}
.video-thumb-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -24px;
    margin-top: -24px;
}

.video-thumb-icon .waves-block .waves {
    position: absolute;
    width: 112px;
    height: 112px;
    opacity: 0;
    border-radius: 100%;
    animation: waves 3s ease-in-out infinite;
    right: 50%;
    bottom: 50%;
    z-index: 1;
    border: none;
    background: var(--primary-color);
    margin-right: -56px;
    margin-bottom: -56px;
    opacity: 0.4;
}
.video-thumb-icon .waves-block .wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
.video-thumb-icon .waves-block .wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.video-thumb-icon .waves-block .wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
.video-thumb-icon .video-popup {
    color: #fff;
    font-size: 20px;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    background: var(--primary-color);
    display: block;
    text-align: center;
    line-height: 52px;
    z-index: 2;
    position: relative;
}
.video-thumb-icon .video-popup:hover {
    background: #fff;
    color: var(--secondary-color);
}
.product-video-description {
    position: absolute;
    width: 100%;
    bottom: 0;
}
.product-video-thumb-title {
    color: #fff;
    background: var(--primary-color);
    border-radius: 0px 0px 4px 4px;
    padding: 17px 24px;
    text-align: center;
    font-size: 19px;
    font-weight: 600;
}

.product-video-thumb-img {
    position: relative;
    border-radius: 4px;
}
.product-video-thumb-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--title-color);
    opacity: 0.4;
    border-radius: 4px;
}

@-webkit-keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }
    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}
@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }
    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

/* Product Review */
.product-review-form {
    background: #fff;
    box-shadow: 0px 16px 48px rgba(34, 40, 49, 0.08);
    border-radius: 4px 4px 12px 12px;
    padding: 20px 24px 24px;
}

.product-review-form-head {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e9eaea;
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.product-review-form-head-icon {
    width: 72px;
    height: 72px;
    line-height: 72px;
    background: #f5f9fe;
    border-radius: 20px;
    text-align: center;
}
.product-review-form-head-icon img {
    width: 48px;
    height: 48px;
}
.product-review-form-head-content {
    margin-left: 16px;
}
.product-review-form-head-title {
    margin-bottom: 6px;
}
.product-review-form-head-text {
    line-height: 120%;
}

.product-review-form .form-group-single label {
    font-weight: 600;
    line-height: 120%;
    min-width: 132px;
}

.your-rattings-list li {
    display: inline-block;
    margin-right: 0px;
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #fea82f;
}
.your-rattings-list li i {
    position: relative;
    top: 3px;
}
.your-rattings-list li span {
    color: #000;
}
.your-rattings-list li:last-child {
    margin: 0;
}
.your-rattings-list li img {
    width: 24px;
    height: 24px;
}
.form-group-single textarea {
    background: #fff;
    border-radius: 4px;
    width: 100%;
    height: 180px;
    font-weight: 600;
    font-size: 16px;
    color: #000;
    padding: 15px 12px;
    border: 1px solid var(--border-color);
}
.form-group-single textarea:focus {
    border: 1px solid var(--primary-color);
}
.product-review-form-button {
    text-align: right;
    margin-top: 24px;
}
.product-review-form-button .theme-btn {
    padding: 16px 24px;
    border: none;
    border-radius: 6px;
    transition: all 0.4s ease;
}
.form-group-single.your-rattings {
    display: flex;
    align-items: center;
}

.form-group-single.your-opinion {
    display: flex;
    margin-top: 24px;
}

/* User Review Area */
.user-review-area {
    padding-top: 16px;
}
.user-review-info,
.user-review-reply-info {
    display: flex;
}

.user-review-info-img,
.user-review-reply-img {
    position: relative;
    width: 88px;
    height: 88px;
    line-height: 82px;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.user-review-reply-img {
    width: 56px;
    height: 56px;
    line-height: 53px;
}
.user-review-info-img img {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    object-fit: cover;
}
.user-review-reply-img img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 16px;
}
.user-review-count-list li {
    display: inline-block;
    margin-right: 0px;
}
.user-review-count-list li:last-child {
    margin: 0;
}
.user-review-count-list li i {
    font-size: 16px;
    color: #ffc107;
}
.user-review-info-data {
    margin-left: 12px;
}
.user-review-name,
.user-review-reply-company {
    font-weight: 600;
    margin-bottom: 2px;
}
.user-review-date,
.user-review-reply-date {
    font-weight: 600;
    font-size: 13px;
    line-height: 120%;
    opacity: 0.5;
    display: block;
    margin: 0;
}
.user-review-count-list {
    line-height: 16px;
    margin-top: 6px;
}
.ueser-review-text-icon i {
    font-size: 36px;
    color: var(--primary-color);
}
.ueser-review-info-text {
    margin-left: 16px;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 24px;
}
.ueser-review-text {
    margin-top: 8px !important;
}
.user-review-single {
    margin-top: 24px;
}
.user-review-reply-data {
    margin-left: 16px;
}
.user-review-reply-tag {
    font-weight: 600;
    font-size: 13px;
    line-height: 120%;
    display: block;
    margin-top: 6px;
}
.user-review-reply-tag i {
    font-size: 12px;
    margin-right: 5px;
    position: relative;
    top: 1px;
    color: var(--primary-color);
}
.ueser-review-reply-text {
    margin: 0;
    margin-top: 16px !important;
}
.user-review-reply-single {
    margin-top: 24px;
    margin-left: 16px;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 24px;
}

@media only screen and (min-width: 768px) and (max-width: 991.99px) {
    .single-product-info {
        margin-top: 40px;
    }
    .product-view-gallery-slider {
        margin-right: 0;
    }
    .product-details .single-slider-img img {
        height: auto;
    }
}

@media only screen and (max-width: 767.99px) {
    .product-item .product-thumb img {
        max-height: 100%;
    }
    .product-view-gallery-slider {
        margin-right: 0;
    }
    .p-details-modal-qty-btn {
        width: 144px;
    }
    .p-details-modal-buttons .theme-btn {
        width: 144px;
    }
    .p-details-tab-menu {
        overflow-y: scroll;
        white-space: nowrap;
        padding-bottom: 12px;
    }
    .p-details-modal-des-list li {
        font-size: 16px;
    }
    .product-review-form-head-title {
        font-size: 24px;
    }
    .form-group-single.your-opinion {
        display: block;
    }
    .product-review-form .form-group-single label {
        min-width: 100%;
        margin-bottom: 12px;
    }
    .form-group-single textarea {
        width: 100%;
        height: 140px;
    }
    .product-review-form-button .theme-btn {
        padding: 8px 16px;
    }
    .ueser-review-info-text {
        margin-top: 12px;
    }
    .single-product-info {
        margin-top: 40px;
    }
    .form-group-single.your-rattings {
        display: block;
    }
    .product-details .single-slider-img img {
        height: auto;
    }
    .product-details {
        padding-bottom: 56px;
    }
}

/*============================================================================================
	End Products Area
==============================================================================================*/
