/**
 * Single product page styles – WooCommerce single product (shop-details design).
 * Sourced from html-pages/shop-details.html.
 */

body.shop-details-page,
.shop-details-page {
    background-color: #fdf4f7;
}

.shop-details-page .page-banner {
    height: 320px;
    background-size: cover;
    background-position: center center;
    display: table;
    width: 100%;
    position: relative;
}

.shop-details-page .page-banner .container {
    display: table;
    height: 100%;
}

.shop-details-page .page-banner-entry {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
    position: relative;
    z-index: 2;
    color: #1f1f1f;
}

.shop-details-page .page-banner-entry h1 {
    font-size: 60px;
    line-height: 1.3;
    margin-bottom: 10px;
    font-weight: 500;
    color: #1f1f1f;
}

@media (max-width: 991.98px) {
    .shop-details-page .page-banner-entry h1 {
        font-size: 42px;
    }
}

@media (max-width: 767.98px) {
    .shop-details-page .page-banner {
        height: 300px;
    }
    .shop-details-page .page-banner-entry h1 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .shop-details-page .page-banner {
        height: 200px;
    }
    .shop-details-page .page-banner-entry h1 {
        font-size: 28px;
        margin-bottom: 5px;
    }
}

.shop-details-page .breadcrumb-row {
    margin-top: 8px;
}

.shop-details-page .breadcrumb-row .list-inline {
    margin: 0;
    display: inline-block;
    background: rgb(255, 255, 255);
    padding: 5px 15px;
    border-radius: 30px;
    border: 1px solid #fff;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.02);
    list-style: none;
}

.shop-details-page .breadcrumb-row .list-inline li {
    padding: 0;
    margin-right: 3px;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
}

.shop-details-page .breadcrumb-row .list-inline li i {
    font-size: 13px;
    margin-right: 5px;
}

.shop-details-page .breadcrumb-row .list-inline li a {
    text-decoration: none;
    color: #b6554f;
    font-weight: 600;
}

.shop-details-page .breadcrumb-row .list-inline li:last-child {
    color: #5a564d;
}

.shop-details-page .breadcrumb-row .list-inline li:after {
    content: "\f105";
    margin-left: 7px;
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome", "fontawesome";
    font-weight: 900;
    opacity: 0.5;
}

.shop-details-page .breadcrumb-row .list-inline li:last-child:after {
    display: none;
}

/* Product details section */
.shop-details-page .product-info {
    padding: 60px 0;
}

.shop-details-page .products-gallery {
    margin-bottom: 30px;
}

.shop-details-page .products-gallery .swiper {
    margin-bottom: 20px;
}

.shop-details-page .products-gallery .swiper-slide {
    border-radius: 18px;
    overflow: hidden;
}

.shop-details-page .products-gallery .ld-media {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 18px;
}

.shop-details-page .products-gallery .ld-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-details-page .products-gallery .thumbs-slider .swiper-slide {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s;
    border-radius: 12px;
    overflow: hidden;
}

.shop-details-page .products-gallery .thumbs-slider .swiper-slide:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.shop-details-page .products-gallery .thumbs-slider .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #b6554f;
}

.shop-details-page .products-gallery .swiper-button-next,
.shop-details-page .products-gallery .swiper-button-prev {
    color: #1f1f1f;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.shop-details-page .products-gallery .swiper-button-next:after,
.shop-details-page .products-gallery .swiper-button-prev:after {
    font-size: 18px;
}

.shop-details-page .product-full-info {
    padding-left: 30px;
}

@media (max-width: 991.98px) {
    .shop-details-page .product-full-info {
        padding-left: 0;
        margin-top: 40px;
    }
}

/* -------------------------------------------------------------------------
 * Override core WooCommerce single-product column floats
 * (Woo adds classes like: body.woocommerce.single-product, body.woocommerce-page.single-product)
 * ---------------------------------------------------------------------- */
body.woocommerce.single-product .shop-details-page div.product div.images,
body.woocommerce.single-product .shop-details-page #content div.product div.images,
body.woocommerce-page.single-product .shop-details-page div.product div.images,
body.woocommerce-page.single-product .shop-details-page #content div.product div.images,
body.woocommerce.single-product .shop-details-page div.product div.summary,
body.woocommerce.single-product .shop-details-page #content div.product div.summary,
body.woocommerce-page.single-product .shop-details-page div.product div.summary,
body.woocommerce-page.single-product .shop-details-page #content div.product div.summary {
    float: none;
    width: 100%;
    clear: none;
}

