/**
 * Watson WooCommerce custom styles
 */

/* Product catalog styles */
body .watson-product-catalog {
    margin-bottom: 100px !important;
    padding: 0 15px !important;
}


/* Стили для обертки фильтров */
.watson-shop-filters-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
}

.watson-shop-filters-wrapper .woocommerce-result-count {
    margin: 0;
    padding: 0;
    float: none !important;
}

.watson-shop-filters-wrapper .woocommerce-ordering {
    margin: 0;
    padding: 0;
    float: none !important;
}

@media (max-width: 767px) {
    .watson-shop-filters-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .watson-shop-filters-wrapper .woocommerce-ordering {
        margin-top: 15px;
        width: 100%;
    }
}

.watson-product-catalog .watson-product-catalog,
.watson-product-catalog .woocommerce-ordering{
    float: none !important;
}

/* WooCommerce template overrides */
body .watson-products-grid {
    display: grid !important;
    gap: 30px !important;
    list-style: none !important;
    padding: 0 !important;
    width: 100%;
}

/* Динамическое количество колонок на основе columns-X */
body .watson-products-grid.columns-1 {
    grid-template-columns: repeat(1, 1fr) !important;
}

body .watson-products-grid.columns-2 {
    grid-template-columns: repeat(2, 1fr) !important;
}


 .watson-products-grid.columns-3 {
    grid-template-columns: repeat(3, 1fr) !important;
}


@media (max-width: 1320px) {

html body .watson-products-grid.columns-3 {
    grid-template-columns: repeat(2, 1fr) !important;
}
    
}


@media (max-width: 690px) {

html body .watson-products-grid.columns-4,
    html body .watson-products-grid.columns-3,
    html body .watson-products-grid.columns-2{
    grid-template-columns: repeat(1, 1fr) !important;
}
    
}

body .watson-products-grid.columns-4 {
    grid-template-columns: repeat(4, 1fr) !important;
}

body .watson-products-grid.columns-5 {
    grid-template-columns: repeat(5, 1fr) !important;
}

body .watson-products-grid.columns-6 {
    grid-template-columns: repeat(6, 1fr) !important;
}


/**
 * WooCommerce Product Grid Widget Styles
 */

/* Общие стили для сетки продуктов */
.ws-woo-feed {
    display: flex;
    flex-wrap: wrap;
}

/* Стили для категорий продуктов */
.ws-woocommerce-categories-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 30px;
}

