/**
 * 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: #f6e8d4;
}

.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: #3d2415;
    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 #3d2415;
}

.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: #3d2415;
    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: #5c4033;
    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: #5c4033;
	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: #5c4033;
	color: #fff;
	border-color: #5c4033;
}

.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: #2b180f;
    color: #fff;
	border-color: #2b180f;
	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: #5c4033;
    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 details accordion (replaces tabs) */
.shop-details-page .sf-product-accordion,
.shop-details-page .woocommerce-tabs.sf-product-accordion {
    margin-top: 48px;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

.shop-details-page .sf-accordion-item {
    border-bottom: 1px solid var(--border, #e0cfa8);
}

.shop-details-page .sf-accordion-item:first-child {
    border-top: 1px solid var(--border, #e0cfa8);
}

.shop-details-page .sf-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    margin: 0;
    padding: 22px 4px;
    border: 0;
    background: transparent;
    color: var(--primary-color, #3d2415);
    font-family: var(--default-font, "DM Sans", sans-serif);
    font-size: clamp(16px, 2.2vw, 20px);
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: color 0.25s ease;
}

.shop-details-page .sf-accordion-trigger:hover,
.shop-details-page .sf-accordion-trigger:focus-visible {
    color: var(--brand-mid, #5c4033);
    outline: none;
}

.shop-details-page .sf-accordion-title {
    flex: 1 1 auto;
}

.shop-details-page .sf-accordion-chevron {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    color: var(--accent-color, #b8956c);
    transition: transform 0.28s ease;
}

.shop-details-page .sf-accordion-item.is-open .sf-accordion-chevron {
    transform: rotate(180deg);
}

.shop-details-page .sf-accordion-panel {
    overflow: hidden;
}

.shop-details-page .sf-accordion-panel[hidden] {
    display: none;
}

.shop-details-page .sf-accordion-panel-inner {
    padding: 0 4px 24px;
    font-size: clamp(14px, 1.8vw, 16px);
    line-height: 1.75;
    color: var(--text-color, #6b5344);
}

.shop-details-page .sf-accordion-panel-inner > *:first-child {
    margin-top: 0;
}

.shop-details-page .sf-accordion-panel-inner > *:last-child {
    margin-bottom: 0;
}

.shop-details-page .sf-accordion-panel-inner p {
    margin: 0 0 0.9em;
    color: var(--text-color, #6b5344);
}

.shop-details-page .sf-accordion-panel-inner ul,
.shop-details-page .sf-accordion-panel-inner ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.shop-details-page .sf-accordion-panel-inner li {
    position: relative;
    margin: 0 0 14px;
    padding-left: 36px;
    color: var(--text-color, #6b5344);
}

.shop-details-page .sf-accordion-panel-inner li:last-child {
    margin-bottom: 0;
}

/* Key Benefits — green check */
.shop-details-page .sf-accordion-panel--benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.15em;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #2f9e5b;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.2l2.8 2.8 6.2-6.2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
}

/* How to Use — theme accent hand/drop icon */
.shop-details-page .sf-accordion-panel--how-to-use li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.1em;
    width: 24px;
    height: 24px;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 3.5c1.2 1.6 2 3.1 2 4.4a2 2 0 1 1-4 0c0-1.3.8-2.8 2-4.4z' fill='%23b8956c'/%3E%3Cpath d='M8.2 11.2c.5-.4 1.2-.4 1.7 0l1.1.9 1.1-.9c.5-.4 1.2-.4 1.7 0l.8.7V19a1.5 1.5 0 0 1-1.5 1.5h-4A1.5 1.5 0 0 1 7.6 19v-6.4l.6-.4z' stroke='%23b8956c' stroke-width='1.6' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Key Ingredients — theme accent flask icon */
.shop-details-page .sf-accordion-panel--ingredients li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.1em;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9 3h6M10 3v5.2L5.8 16.5A3.2 3.2 0 0 0 8.6 21h6.8a3.2 3.2 0 0 0 2.8-4.5L14 8.2V3' stroke='%23b8956c' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7.2 15.5h9.6' stroke='%23b8956c' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Non-list content in icon panels: indent to align with list text */
.shop-details-page .sf-accordion-panel--benefits > p,
.shop-details-page .sf-accordion-panel--how-to-use > p,
.shop-details-page .sf-accordion-panel--ingredients > p {
    padding-left: 0;
}

@media (max-width: 767.98px) {
    .shop-details-page .sf-product-accordion {
        margin-top: 32px;
    }

    .shop-details-page .sf-accordion-trigger {
        padding: 18px 2px;
        font-size: 16px;
        gap: 12px;
    }

    .shop-details-page .sf-accordion-panel-inner {
        padding-bottom: 18px;
        font-size: 14px;
        line-height: 1.7;
    }

    .shop-details-page .sf-accordion-panel-inner li {
        padding-left: 32px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .shop-details-page .sf-accordion-trigger {
        padding: 16px 0;
        font-size: 15px;
    }

    .shop-details-page .sf-accordion-chevron {
        width: 24px;
        height: 24px;
    }
}

/* 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_2026-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: #5c4033;
}

.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: #5c4033;
    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: #2b180f;
}

/* 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: #5c4033;
    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: #5c4033;
}

.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: #3d2415;
}

.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: #5c4033;
    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: #5c4033;
    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: #2b180f;
}

.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 #5c4033;
}

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

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

.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: #5c4033;
    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: #2b180f;
    color: #fff !important;
}