@media (min-width: 992px) {
    body.woocommerce.single-product .shop-details-page div.product div.images,
    body.woocommerce.single-product .shop-details-page #content div.product div.images,
    body.woocommerce-page.single-product .shop-details-page div.product div.images,
    body.woocommerce-page.single-product .shop-details-page #content div.product div.images {
        float: left;
        width: 50%;
        padding-right: 30px;
    }

    body.woocommerce.single-product .shop-details-page div.product div.summary,
    body.woocommerce.single-product .shop-details-page #content div.product div.summary,
    body.woocommerce-page.single-product .shop-details-page div.product div.summary,
    body.woocommerce-page.single-product .shop-details-page #content div.product div.summary {
        padding-left: 30px;
    }
}

.shop-details-page .product-title,
.shop-details-page .summary .product_title {
    font-size: 42px;
    font-weight: 500;
    color: #1f1f1f;
	margin-bottom: 20px;
    line-height: 1.3;
}

@media (max-width: 767.98px) {
    .shop-details-page .product-title,
    .shop-details-page .summary .product_title {
        font-size: 32px;
    }
}

.shop-details-page .price {
    font-size: 28px;
    margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.shop-details-page .price .amount,
.shop-details-page .price span {
    color: #b6554f;
    font-weight: 600;
    margin-right: 15px;
}

.shop-details-page .price del,
.shop-details-page .price del .amount {
    color: #94a3b8;
    font-size: 22px;
    font-weight: 400;
	margin-left: 0;
	order: 2;
}

.shop-details-page .price ins {
	order: 1;
}

.shop-details-page .product-dec,
.shop-details-page .woocommerce-product-details__short-description {
    font-size: 16px;
    line-height: 1.8;
    color: #5a564d;
    margin-bottom: 25px;
}

.shop-details-page .ld-divider {
    height: 1px;
    margin: 25px 0;
    background: #e5e7eb;
}

.shop-details-page .product-quantity {
    margin-bottom: 25px;
}

.shop-details-page .product-quantity .title,
.shop-details-page .quantity label {
    font-size: 16px;
    font-weight: 600;
    color: #1f1f1f;
    margin-bottom: 12px;
}

.shop-details-page .touch-count {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.shop-details-page .touch-count input,
.shop-details-page .quantity input.qty {
    width: 60px;
    height: 45px;
    text-align: center;
    border: 1px solid #e5e7eb;
    font-size: 16px;
    font-weight: 500;
    color: #1f1f1f;
    border-radius: 0;
}

.shop-details-page .touch-count button {
    width: 45px;
    height: 45px;
    border: none;
    background: #f3f4f6;
    color: #1f1f1f;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.shop-details-page .touch-count button:hover {
    background: #0b9f92;
    color: #fff;
}

.shop-details-page .product-btn {
    margin-bottom: 25px;
}

.shop-details-page .product-btn .btn,
.shop-details-page .single_add_to_cart_button,
.shop-details-page .single_add_to_cart_button.button,
.shop-details-page .single_add_to_cart_button.button.alt,
.shop-details-page .woocommerce div.product form.cart .button {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
	border: none;
    cursor: pointer;
	text-transform: none;
	background: #0b9f92;
	color: #fff;
	box-shadow: none;
	outline: none;
}

.shop-details-page .product-btn .btn-primary,
.shop-details-page .single_add_to_cart_button,
.shop-details-page .single_add_to_cart_button.button,
.shop-details-page .single_add_to_cart_button.button.alt,
.shop-details-page .woocommerce div.product form.cart .button {
	background: #0b9f92;
	color: #fff;
	border-color: #0b9f92;
}

.shop-details-page .product-btn .btn-primary:hover,
.shop-details-page .single_add_to_cart_button:hover,
.shop-details-page .single_add_to_cart_button.button:hover,
.shop-details-page .single_add_to_cart_button.button.alt:hover,
.shop-details-page .woocommerce div.product form.cart .button:hover,
.shop-details-page .single_add_to_cart_button:focus,
.shop-details-page .single_add_to_cart_button.button:focus,
.shop-details-page .single_add_to_cart_button.button.alt:focus,
.shop-details-page .woocommerce div.product form.cart .button:focus {
    background: #089085;
    color: #fff;
	border-color: #089085;
	box-shadow: none;
	outline: none;
}

.shop-details-page .product-meta,
.shop-details-page .product_meta {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
}

.shop-details-page .product-meta .meta-item,
.shop-details-page .product_meta .posted_in,
.shop-details-page .product_meta .tagged_as {
    margin-bottom: 15px;
}

.shop-details-page .product-meta .meta-item .title,
.shop-details-page .product_meta .sku_wrapper,
.shop-details-page .product_meta .posted_in,
.shop-details-page .product_meta .tagged_as {
    font-size: 18px;
    font-weight: 600;
    color: #1f1f1f;
    margin-bottom: 8px;
    display: inline-block;
    margin-right: 10px;
    line-height: 1.5;
}

.shop-details-page .product_meta .meta-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.shop-details-page .product_meta .meta-item .title {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1em;
}

.shop-details-page .product_meta .sku-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1em;
}

.shop-details-page .product_meta span.sku {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.shop-details-page .product-meta .meta-item a,
.shop-details-page .product_meta a {
    color: #0b9f92;
    text-decoration: none;
    font-size: 14px;
}

.shop-details-page .product-meta .meta-item a:hover,
.shop-details-page .product_meta a:hover {
    text-decoration: underline;
}

.shop-details-page .item-review,
.shop-details-page .star-rating {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 3px;
}

.shop-details-page .item-review li {
    color: #fbbf24;
    font-size: 14px;
}

.shop-details-page .item-review li .fa-regular {
    color: #d1d5db;
}

/* Product description tabs */
.shop-details-page .ld-tabs,
.shop-details-page .woocommerce-tabs {
    margin-top: 60px;
    padding-left: 0;
    margin-left: 0;
}

.shop-details-page .ld-tabs .nav-tabs,
.shop-details-page .woocommerce-tabs .tabs {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 30px;
    padding-left: 0;
    margin-left: 0;
    list-style: none;
    border-top: none;
    border-left: none;
    border-right: none;
    display: flex;
}

.shop-details-page .ld-tabs .nav-tabs li,
.shop-details-page .woocommerce-tabs .tabs li {
    margin-right: 30px;
    margin-left: 0;
    padding-left: 0;
    display: inline-block;
    margin-bottom: 0;
}

.shop-details-page .ld-tabs .nav-tabs li a,
.shop-details-page .woocommerce-tabs .tabs li a {
    padding: 15px 0;
    font-size: 18px;
    font-weight: 500;
    color: #5a564d;
    text-decoration: none;
    border: none;
    border-bottom: 3px solid transparent;
    background: transparent;
    transition: all 0.3s;
    position: relative;
    display: inline-block;
    margin-bottom: -1px;
}

.shop-details-page .ld-tabs .nav-tabs li a.active,
.shop-details-page .ld-tabs .nav-tabs li a:hover,
.shop-details-page .woocommerce-tabs .tabs li.active a,
.shop-details-page .woocommerce-tabs .tabs li a:hover {
    color: #b6554f;
    border-bottom: 3px solid #b6554f;
    z-index: 1;
}

.shop-details-page .ld-tabs .tab-content,
.shop-details-page .woocommerce-Tabs-panel {
    font-size: 16px;
    line-height: 1.8;
    color: #5a564d;
    padding-left: 0;
    margin-left: 0;
}

.shop-details-page .woocommerce-Tabs-panel:not(.active) {
    display: none;
}

.shop-details-page .ld-tabs .tab-pane {
    padding-left: 0;
    margin-left: 0;
}

.shop-details-page .row .col-md-12 .ld-tabs {
    padding-left: 0;
}

.shop-details-page .row .col-md-12 .ld-tabs .nav-tabs {
    padding-left: 0;
    margin-left: 0;
}

.shop-details-page .row .col-md-12 .ld-tabs .tab-content {
    padding-left: 0;
    margin-left: 0;
}

/* Reviews section */
.shop-details-page .commentlist {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

/* Support both static HTML (.comment) and WooCommerce reviews (.review) */
.shop-details-page .commentlist .comment,
.shop-details-page .commentlist .review {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
}

.shop-details-page .commentlist .comment:last-child,
.shop-details-page .commentlist .review:last-child {
    border-bottom: none;
}

.shop-details-page .comment_container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.shop-details-page .comment_container .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.shop-details-page .comment-text {
    flex: 1;
}

.shop-details-page .comment-text .star-rating {
    margin-top: 4px;
    margin-bottom: 8px;
    font-size: 16px;
}

.shop-details-page .comment-text .meta {
    margin-bottom: 8px;
}

.shop-details-page .comment-text .meta strong {
    color: #1f1f1f;
    font-weight: 600;
    margin-right: 8px;
}

.shop-details-page .comment-text .meta span,
.shop-details-page .comment-text .meta time {
    color: #94a3b8;
    font-size: 14px;
}

.shop-details-page .comment-text .description {
    color: #5a564d;
    line-height: 1.8;
}

/* Review form */
.shop-details-page #review_form_wrapper {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #e5e7eb;
}

.shop-details-page .comment-reply-title {
    font-size: 24px;
    font-weight: 600;
    color: #1f1f1f;
    margin-bottom: 25px;
}

.shop-details-page .comment-form-rating {
    margin-bottom: 20px;
}

.shop-details-page .skinfinity-guest-review-pending-note {
    margin-bottom: 16px;
    padding: 12px 14px;
    background: #f8fafc;
    border-radius: 8px;
    color: #5a564d;
    font-size: 14px;
}

.shop-details-page .comment-form-rating label {
    font-weight: 600;
    color: #1f1f1f;
    margin-right: 15px;
}

.shop-details-page .comment-form-author,
.shop-details-page .comment-form-email,
.shop-details-page .comment-form-comment {
    margin-bottom: 20px;
}

.shop-details-page .comment-form-author input,
.shop-details-page .comment-form-email input,
.shop-details-page .comment-form-comment textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    color: #1f1f1f;
    transition: border-color 0.3s;
}

.shop-details-page .comment-form-author input:focus,
.shop-details-page .comment-form-email input:focus,
.shop-details-page .comment-form-comment textarea:focus {
    outline: none;
    border-color: #0b9f92;
}

.shop-details-page .comment-form-comment textarea {
    min-height: 120px;
    resize: vertical;
}

/* Reset WooCommerce default boxed review layout so it matches shop-details.html */
.shop-details-page #reviews #comments ol.commentlist li {
    position: static;
    padding: 0 0 30px 0;
    margin: 0 0 30px 0;
    border-bottom: 1px solid #e5e7eb;
}