.ws-woocommerce-product-category {
    display: flex;
    flex-wrap: wrap;
    padding: 0 15px 0 0px;
    margin-bottom: 30px;
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .ws-woocommerce-product-category {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .ws-woocommerce-product-category {
        width: 100%;
    }
}

/* Стили для сетки продуктов */
body .watson-products-grid.columns-3 {
    grid-template-columns: repeat(3, 1fr) !important;
    display: grid !important;
    grid-gap: 30px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Обёртка для продуктов */
.ws-products-wrapper {
    width: 100%;
    display: block;
    margin-top: 30px;
    position: relative;
}

/* Стили для отдельных продуктов в сетке */
.ws-woocommerce-product-category .product-category {
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.ws-woocommerce-product-category .product-category a {
    text-decoration: none;
    color: inherit;
    display: block;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ws-woocommerce-product-category .ws-product-media {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.ws-woocommerce-product-category .ws-product-media img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    display: block;
    border-radius: 8px 8px 0 0;
}

.ws-woocommerce-product-category .product-category:hover .ws-product-media img {
    transform: scale(1.05);
}

.ws-woocommerce-product-category .ws-product-content {
    padding: 20px;
    text-align: center;
}

.ws-woocommerce-product-category .ws-product-title {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    color: #333;
}

.ws-woocommerce-product-category .ws-product-title a {
    color: #222;
    text-decoration: none;
    box-shadow: none;
    background: none;
    transition: color 0.3s ease;
    background-color: var(--color-bg-woo);
}

body.woocommerce-page {
    --color-bg-woo: var(--color-contrast-lower);
    --color-bg-woo-white: var(--color-bg);
}

.ws-woocommerce-product-category .ws-product-title a:hover {
    color: #ff6c00;
}

.ws-woocommerce-product-category .product-category.first {
    margin-right: 10px;
}

.ws-woocommerce-product-category .product-category.last {
    margin-left: 10px;
}

/* Стили для сетки продуктов */
body .watson-products-grid.columns-3 {
    grid-template-columns: repeat(3, 1fr) !important;
    display: grid !important;
    grid-gap: 30px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Обёртка для продуктов */
.ws-products-wrapper {
    width: 100%;
    display: block;
    margin-top: 30px;
    position: relative;
}

/* Стили для отдельных продуктов в сетке */
body .watson-products-grid.columns-3 .ws-product {
    margin: 0 !important;
    width: 100% !important;
    padding: 0 !important;
}

/* Скрываем стандартные стили для категорий в сетке продуктов */
body .watson-products-grid .product-category {
    display: none !important;
}

body .watson-products-grid:before {
    display: none;
}

/* Стили для продуктов */
.ws-woo-feed .ws-product {
    position: relative;
    margin-bottom: 0px;
}

.ws-woo-feed .ws-product-media {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #f5f5f5;
    width: 100%;
    text-align: center;
    padding: 25px;
}

.ws-woo-feed .ws-product-media img {
    width: 100%;
    max-width: 90%;
    height: auto;
    transition: transform 0.5s ease;
    mix-blend-mode: darken;
    object-fit: contain;
}

.ws-woo-feed .ws-product:hover .ws-product-media img {
    transform: scale(1.05);
}

.ws-woo-feed .ws-product-content {
    position: relative;
    padding: 15px 0;
}

.ws-product .ws-product-link {
    margin-left: auto;
    margin-right: 0;
    position: absolute;
    top: -61px;
    width: 180px;
    height: 88px;
    margin: auto;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ws-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ws-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ws-flex-align: center;
    align-items: center;
    border-radius: 45px;
}

.ws-product .ws-product-link .ws-product__mask {
    width: 100%;
    height: 88px;
    position: absolute;
    top: -1pt;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
    background: #fff;
}

.ws-product .ws-product-link .ws-product__mask .ws-product__mas-left {
    padding: 0;
    margin-top: 0;
    height: auto;
    width: 150px;
    position: absolute;
    left: -70px;
    top: -1px;
}

.ws-product .ws-product-link .ws-product__mask .ws-product__mas-right {
    padding: 0;
    margin-top: 0;
    height: auto;
    width: 150px;
    position: absolute;
    right: -70px;
    left: auto;
    top: -1px;
}

.watson-products-grid.columns-3 .ws-product-link {
    top: -59px;
}

.watson-products-grid.columns-3 .ws-product .ws-product-link {
    width: 130px;
    height: 84px;
}

.watson-products-grid.columns-3 .ws-product .ws-product-link a {
    width: 170px;
}

.watson-products-grid.columns-3 .ws-product-link .ws-product__mask .ws-product__mas-left {
    left: -66px;
    top: -2px;
}

.watson-products-grid.columns-3 .ws-product-link .ws-product__mask .ws-product__mas-right {
    right: -66px;
    top: -2px;
}

.watson-products-grid.columns-3 .ws-product-link span {
    font-size: 12px;
}

.watson-products-grid.columns-3 .ws-product-link svg {
    width: 30px;
}

.watson-products-grid.columns-3  .ws-product-link a {
    height: 50px;
}

.columns-4 .ws-product-link span{
    display: none;
}

.watson-products-grid.columns-4 .ws-product-link {
    top: -59px;
}

.watson-products-grid.columns-4 .ws-product .ws-product-link {
    width: 130px;
    height: 84px;
}

.watson-products-grid.columns-4 .ws-product .ws-product-link a {
    width: 170px;
}

.watson-products-grid.columns-4 .ws-product-link .ws-product__mask .ws-product__mas-left {
    left: -66px;
    top: -2px;
}

.watson-products-grid.columns-4 .ws-product-link .ws-product__mask .ws-product__mas-right {
    right: -66px;
    top: -2px;
}

.watson-products-grid.columns-4 .ws-product-link span {
    font-size: 12px;
}

.watson-products-grid.columns-4 .ws-product-link svg {
    width: 30px;
}

.watson-products-grid.columns-4  .ws-product-link a {
    height: 50px;
}

.ws-product .ws-product-link svg {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 40px;
    margin: 0;
}

.ws-product .ws-product-link .button svg path {
    fill: #fff;
}

.ws-product .ws-product-link a.add_to_cart_button, .ws-product .ws-product-link a.added_to_cart {
    position: absolute;
    display: flex;
    z-index: 2;
    justify-content: center;
}

.ws-product .ws-product-link span{
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    text-transform: uppercase;
    margin-right: 5px;
    position: relative;
    top: 0px;
}

.ws-product .ws-product-link a {
    position: relative;
    display: block;
    height: 60px;
    font-size: 0;
    width: 210px;
    border-radius: 40px !important;
    background-color: #f2480c;
    -webkit-transition: background-color .5s cubic-bezier(.25,0,.25,1), -webkit-transform .3s cubic-bezier(.25,0,.25,1);
    transition: background-color .5s cubic-bezier(.25,0,.25,1), -webkit-transform .3s cubic-bezier(.25,0,.25,1);
    transition: background-color .5s cubic-bezier(.25,0,.25,1), transform .3s cubic-bezier(.25,0,.25,1);
    transition: background-color .5s cubic-bezier(.25,0,.25,1), transform .3s cubic-bezier(.25,0,.25,1), -webkit-transform .3s cubic-bezier(.25,0,.25,1);
}

.ws-woo-feed .ws-product-link a.button svg {
   margin-left: 3px;
    margin-right: 7px;
}

.watson-products-grid.columns-3 .ws-product-link svg.addcart{
    display: none !important;
}

.ws-woo-feed .ws-product-link a.button:hover {
    background-color: #333;
}

.ws-woo-feed .ws-product__mask {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: -5px;
}

.ws-woo-feed .ws-product__mask svg {
    fill: #fff;
}

.ws-woo-feed .ws-product-title {
    font-size: 20px;
    margin: 20px 0 10px;
    font-weight: 600;
    text-align: center;
}

.ws-woo-feed .ws-product-title a {
    text-decoration: none;
    color: inherit;
}

.ws-woo-feed .ws-product-cat {
    font-size: 14px;
    margin-bottom: 10px;
    color: #777;
    text-align: center;
}

.ws-woo-feed .ws-product-cat a {
    text-decoration: none;
    color: inherit;
}

.ws-woo-feed .ws-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ws-woo-feed .ws-product-price {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

.ws-woo-feed .ws-product-price del {
    color: #777;
    margin-right: 5px;
    font-weight: 400;
}

.ws-woo-feed .ws-product-price ins {
    text-decoration: none;
}

/* Адаптивность */
@media (max-width: 767px) {
    .ws-woocommerce-product-category .product-category {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .ws-woo-feed .col-sm-6 {
        width: 100%;
    }
}

/* Лайаут страницы магазина */
.watson-shop-layout {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.watson-shop-container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.watson-shop-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

.watson-shop-sidebar {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

.watson-shop-sidebar-wrap{
    position: sticky;
    top: 50px;
    margin-bottom: 100px;
}

/* Лайаут с сайдбаром справа */
@media (min-width: 992px) {
    .watson-sidebar-right .watson-shop-content {
        flex: 0 0 75%;
        max-width: 75%;
        order: 1;
    }
    
    .watson-sidebar-right .watson-shop-sidebar {
        flex: 0 0 25%;
        max-width: 25%;
        order: 2;
    }
    
    /* Лайаут с сайдбаром слева */
    .watson-sidebar-left .watson-shop-content {
        flex: 0 0 75%;
        max-width: 75%;
        order: 2;
    }
    
    .watson-sidebar-left .watson-shop-sidebar {
        flex: 0 0 25%;
        max-width: 25%;
        order: 1;
    }
}

/* Стили для сайдбара */
.watson-shop-sidebar .widget {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #fff;
    border-radius: 0;
    border: 1px solid #eee;
}

.watson-shop-sidebar .widget-title {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-bottom: 11px;
    border-bottom: 1px solid #eee;
}



.watson-shop-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.watson-shop-sidebar li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.watson-shop-sidebar li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.watson-shop-sidebar a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
    display: block;
}

.watson-shop-sidebar a:hover {
    color: #f2480c;
}

.watson-shop-sidebar .woocommerce-product-search {
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.watson-shop-sidebar .woocommerce-product-search:hover,
.watson-shop-sidebar .woocommerce-product-search:focus-within {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Скрываем текст в кнопке поиска */
.watson-shop-sidebar .woocommerce-product-search button[type="submit"] {
    font-size: 0;
    padding: 0 15px;
    position: relative;
    border: none;
    cursor: pointer;
}

.watson-shop-sidebar .woocommerce-product-search button[type="submit"]::before {
    content: '\f002';
    font-family: 'FontAwesome';
    font-size: 16px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.watson-shop-sidebar .woocommerce-product-search .search-field {
    flex: 1;
    font-size: 14px;
    background-color: #fff;
    color: #333;
    outline: none;
    transition: background-color 0.3s ease;
    border: 1px solid #eee;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.watson-shop-sidebar .woocommerce-product-search .search-field:focus {
    background-color: #fff;
}

.watson-shop-sidebar .woocommerce-product-search button {
    border: none;
    background-color: #f2480c;
    color: #fff;
    padding: 0 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.watson-shop-sidebar .woocommerce-product-search button:hover {
    background-color: #d93c00;
}

@media (max-width: 767px) {
    .watson-shop-sidebar .woocommerce-product-search {
        flex-direction: column;
    }
    
    .watson-shop-sidebar .woocommerce-product-search .search-field {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .watson-shop-sidebar .woocommerce-product-search button {
        width: 100%;
        padding: 12px;
    }
}

/* Single product page */
body .watson-single-product {
    margin-bottom: 50px !important;
}

body .watson-product-gallery-wrapper {
    grid-column: 1 !important;
    position: relative;
}

body .watson-product-summary {
    grid-column: 2 !important;
}

body .watson-product-tabs-wrapper {
    grid-column: 1 / span 2 !important;
    margin-top: 30px !important;
}

body .watson-product-additional-info {
    margin-top: 20px !important;
    padding-top: 20px !important;
    border-top: 1px solid #ddd !important;
}

/* Responsive styles */
@media (max-width: 991px) {
    body .watson-products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }
    
    body .watson-single-product {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    body .watson-product-gallery-wrapper,
    body .watson-product-summary,
    body .watson-product-tabs-wrapper {
        grid-column: 1 !important;
    }
}

@media (max-width: 768px) {
    body .watson-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    body .ws-product-title {
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    body .watson-products-grid {
        grid-template-columns: 1fr !important;
    }
}

.woocommerce .product-category {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ws-inline-flexbox;
    display: inline-flex;
    width: auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ws-flex-align: center;
    align-items: center;
    height: 45px;
    -webkit-flex-shrink: 0;
    -ws-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    border-radius: 40px;
    background-color: #f5f5f5;
}

.woocommerce .product-category .ws-product-media {
    position: absolute;
    left: 0;
    background-color: #f5f5f5;
    border-radius: 40px;
    overflow: hidden;
}

.woocommerce .product-category .ws-product-media img {
    width: 60px;
    border-radius: 40px;
    height: 60px;
    object-fit: cover;
    border: 3px solid #fff;
}

.woocommerce .product-category .ws-product-content {
    margin-left: calc(48px + 7pt);
}

.woocommerce .product-category .ws-product-content .ws-product-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ws-flexbox;
    display: flex;
    font-size: 16px;
    color: red;
    margin-right: 4pt;
    -webkit-transition: red .3s var(--ease-in-out);
    transition: red .3s var(--ease-in-out);
}

form .orderby.watson-orderby {
    border: 1px solid #eee;
    display: block;
    color: #222;
    width: 100%;
    border-radius: 40px;
    padding: .5em 1.2em .5em 1.2em;
    height: 45px;
    margin-top: 2pt;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: 0 0;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: calc(100% - 10px);
    background-position-y: 50%;
    -webkit-transition: border 150ms var(--ease-in-out), -webkit-box-shadow 150ms var(--ease-in-out);
    transition: border 150ms var(--ease-in-out), -webkit-box-shadow 150ms var(--ease-in-out);
    transition: box-shadow 150ms var(--ease-in-out), border 150ms var(--ease-in-out);
    transition: box-shadow 150ms var(--ease-in-out), border 150ms var(--ease-in-out), -webkit-box-shadow 150ms var(--ease-in-out);
}

.woocommerce .watson-shop-sidebar .widget_price_filter .price_slider_amount .button {
    font-size: 1.15em;
    float: left;
    color: #fff;
    font-weight: normal;
}

.woocommerce .watson-shop-sidebar .widget_price_filter .price_slider_wrapper .ui-widget-content {
    border-radius: 1em;
    background-color: #eee;
    border: 0;
}

.woocommerce .star-rating span::before {
    color: orange;
}

.woocommerce .watson-shop-sidebar .star-rating {
    margin-bottom: 10px;
    margin-top: 10px;
}


.woocommerce .watson-shop-sidebar   ul.cart_list li a, .woocommerce .watson-shop-sidebar ul.product_list_widget li a {
    font-weight: 500;
}


.watson-single-product .variations td, .page-watson  .variations th {
    font-size: 20px;
}


.watson-single-product  form.cart .variations label {
    font-weight: 500;
    color: #222;
    font-size: 15px;
}


.watson-single-product  .quantity .qty {
      min-width: 75px;
    padding: 11px;
}

.watson-single-product   div.product form.cart .button {
    vertical-align: middle;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 600;
}


.woocommerce div.product form.cart .variations select {
    border: 1px solid #eee;
    display: block;
    color: #222;
    width: 100%;
    border-radius: 40px;
    padding: .5em 1.2em .5em 1.2em;
    height: 45px;
    width: auto;
    font-size: 14px;
    line-height: 20px;
    margin-top: 2pt;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: 0 0;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: calc(100% - 10px);
    background-position-y: 50%;
    -webkit-transition: border 150ms var(--ease-in-out), -webkit-box-shadow 150ms var(--ease-in-out);
    transition: border 150ms var(--ease-in-out), -webkit-box-shadow 150ms var(--ease-in-out);
    transition: box-shadow 150ms var(--ease-in-out), border 150ms var(--ease-in-out);
    transition: box-shadow 150ms var(--ease-in-out), border 150ms var(--ease-in-out), -webkit-box-shadow 150ms var(--ease-in-out);
}


.watson-single-product  .related h2{
    font-size: 32px;
    padding-bottom: 15px;
}



.watson-product-tabs-wrapper {
    background-color: #fff;
    border-radius: 40px;
    padding: 70px;
    margin: 50px;

}


.watson-single-product   .flex-control-thumbs li {
    border: 10px solid transparent;
}

body.single-product , body.single-product .layout-theme ,
body.single-product  [data-canvas=container]{
      background-color: #f5f5f5;
}


.watson-product-tabs-wrapper .woocommerce-tabs h2{
    font-size: 24px;
}

.watson-product-tabs-wrapper .related.products h2{
    font-size: 34px;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 50px;

}

.watson-single-product  .flex-control-thumbs {
    margin-top: 10px !important;
}

.watson-single-product   form.cart .button {
    padding: 16px;
    border-radius: 0;
}


.watson-single-product  .woocommerce-product-details__short-description {
    font-size: 14px;
    margin-bottom: 25px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}


.watson-product-tabs-wrapper ul.tabs li{
    border: 0 !important;
}

.watson-product-tabs-wrapper ul.tabs::before ,
.watson-product-tabs-wrapper ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after{
    display: none !important;
}


.watson-product-tabs-wrapper ul.tabs li.active {
    border: 0 !important;
    background-color: #f5f5f5 !important;
    color: #515151;
}


body.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: 0;
    background-color: transparent;
    color: #515151;
    display: inline-block;
    position: relative;
    z-index: 0;
    border-radius: 0;
    margin: 0;
    padding: 5px 20px;
}


body.woocommerce div.product .woocommerce-tabs ul.tabs {
    list-style: none;
    padding: 0 0 0 0;
    margin: 0 0 1.618em;
    overflow: hidden;
    position: relative;
}


.watson-product-tabs-wrapper .woocommerce-tabs h2.woocommerce-Reviews-title{
    text-transform: capitalize;
    font-size: 24px;
    margin-bottom: 45px;
}


.watson-product-tabs-wrapper .woocommerce-tabs h2.woocommerce-Reviews-title  span{
    border-bottom: 2px solid #222;
    padding-bottom: 8px;
}


body.woocommerce  #reviews #comments ol.commentlist {
    margin: 0;
    width: 100%;
    background: 0 0;
    list-style: none;
    padding: 0;
}


body.woocommerce   #reviews #comments ol.commentlist li img.avatar {
    width: 41px;
}

body.woocommerce:where(body:not(.woocommerce-uses-block-theme)) #reviews #comments ol.commentlist li .meta {
    color: #222;
}


body.woocommerce  .comment-reply-title {
    position: relative;
    font-size: 26px;
    margin-top: 30px;
    display: inline-block;
    padding-bottom: 10px;
    font-weight: 600;
}

body.woocommerce  .required{
    color: red;
}



body.woocommerce  #review_form #respond {
    position: relative;
    margin: 0;
    width: auto;
    padding: 0;
    background: transparent none;
    border: 0;
    max-width: 740px;
    margin: 0 auto;
    display: block;
}


body.woocommerce   #review_form #respond .form-submit input {
    left: auto;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 0;
    min-width: 220px;
}


body.woocommerce   p.stars a {
    color: orange;
}


body.woocommerce #reviews #comments ol.commentlist li .comment-text {
    margin: 0 0 0 50px;
    border: 1px solid #eee;
    border-radius: 0;
    padding: 20px 20px 6px 25px;
    font-size: 16px;
    color: #222;
    line-height: 1.7;
}


body.woocommerce   span.onsale {
    height: 80px;
    width: 80px;
    padding: .202em;
    font-weight: 700;
    position: absolute;
    text-align: center;
    line-height: 71px;
    top: 30px;
    left: 30px;
    margin: 0;
    border-radius: 100%;
    background-color: #f2480c;
    color: #fff;
    font-size: 14px;
    z-index: 9;
}