.shop-details-page #reviews #comments ol.commentlist li img.avatar {
    position: static;
    float: none;
    margin: 0;
    border: none;
    padding: 0;
    background: transparent;
    box-shadow: none;
    width: 60px;    
    height: 60px;
}

.shop-details-page #reviews #comments ol.commentlist li .comment-text {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

/* Star rating inside reviews – color and spacing like HTML demo */
.shop-details-page #reviews #comments .star-rating {
    float: none;
    margin: 0 0 10px 0;
}

.shop-details-page #reviews #comments .star-rating span {
    padding: 0;
    /* Hide textual "Rated X out of 5" while keeping width for stars */
    text-indent: -9999px;
    overflow: hidden;
    display: block;
}

.shop-details-page #reviews #comments .star-rating::before,
.shop-details-page #reviews #comments .star-rating span::before {
    color: #fbbf24;
}

/* Restore visible stars via pseudo-element while text is hidden */
.shop-details-page #reviews #comments .star-rating span::before {
    text-indent: 0;
    font-size: 16px;
    line-height: 1;
}

.shop-details-page .form-submit input[type="submit"] {
    background: #0b9f92;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.shop-details-page .form-submit input[type="submit"]:hover {
    background: #089085;
}

/* Related products section */
.shop-details-page .section-sp4,
.shop-details-page .related.products {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #e5e7eb;
}

.shop-details-page .related.products h2 {
    display: none;
}

.shop-details-page .heading-bx {
    margin-bottom: 40px;
}

.shop-details-page .heading-bx .title-head {
    font-size: 32px;
    font-weight: 600;
    color: #1f1f1f;
    margin-bottom: 15px;
}

.shop-details-page .product-swiper {
    padding-bottom: 50px;
}

.shop-details-page .product-swiper .item-box {
    background: transparent;
}

.shop-details-page .product-swiper .item-media {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #eee;
    margin-bottom: 20px;
}

.shop-details-page .product-swiper .item-media img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.shop-details-page .product-swiper .item-box:hover .item-media img {
    transform: scale(1.05);
}

.shop-details-page .product-swiper .item-media ul {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s ease;
    width: 100%;
}

.shop-details-page .product-swiper .item-box:hover .item-media ul {
    bottom: 20px;
}

/* Related Products: remove cart icon on item-box hover */
.shop-details-page .product-swiper .item-box .item-media ul {
    display: none !important;
}

.shop-details-page .product-swiper .item-media ul li a {
    width: 40px;
    height: 40px;
    display: flex;
    background: #1f1f1f;
    color: #fff;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    align-items: center;
    justify-content: center;
}

.shop-details-page .product-swiper .item-media ul li a:hover {
    background: #0b9f92;
    color: #fff;
}

.shop-details-page .product-swiper .item-info {
    text-align: center;
}

.shop-details-page .product-swiper .item-info .title {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 400;
}

.shop-details-page .product-swiper .item-info .title a {
    color: #1f1f1f;
    text-decoration: none;
}

.shop-details-page .product-swiper .item-info .title a:hover {
    color: #0b9f92;
}

.shop-details-page .product-swiper .item-info .price {
    font-weight: 400;
    font-size: 16px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
    justify-content: center;
}

.shop-details-page .product-swiper .item-info .price .amount,
.shop-details-page .product-swiper .item-info .price span {
    color: #b6554f;
}

.shop-details-page .product-swiper .item-info .price del,
.shop-details-page .product-swiper .item-info .price del .amount {
	margin-left: 8px;
    color: #94a3b8;
    font-weight: 400;
	order: 2;
}

.shop-details-page .product-swiper .item-info .price ins {
	order: 1;
}

.shop-details-page .product-swiper .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.shop-details-page .product-swiper .swiper-pagination-bullet {
    background: #0b9f92;
    opacity: 0.3;
}

.shop-details-page .product-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

.woocommerce span.onsale {
    display: none !important;
}

.shop-details-page .price span.woocommerce-Price-currencySymbol {
    margin-right: 0;
}

/* Force WooCommerce review submit button to match shop-details design */
.shop-details-page #reviews #review_form_wrapper .form-submit input[type="submit"],
.shop-details-page #respond input#submit {
    background: #0b9f92;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: none;
}

.shop-details-page #reviews #review_form_wrapper .form-submit input[type="submit"]:hover,
.shop-details-page #respond input#submit:hover {
    background: #089085;
}

.woocommerce #reviews #comments h2 {
    margin-bottom: 20px;
}

/* -------------------------------------------------------------------------
 * WooCommerce "added to cart" notice – match shop-details / site design
 * (.woocommerce-notices-wrapper > .woocommerce-message)
 * ---------------------------------------------------------------------- */
.shop-details-page .woocommerce-notices-wrapper {
    margin-bottom: 24px;
}

.shop-details-page .woocommerce-notices-wrapper .woocommerce-message,
.shop-details-page .woocommerce-notices-wrapper .woocommerce-info,
.shop-details-page .woocommerce-notices-wrapper .woocommerce-error {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 16px;
    padding: 16px 20px;
    margin: 0;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    line-height: 1.5;
    color: #1f1f1f;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    list-style: none;
}

.shop-details-page .woocommerce-notices-wrapper .woocommerce-message {
    border-left: 4px solid #0b9f92;
}

.shop-details-page .woocommerce-notices-wrapper .woocommerce-info {
    border-left: 4px solid #b6554f;
}

.shop-details-page .woocommerce-notices-wrapper .woocommerce-error {
    border-left: 4px solid #b6554f;
}

.shop-details-page .woocommerce-notices-wrapper .woocommerce-message::before,
.shop-details-page .woocommerce-notices-wrapper .woocommerce-info::before,
.shop-details-page .woocommerce-notices-wrapper .woocommerce-error::before {
    display: none;
}

/* "View cart" button – match product Add to cart button */
.shop-details-page .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward,
.shop-details-page .woocommerce-notices-wrapper .woocommerce-message .button.wc-forward {
    display: inline-block;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    background: #0b9f92;
    color: #fff !important;
    border: none;
    box-shadow: none;
    transition: all 0.3s;
    margin-left: 0;
}

.shop-details-page .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward:hover,
.shop-details-page .woocommerce-notices-wrapper .woocommerce-message .button.wc-forward:hover {
    background: #089085;
    color: #fff !important;
}