/**
 * Theme Name: SmartPrice Child
 * Template: smartprice
 * Version: 1.0.0
 */

/* Google Fonts */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=block');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=block');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Poppins:wght@500;600;700;800&display=swap');



:root {
  --top_bar_text_color: #ccc;
  --main-black-color: #191919;
  --sp-orange: #ff7a1a;
  --sp-orange-dark: #e85f00;
  --sp-orange-soft: #fff3ea;
  --sp-pink-soft: #fff4f6;
  --sp-beige: #fff8f1;
  --sp-cream: #fffaf5;
  --sp-dark: #111827;
  --sp-text: #1f2933;
  --sp-muted: #6b7280;
  --sp-border: #edf0f3;
  --sp-bg: #ffffff;
  --sp-section-bg: #fafafa;
  --sp-card-bg: #ffffff;
  --sp-red-price: #ff3b30;
  --sp-badge-pink: #ff5c8a;
  --sp-yellow-badge: #ffb800;
}

/* Header utility dropdown menu */
.smartprice-utility-menu {
    position: relative;
    z-index: 80;
}

.smartprice-utility-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.smartprice-utility-nav {
    align-items: center;
    display: flex;
    gap: 0;
}

.smartprice-utility-nav > li {
    position: relative;
}

.smartprice-utility-nav > li > a {
    align-items: center;
    color: #111827;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    gap: 6px;
    line-height: 1;
    padding: 8px 0;
    text-decoration: none;
    white-space: nowrap;
}

.smartprice-utility-nav > li.menu-item-has-children > a::after {
    border: solid currentColor;
    border-width: 0 1.7px 1.7px 0;
    content: "";
    display: inline-block;
    height: 6px;
    margin-left: 3px;
    transform: rotate(45deg) translateY(-2px);
    width: 6px;
}

.smartprice-utility-nav .sub-menu {
    background: #fff;
    border: 1px solid rgba(237, 240, 243, 0.95);
    border-radius: 10px;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.14);
    left: 50%;
    min-width: 230px;
    opacity: 0;
    padding: 8px;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 10px);
    transform: translateX(-50%) translateY(6px);
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
    visibility: hidden;
    z-index: 100;
}

.smartprice-utility-nav .sub-menu::before {
    content: "";
    height: 12px;
    left: 0;
    position: absolute;
    right: 0;
    top: -12px;
}

.smartprice-utility-nav > li:hover > .sub-menu,
.smartprice-utility-nav > li:focus-within > .sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    visibility: visible;
}

.smartprice-utility-nav .sub-menu a {
    border-radius: 8px;
    color: #111827;
    display: block;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.25;
    padding: 10px 12px;
    text-decoration: none;
    white-space: nowrap;
}

.smartprice-utility-nav .sub-menu a:hover,
.smartprice-utility-nav .sub-menu a:focus {
    background: #fff4ec;
    color: #ff6b16;
}

/* Final wishlist template overrides: keep custom cards independent from global Woo button rules. */
body .smartprice-wishlist-page .smartprice-wishlist-card .smartprice-wishlist-actions {
    display: grid !important;
    gap: 8px !important;
    grid-template-columns: minmax(124px, 1fr) minmax(88px, auto) !important;
    max-width: 100% !important;
    width: 100% !important;
}

body .smartprice-wishlist-page .smartprice-wishlist-card .smartprice-wishlist-add,
body .smartprice-wishlist-page .smartprice-wishlist-card .smartprice-wishlist-view {
    border-radius: 10px !important;
    box-sizing: border-box !important;
    font-size: 12px !important;
    font-weight: 850 !important;
    height: 38px !important;
    line-height: 1 !important;
    margin: 0 !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 0 11px !important;
    white-space: nowrap !important;
}

body .smartprice-wishlist-page .smartprice-wishlist-card .smartprice-wishlist-add svg,
body .smartprice-wishlist-page .smartprice-wishlist-card .smartprice-wishlist-view svg {
    flex: 0 0 auto !important;
    height: 17px !important;
    width: 17px !important;
}

body .smartprice-wishlist-page .smartprice-wishlist-card .smartprice-wishlist-view {
    justify-self: end !important;
}

@media (max-width: 575px) {
    body .smartprice-wishlist-page .smartprice-wishlist-card .smartprice-wishlist-actions {
        grid-template-columns: 1fr !important;
    }

    body .smartprice-wishlist-page .smartprice-wishlist-card .smartprice-wishlist-view {
        justify-self: stretch !important;
    }
}

/* SmartPrice custom wishlist template */
body .smartprice-wishlist-page {
    background: var(--sp-section-bg, #fafafa);
    color: var(--sp-dark, #111827);
    font-family: "Inter", "Poppins", Arial, sans-serif;
    padding: 22px 0 70px;
}

body .smartprice-wishlist-page .container {
    max-width: 1320px;
}

body .smartprice-wishlist-breadcrumb {
    align-items: center;
    color: var(--sp-muted, #6b7280);
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    gap: 8px;
    margin: 0 0 14px;
}

body .smartprice-wishlist-breadcrumb a {
    color: var(--sp-text, #1f2933);
    text-decoration: none;
}

body .smartprice-wishlist-hero {
    align-items: center;
    background: linear-gradient(135deg, #fff 0%, #fffaf5 100%);
    border: 1px solid var(--sp-border, #edf0f3);
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.05);
    display: flex;
    justify-content: space-between;
    margin-bottom: 22px;
    overflow: hidden;
    padding: 30px;
    position: relative;
}

body .smartprice-wishlist-kicker {
    align-items: center;
    color: var(--sp-orange, #ff7a1a);
    display: inline-flex;
    font-size: 13px;
    font-weight: 850;
    gap: 8px;
    letter-spacing: 0.01em;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

body .smartprice-wishlist-hero h1 {
    color: var(--sp-dark, #111827);
    font-size: 34px;
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1.08;
    margin: 0 0 10px;
    position: relative;
    z-index: 1;
}

body .smartprice-wishlist-hero p {
    color: var(--sp-muted, #6b7280);
    font-size: 15px;
    line-height: 1.45;
    margin: 0;
    max-width: 520px;
    position: relative;
    z-index: 1;
}

body .smartprice-wishlist-count-card {
align-items: center;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgb(146 146 146 / 10%);
    display: flex;
    gap: 12px;
    min-width: 170px;
    padding: 18px 20px;
    position: relative;
    z-index: 1;
}

body .smartprice-wishlist-count-card strong {
    align-items: center;
    background: var(--sp-orange, #ff7a1a);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 22px;
    font-weight: 900;
    height: 44px;
    justify-content: center;
    line-height: 1;
    min-width: 44px;
}

body .smartprice-wishlist-count-card span {
    color: var(--sp-text, #1f2933);
    font-size: 13px;
    font-weight: 760;
    line-height: 1.25;
}

body .smartprice-wishlist-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body .smartprice-wishlist-card {
    background: #fff;
    border: 1px solid var(--sp-border, #edf0f3);
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.055);
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    min-height: 176px;
    overflow: hidden;
    padding: 16px;
    position: relative;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

body .smartprice-wishlist-card:hover {
    border-color: rgba(255, 122, 26, 0.28);
    box-shadow: 0 20px 46px rgba(17, 24, 39, 0.09);
    transform: translateY(-2px);
}

body .smartprice-wishlist-card.is-removing {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.98);
}

body .smartprice-wishlist-remove {
    align-items: center;
    background: #fff1f1;
    border-radius: 999px;
    color: #ff3b30 !important;
    display: inline-flex;
    font-size: 20px;
    font-weight: 900;
    height: 34px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 14px;
    text-decoration: none !important;
    top: 14px;
    transition: background 0.2s ease, transform 0.2s ease;
    width: 34px;
    z-index: 3;
}

body .smartprice-wishlist-remove:hover {
    background: #ffe2e2;
    transform: scale(1.04);
}

body .smartprice-wishlist-remove.is-loading {
    opacity: 0.6;
    pointer-events: none;
}

body .smartprice-wishlist-image {
    align-items: center;
    background: #fff;
    border-radius: 16px;
    display: flex;
    height: 146px;
    justify-content: center;
    padding: 16px;
    position: relative;
    text-decoration: none !important;
}

body .smartprice-wishlist-image img {
    display: block;
    height: 100%;
    max-height: 116px;
    max-width: 116px;
    object-fit: contain;
    width: 100%;
}

body .smartprice-wishlist-discount {
    align-items: center;
    background: var(--sp-orange-soft, #fff3ea);
    border-radius: 999px;
    color: #ff5a1f;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    height: 28px;
    justify-content: center;
    line-height: 1;
    min-width: 52px;
    padding: 0 10px;
    position: absolute;
    right: 10px;
    top: 10px;
}

body .smartprice-wishlist-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    padding: 6px 42px 2px 14px;
}

body .smartprice-wishlist-meta-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

body .smartprice-wishlist-stock,
body .smartprice-wishlist-id {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    min-height: 26px;
    padding: 0 10px;
}

body .smartprice-wishlist-stock.is-in-stock {
    background: #ecfdf3;
    color: #16803b;
}

body .smartprice-wishlist-stock.is-out-stock {
    background: #fff1f1;
    color: #ff3b30;
}

body .smartprice-wishlist-id {
    background: #f6f7f9;
    color: var(--sp-muted, #6b7280);
}

body .smartprice-wishlist-card h2 {
    font-size: 15px;
    font-weight: 780;
    letter-spacing: 0;
    line-height: 1.3;
    margin: 0;
}

body .smartprice-wishlist-card h2 a {
    color: var(--sp-dark, #111827);
    display: -webkit-box;
    overflow: hidden;
    text-decoration: none !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

body .smartprice-wishlist-card h2 a:hover {
    color: var(--sp-orange, #ff7a1a);
}

body .smartprice-wishlist-price {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

body .smartprice-wishlist-price del,
body .smartprice-wishlist-price del .amount {
    color: #9aa3af !important;
    font-size: 13px !important;
    font-weight: 760 !important;
    line-height: 1 !important;
    text-decoration: line-through !important;
    text-decoration-thickness: 1.5px !important;
}

body .smartprice-wishlist-price ins {
    border-radius: 10px !important;
    color: var(--sp-red-price, #ff3b30) !important;
    display: inline-flex !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    padding: 7px 10px !important;
    text-decoration: none !important;
}

body .smartprice-wishlist-price ins .amount,
body .smartprice-wishlist-price > .amount {
    color: var(--sp-dark, #111827) !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

body .smartprice-wishlist-actions {
    align-items: center;
    display: flex;
    gap: 10px;
    min-width: 0;
    margin-top: 2px;
}

body .smartprice-wishlist-add,
body .smartprice-wishlist-view,
body .smartprice-wishlist-shop-link {
    align-items: center;
    border-radius: 10px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 850;
    gap: 7px;
    height: 38px;
    justify-content: center;
    line-height: 1;
    padding: 0 13px;
    text-decoration: none !important;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

body .smartprice-wishlist-add {
    flex: 0 1 auto;
    min-width: 132px;
}

body .smartprice-wishlist-view {
    flex: 0 1 auto;
    min-width: 98px;
}

body .smartprice-wishlist-add,
body .smartprice-wishlist-shop-link {
    background: var(--sp-orange, #ff7a1a) !important;
    border: 0 !important;
    box-shadow: 0 12px 24px rgba(255, 122, 26, 0.2);
    color: #fff !important;
}

body .smartprice-wishlist-add:hover,
body .smartprice-wishlist-shop-link:hover {
    background: var(--sp-orange-dark, #e85f00) !important;
    box-shadow: 0 16px 28px rgba(255, 122, 26, 0.24);
    color: #fff !important;
    transform: translateY(-1px);
}

body .smartprice-wishlist-view {
    background: #fff;
    border: 1px solid var(--sp-border, #edf0f3);
    color: var(--sp-dark, #111827) !important;
}

body .smartprice-wishlist-view:hover {
    background: var(--sp-orange-soft, #fff3ea);
    border-color: rgba(255, 122, 26, 0.24);
    color: var(--sp-orange, #ff7a1a) !important;
}

body .smartprice-wishlist-empty-dynamic {
    margin-top: 18px;
}

body .smartprice-wishlist-empty {
    align-items: center;
    background: #fff;
    border: 1px solid var(--sp-border, #edf0f3);
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.055);
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 620px;
    padding: 52px 28px;
    text-align: center;
}

body .smartprice-wishlist-empty-icon {
    align-items: center;
    background: var(--sp-pink-soft, #fff4f6);
    border-radius: 999px;
    color: var(--sp-badge-pink, #ff5c8a);
    display: inline-flex;
    height: 72px;
    justify-content: center;
    margin-bottom: 16px;
    width: 72px;
}

body .smartprice-wishlist-empty h2 {
    color: var(--sp-dark, #111827);
    font-size: 24px;
    font-weight: 850;
    line-height: 1.15;
    margin: 0 0 10px;
}

body .smartprice-wishlist-empty p {
    color: var(--sp-muted, #6b7280);
    font-size: 15px;
    line-height: 1.45;
    margin: 0 0 22px;
}

@media (max-width: 1199px) {
    body .smartprice-wishlist-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    body .smartprice-wishlist-page {
        padding: 16px 0 44px;
    }

    body .smartprice-wishlist-hero {
        align-items: flex-start;
        border-radius: 18px;
        flex-direction: column;
        gap: 16px;
        padding: 22px;
    }

    body .smartprice-wishlist-hero h1 {
        font-size: 28px;
    }

    body .smartprice-wishlist-count-card {
        width: 100%;
    }

    body .smartprice-wishlist-grid {
        grid-template-columns: 1fr;
    }

    body .smartprice-wishlist-card {
        grid-template-columns: 112px minmax(0, 1fr);
        min-height: 0;
        padding: 14px;
    }

    body .smartprice-wishlist-image {
        height: 132px;
        padding: 12px;
    }

    body .smartprice-wishlist-image img {
        max-height: 106px;
        max-width: 106px;
    }

    body .smartprice-wishlist-content {
        padding: 4px 38px 2px 12px;
    }

    body .smartprice-wishlist-meta-row {
        gap: 6px;
    }

    body .smartprice-wishlist-id {
        display: none;
    }

    body .smartprice-wishlist-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
    }

    body .smartprice-wishlist-add,
    body .smartprice-wishlist-view {
        width: 100%;
    }
}

@media (max-width: 430px) {
    body .smartprice-wishlist-card {
        grid-template-columns: 1fr;
    }

    body .smartprice-wishlist-image {
        height: 170px;
    }

    body .smartprice-wishlist-image img {
        max-height: 140px;
        max-width: 160px;
    }

    body .smartprice-wishlist-content {
        padding: 12px 0 0;
    }
}



@media (min-width: 1200px) {
    .container{
        max-width: 1269px;
    }
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", "Poppins", Arial, sans-serif;
    overflow-x: hidden;
    font-size: 14px;
    color: #333;
}

img {
  max-width: 100%;
  height: auto;
}

.woocommerce div.product .woocommerce-product-gallery img{
  border-radius:8px;
}

.woocommerce div.product .flex-control-thumbs img{
  border-radius:6px;
}

.woocommerce ul.products li.product img{
  border-radius:8px;
}

.product img{
  border-radius:8px;
}

.logo {
  width: 207px;
}


.product_thumbnail {
    border-bottom: none !important;
}


textarea:focus,button:focus, input:focus{
    outline: none;
}

p   {
    /* letter-spacing: 0.5px; */
}

.language p,.login a {
    font-family: 'Open Sans', sans-serif;
    color: #363A42;
    position: relative;

}

.logged-in .login .language p,.login a {
    top: 11px;
}

body:not(.logged-in)  .login .language p,.login a {
    top: 0px;
}



ol,
ul {
  list-style: none;
}

a {
    color: #101820;
}

a:hover {
    color: #F0B730;
    text-decoration: none;
}

.title-h2 {
font-size: 22px;
    text-transform: none;
    font-weight: 700;
        left: 3px;
    position: relative;
    padding: 10px 0;
}

h2 {
    font-size: 17px;
    text-transform: uppercase;
}

body:not(.logged-in) .login {
    position: relative;
    top: -3px;
}

.login {
    position: relative;
    top: -1px;
}


.woocommerce div.product form.cart .button {
    vertical-align: middle;
    float: left;
    padding: 13px 29px;
    font-size: 14px;
    text-transform: uppercase;
        border-radius: 8px;
            margin-left: 0;
            margin-top: 5px;
}

.icon-login::before {
    content: "\E820";
    font-family: "fontello";
    position: absolute;
    display: inline;
    top: -3px;
    left: -38px;
    color: #333;
    font-size: 24px;
    text-decoration: none;
}

.twist-video-thumb:after {
    content: "\E817";
    font-family: "fontello";
    font-size: 20px;
}

.twist-pgs {
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid #e9e9e9;
}

.slick-vertical .btn-prev {
    top: 2px;
}

.slick-vertical .btn-prev, .btn-next {
    border-radius: 0px;
}

.slick-vertical .btn-prev, .btn-next {
    border-radius: 0px;
    margin-left: -13px!important;
}

.slick-vertical .btn-next {
    bottom: 2px;
}

#slide-nav-pgs .slick-slide {
    transition: all ease-in-out .3s;
    opacity: 0.5;
    cursor: pointer;
    border: 1px solid #e9e9e9;
    margin: 1px 0;
}

.icon-cart::before {
    content: "\E809";
    font-family: "fontello";
    position: absolute;
    display: inline;
    top: -3px;
    left: -38px;
    color: #333;
    font-size: 24px;
    text-decoration: none;
}

.recomend::after {
    content: "\E80F";
    font-family: "fontello";
    position: relative;
    display: inline;
    top: 0px;
    margin-left: 5px;
    font-size: 22px;
    color: #f98c04;
}

.new-icon::after {
    content: "\E810";
    font-family: "fontello";
    position: relative;
    display: inline;
    top: 0px;
    margin-left: 5px;
    font-size: 22px;
    color: #7E92DA;
}

.count-class .count{
    /* background-color: #09d209;
    display: inline-block;
    line-height: 14px;
    padding: 0 5px;
    border-radius: 50%;
    color: #fff;
    font-size: 11px;
    position: absolute;
    left: 0; */

    position: absolute;
    top: -12px;
    right: 2px;
    height: 15px;
    width: 15px;
    line-height: 15px;
    background-color: #f1b813;
    /* box-shadow: 2px 2px 10px 0px rgba(197, 143, 190, 0.4); */
    color: #ffffff;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    border-radius: 50%;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.2s 0s;
    -moz-transition: -moz-transform 0.2s 0s;
    transition: transform 0.2s 0s;
}

.icon-basket-alt:before {
  position: relative;
  font-size: 13px;
}

.cart-contents .icon-basket-alt:before {
  position: relative;
  font-size: 25px;
}

.icon-login-1:before {
  position: relative;
  font-size: 22px;
  top: 11px;
  left: -2px;
  
}

.logged-in .login .icon-login-1:before {
top: 3px;
  
}



.bottomMenu {
    position:fixed;
    bottom: 0;
    right: 0;
    z-index: 1;
    padding: 15px 15px 10px 46px;
    margin: 20px;
    background-color: #fff;
    box-shadow: 0rem 0rem 1.43rem 0rem rgba(0, 0, 0, 0.05);
    transition: all 0.6s ease;
  }
  .hide {
    opacity: 0;
    bottom: -100%;
  }
  .show {
    opacity: 1;
    right: 0;
  }

  #fixed-menuID .site-header-cart:hover .widget_shopping_cart,#fixed-menuID .site-header-cart.focus .widget_shopping_cart {
    left: -200px;
    display: none;
}


  #fixed-menuID .site-header-cart .widget_shopping_cart {
    z-index: 999999;
    text-align: left;
    position: absolute;
    background-color: #fff;
    top: -251px;
    width: 300px;
    min-height: 250px;
    border-width: 0.07rem;
    border-style: solid;
    border-color: #efefef;
    padding-top: 0.57rem;
    padding-right: 2.15rem;
    padding-bottom: 1.80rem;
    padding-left: 2.14rem;
    line-height: 1.30rem;
    box-shadow: 0rem 0rem 1.43rem 0rem rgba(0, 0, 0, 0.05);
}


.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
    font-size: 100%;
    margin: 0;
    line-height: 1;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    overflow: visible;
    padding: .618em 1em;
    font-weight: 700;
    border-radius: 6px;
    left: auto;
    color: #ffffff;
    background-color: #f1b813;
    border: 0;
    display: inline-block;
    background-image: none;
    box-shadow: none;
    text-shadow: none;
}

.space-line {
    border-bottom: 1px solid #d8d8d8;
    padding-bottom: 10px;
}

.h6, h6 {
    font-size: 1rem;
    color: #F0B730;
}

.navbar-light .navbar-nav .nav-link {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #363A42;
}



.wpd-av button.yes {
    background: #F0B730;
    margin-left: 0;
    margin-right: 1%;
}

.wpd-av button.yes:hover {
    background: #F0B730;
    box-sizing: border-box;
}

#truck-icon {
  position: relative;
  color: var(--top_bar_text_color);
  font-weight: 700;
  font-size: 12px;
}

#truck-icon:before {
  content: "\E81D";
  color: var(--top_bar_text_color);
  font-size: 15px;
}

#send-icon:before, #pack-icon:before, #diskret-icon:before,#truck-icon:before {
  font-family: "fontello";
  position: relative;
  left: -10px;
  top: 2px;
  display: inline;
  margin-right: -4px;
  -webkit-transform: translateY(-55%);
  transform: translateY(-55%);
}

#send-icon:before {
    content: "\E80A";
    color: #333;
}

#mix-order-icon:before {
  content: "\F200";
  color: var(--top_bar_text_color);
  font-size: 15px;
}

#mix-order-icon {
  position: relative;
  color: var(--top_bar_text_color);
  font-weight: 700;
  font-size: 12px;
}

#mix-order-icon:before {
  font-family: "fontello";
  position: relative;
  left: -10px;
  top: 2px;
  display: inline;
  margin-right: -4px;
  -webkit-transform: translateY(-55%);
  transform: translateY(-55%);
}


#covid-icon:before {
  content: "\E82D";
  color: #fff;
  font-size: 11px;
}

#covid-icon {
  position: relative;
  color: #fff;
  font-weight: 600;
  font-size: 10px;
    background: #535353;
    padding: 7px 18px;
        border-radius: 6px;
}

#covid-icon:before {
  font-family: "fontello";
  position: relative;
  left: -10px;
  top: 0px;
  display: inline;
  margin-right: -4px;
  -webkit-transform: translateY(-55%);
  transform: translateY(-55%);
}


#diskret-icon:before {
    content: "\E80C";
   color: #333;
}

.cart-contents {
    font-family: 'Open Sans', sans-serif;
    color: #363A42;
    top: 0px;
    position: relative;
}


body:not(.logged-in) .cart-contents {
    font-family: 'Open Sans', sans-serif;
    color: #363A42;
    top: 10px;
    position: relative;
}

.language {
    border-left: 1px solid #CFCFCF;
    margin-left: 19px;
}

.language .lang {
    margin-left: 14px;
}

.language li {
    list-style: none;
    margin-left: 5px;
}

.language .current-lang a {
    color: #F0B730;
}


.language li a{
    letter-spacing: 1px;
}

.language p {
    letter-spacing: 1px;
    color: #F0B730;
}

.banner-slide {
    width: 100%;
    max-width: 100%;
}

/* Homepage products */

.woocommerce-loop-product__title {
    font-size: 15px;
    text-transform: inherit;
    line-height: 1.35;
}

.shop-homepage-content .woocommerce-loop-product__title {
    font-size: 12px;
    font-weight: 600;
    text-transform: inherit;
    /*height: 27px;*/
}

.sale-other-price {
  font-size: 10px;
  margin-top: 10px;
  margin-bottom: 4px;
  margin: 0;
}

.sale-other-price-euro {
  font-size: 12px;
  margin-top: 0px;
  font-weight: 800;
  color: #0095ff9e;
}

.woocommerce-loop-product__title + div {
    font-size: 10px;
    /*background: #191919;*/
    width: fit-content;
    /*padding: 6px;*/
    color: #fff;
    font-weight: 800;
    border-radius: 3px;
}

.shop-homepage-content .onsale {
  position: absolute;
  font-family: oswald,sans-serif;
  background-color: #FDE533;
  box-shadow: 2px 2px 2px 0 rgb(197 143 190 / 30%);
  padding: 13px 4px;
  color: #191919;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  right: 0;


    /* position: absolute;
    font-family: 'Oswald', sans-serif;
    background-color: #4fd672;
    box-shadow: 2px 2px 2px 0px rgba(197, 143, 190, 0.3);
    padding: 16px 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50%;
    right: 0; */
}

/* .shop-homepage-content .onsale {
    position: absolute;
    padding: 5px 10px;
    font-size: 33px;
    right: 0;
} */

.woocommerce ul.products li.product .onsale {
    font-family: oswald,sans-serif;
    top: 0;
    right: 0;
    left: auto;
    margin: 0;
    position: absolute;
    background-color: #FDE533;
    padding: 9px 0px;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    right: 0;
    border-radius: 55%;
    min-height: 20px;
    line-height: 18px;
    z-index: 1;
}

/* Mega menu */
 /*
  *
  * ==========================================
  * MEGA MENU
  * ==========================================
  *
  */

.megamenu {
    position: static;
  }
  
  .megamenu .dropdown-menu {
    background: none;
    border: none;
    width: 100%;
  }


  
  code {
    color: #745eb1;
    background: #fff;
    padding: 0.1rem 0.2rem;
    border-radius: 0.2rem;
  }
  
  .text-uppercase {
    letter-spacing: 0.08em;
  }






/* TIME REMAINING */
.countdown-label {
    color: #65584c;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 2px;
    padding: 5px;
  }
  #countdown{
    box-shadow: 0 1px 2px 0 rgba(1, 1, 1, 0.4);
    width: 240px;
    text-align: center;
    background: #f1f1f1;
    border-radius: 0;
  }
  
  
  
  #countdown #tiles{
    color: #fff;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 0px #ccc;
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    font-size: 26px;
    display: block;
  }
  
  .color-full {
    background: #53bb74;
  }
  .color-half {
    background: #ebc85d;
  }
  .color-empty {
    background: #e5554e;
  }
  
  #countdown #tiles > span{
      width: 70px;
      max-width: 70px;
  
      padding: 18px 0;
      position: relative;
  }
  
  
  
  
  
  #countdown .labels{
      width: 100%;
      height: 25px;
      text-align: center;
      position: absolute;
      bottom: 8px;
  }
  
  #countdown .labels li{
      width: 102px;
      font: bold 15px 'Droid Sans', Arial, sans-serif;
      color: #f47321;
      text-shadow: 1px 1px 0px var(--main-black-color);
      text-align: center;
      text-transform: uppercase;
      display: inline-block;
  }

/* Range filter change color */
  .irs-from, .irs-to, .irs-single {
    background: #F0B730!important;
}

.woof_list label {
    margin-bottom: 0;
}

.woof_list {
    padding-left: 0;
}

.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
    margin-left: 7px;
}







/* SIZE GUIDE -------------------------------------------------------------------------------------------------------------------------*/

.sizeguide__illustration
{
	width: 250px;
	margin: 0 auto;
	display: block;
}
.sizeguide__illustration img
{
	width: 100%;
	height: auto;
}

.sizeguide__inner
{
	position: relative;
	margin-top: 60px;
	position: relative;
	width: 100%;
	text-align: right;
}

@media screen and (min-width: 900px)
{	
	.sizeguide__illustration
	{
		margin: 0;
		display: inline-block;
		vertical-align: middle;
		width: 25%;
	}
	
	.sizeguide__inner
	{
		display: inline-block;
		margin-top: 0;
		margin-left: 20px;
		width: 70%;
		vertical-align: middle;
	}
}

.toggle__main-albel
{
	display: none;
}
@media screen and (min-width: 450px)
{	
	.toggle__main-label
	{
		display: inline-block;
		vertical-align: middle;
		margin-right: 10px;
	}
}

.sizeguide input[type=checkbox]
{
	opacity: 0;
	width: 100%;
	z-index: 99;
	display: inline-block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	cursor: pointer;
}

.sizeguide input[type=checkbox]:focus ~ .toggle__controls
{
  outline: 1px solid #19ca2a;
}

.toggle__opt
{
	display: inline-block;
	vertical-align: middle;
	user-select: none;
}

.toggle__opt:first-child
{
	text-align: right;
	left: 0;
}
.toggle__opt:last-child
{
	right: 0;
}

.toggle__controls
{
	display: inline-block;
	vertical-align: middle;
	position: relative;
	width: 50px;
  height: 20px;
	margin: 0 10px;
}

.toggle__controls:before
{
  content: '';
  position: absolute;
	display: block;
  width: 50px;
  height: 2px;
  background-color: #464646;
  
  z-index: 1;
  left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.toggle__controls:after
{
  content: '';
  position: absolute;
	display: block;
  width: 20px;
  height: 7px;
  background-color: #171717;
  
  z-index: 1;
  left: 50%;
	top: 50%;
	transform: translate(-130%, -50%);
	transition: transform 0.30s ease-out;
}

.sizeguide input[type=checkbox]:checked ~ .toggle__controls:after
{
	transform: translate(30%, -50%);
}

.sizeguide table
{
  margin-top: 10px;
	border-collapse: collapse;
	width: 100%;
}

.sizeguide th, td 
{
	/*text-align: center;*/
	padding: 12px 5px;
}

.sizeguide th
{
	background: #F0B730;
	color: #fff;
	font-weight: normal;
}

.sizeguide td
{
	border: 1px solid #d2d2d2;
}
.sizeguide thead td
{
	border: 0;
}
.sizeguide td:first-child
{
	border-left: 0;
}
.sizeguide td:last-child
{
	border-right: 0;
}

.sizeguide tr:nth-child(2n)
{
	background: #f3f3f3;
}

.alt
{
	display: none;
}

.sizeguide input[type=checkbox]:checked ~ table .alt
{
	display: inline;
}
.sizeguide input[type=checkbox]:checked ~ table .default
{
	display: none;
}

.sizeguide__note
{
	max-width: 600px;
	text-align: left;
	line-height: 1.7;
	font-size: 1.03em;
}


.sizeguide
{
  width: 100%;
  max-width: 100%;
  padding: 40px;
  margin: 0px 0 60px 0;
  background: #fff;
  box-shadow: 0px 2px 7px 2px rgba(0, 0, 0, 0.1);
}


/* SIZE GUIDE END -------------------------------------------------------------------------------------------------------------------------*/


/* Footer ----------------------------- */

.page-footer h6,.page-footer i{
    color: #000000;
}

.page-footer .social-footer i {
    font-size: 18px;
}

.page-footer h4 {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}

.footer-top {
    background-color: var(--main-black-color);
}




/* Swiper slider style ------------------------------------------- */


.swiper-button-next:after, .swiper-button-prev:after {
    content: "\E811";
    font-family: "fontello";
    font-size: var(--swiper-navigation-size);
    text-transform: none!important;
    letter-spacing: 0;
    color: #ffffff;
    font-size: 13px;
    background: rgba(218, 126, 181, 0.51);
    border-radius: 50%;
    padding: 7px;
    text-transform: none;
    font-variant: initial;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #fff;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: rgba(218, 126, 181, 0.51);
}

.swiper-button-next, .swiper-button-prev {
    outline: none;
}

.banner-slide {
    position: relative;
    height: 100%;
  }
  .banner-slide {
    background: #eee;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color:var(--main-black-color);
    margin: 0;
    padding: 0;
  }

  .swiper-container {
    width: 100%;
    height: 100%;
  }
  
  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .swiper-slide-container {
    text-align: center;
          font-size: 18px;
          background: #fff;
    height:100%;
          max-width: 600px;
    margin:auto;
          /* Center slide text vertically */
          display: -webkit-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          -webkit-justify-content: center;
          justify-content: center;
          -webkit-box-align: center;
          -ms-flex-align: center;
          -webkit-align-items: center;
          align-items: center;
  }








  .swiper-slide {
    /* background-image: url(https://swiperjs.com/demos/images/nature-2.jpg); */
    background-size: cover;
    background-position: center;
}



.header-site{
   background-color: #000000;
   background-repeat: no-repeat;
   width:100%;
   height: 528px;
   background-position: center bottom;
   background-size: cover;
   position: relative;
}





/* Dark mode */
body {
    /* transition: 0.4s ease; */
}

body.night {
    background: #010101;
    color: #fff;
  }

  body.night .icon-login::before,body.night .icon-cart::before {
    color: #fff;
}

body.night .navbar-classic .navbar-nav .nav-item .nav-link {
    font-size: 14px;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    color: #ffffff;
}

  body.night a{
    color: #ffffff;
  }

  body.night .navi-mega-menu {
    background-color: #1C1C1E;
    padding: 10px 0 5px 0;
}

body.night .footer-top {
    background-color: #1C1C1E;
}

body.night .space-line {
    border-bottom: 1px solid rgba(216, 216, 216, 0.28);
    padding-bottom: 10px;
}

body.night .woocommerce-LoopProduct-link {
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 10px;
}

body.night #slide-nav-pgs .slick-slide {
    opacity: 0.8;
}
  
  .toggle {
    position: absolute;
    position: fixed;
    z-index: 999;
    top: 40%;
    left: 0px;
    background: #fff;
    /* border: 2px solid #F0B730; */
    background: #F0B730;
    width: 49px;
    height: 22px;
    cursor: pointer;
    border-radius: 20px;
    transition: 0.4s ease;
  }
  
  .toggle.active {
    background: #F0B730;
  }
  
  .toggle:before {
    left: 2px;
    top: 1px;
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    transition: 0.5s;
  }
  
  .toggle.active:before {
    left: 27px;
    background: #fff;
  }
  

  /* Tooltip color */
  .tooltip-inner {
    background-color: #96CC2E !important;
    /*!important is not necessary if you place custom.css at the end of your css calls. For the purpose of this demo, it seems to be required in SO snippet*/
    color: #fff;
  }

  .tooltip-danger .tooltip-inner {
    background-color: #F0B730 !important;
    color: #fff;
    font-size: 12px;
    text-align: center;
    border-radius: .25rem;
    padding: 6px 16px;
    letter-spacing: 1px;
  }
  
  .tooltip.top .tooltip-arrow {
    border-top-color: #00acd6;
  }
  
  .tooltip.right .tooltip-arrow {
    border-right-color: #00acd6;
  }
  
  .tooltip.bottom .tooltip-arrow {
    border-bottom-color: #00acd6;
  }
  
  .tooltip.left .tooltip-arrow {
    border-left-color: #00acd6;
  }
  
 


/* Midle header style */

.midle-header-style {
  /* background-color: #000000; */
}


/* Midle header style end*/




  /* Menu top right */

  .nav-top ul li a{
    color: #fff;
    padding: 0px 13px;
    /* text-transform: uppercase; */
    font-size: 10px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -0.4px;
  }

  .top-menu-section {
    background-color: var(--main-black-color);
    padding: 2px;
  }


  .nav-top ul li {
    background: var(--main-black-color);
    border-right: 1px solid rgb(255 255 255 / 27%);
    /* padding: 5px 0px; */
}

.nav-top ul li:hover {
  background: #F0B730;
}

.dropdown-menu ul li:hover {
  background: #F0B730;
}

.dropdown-item:focus, .dropdown-item:hover {
  color: #ffffff;
  text-decoration: none;
  background-color: #F0B730;
}

.dropdown-toggle::after {
  position: relative;
  top: 1px;
  left: 1px;
}

    /* Menu top right end*/


  /* VERTICAL MENU STYLE */

  .vertical-nav {
    height: auto;
    list-style: none;
    margin: 0px 0 0 0;
    /*float: left;*/
    padding: 0;
    z-index: 999;
    box-shadow: 0 0 5px rgb(0 0 0 / 14%);
}
.vertical-nav > li {
  margin: 0;
  background-color: #ffffff;
  border: none;
  text-align: left;
  display: block;
  position: relative;
  /*width: 294px;*/
  border-bottom: 1px solid #e1e1e1;
}
.vertical-nav li:hover {
    /* background-color:#018fcc; */
    color:#FFFFFF;
}
.vertical-nav li a {
  font-size: 14px;
  text-decoration: none;
  padding: 10px 12px;
  display: block;
  color: #333;
  font-weight: 400;
  letter-spacing: -0.6px;
}
.vertical-nav li.current {
    background-color:#F36F25;
}
.vertical-nav li.current a {
    color:#FFFFFF;
}
vertical-nav ul li ul {
    display:none;
    list-style-type:none;
    width:125px;
    padding:0px;
    margin-top:3px;
    margin-left:-5px;
}
vertical-nav ul li:hover ul {
    display:block;
}
vertical-nav ul li:hover ul li {
    background-color:#555555;
    width:125px;
    height:30px;
    display:inline-block;
}
vertical-nav ul li ul li:hover {
    background-color:#333333;
}
vertical-nav ul li ul li a {
    color:#FFF;
    text-decoration:underline;
}
vertical-nav ul li ul li a:hover {
    text-decoration:none;
}
/* .vertical-nav li ul {
    display: none;
    padding: 0;
}
.vertical-nav li:hover ul {
  display: block;
  position: absolute;
  top: 0px;
  left: 100%;
  padding-left: 4px;
  box-shadow: 0 0 5px rgb(0 0 0 / 14%);
} */

.sub-menu li
{
  min-width: 565px;
  height: 300px;
  white-space: nowrap;
  display: block;
  z-index: 1;
}

/*---------------------MEGA MENU HOVER Navigations-------------*/
/*-------------------- Navigation classic ---------------------*/

.menu-vertical-menu-container .dropdown-menu.show {
  display: block;
  top: -29px!important;
  left: 277px!important;
  border-radius: 0;
  padding: 0;
}

.menu-vertical-menu-container .dropdown-menu.show li a {
  padding: 8px 10px;
}

.menu-vertical-menu-container .dropdown-toggle::after {
  content: '\e815'!important;
  font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    height: 0;
    vertical-align: 0;
    border: none;
    speak: never;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    /* opacity: .8; */
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    /* font-size: 120%; */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* text-shadow: 1px 1px 1px rgb(127 127 127 / 30%); */
}

.dropdown-menu .menu-item {
  border: none;
}

/* .vertical-nav  .dropdown-menu {
	position: absolute;
  top: -23px!important;
  left: 278px!important;
    right: 0;
	z-index: 1000;
	display: none;
	float: left;
    width:94%;
    padding: 0;
    margin: -6px auto;
	font-size: 1rem;
	color: #808294;
	text-align: left;
	list-style: none;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgb(255, 255, 255);
	border-radius: 2px;
	-webkit-box-shadow: 0px 3px 11px 0px rgba(0, 0, 0, 0.09);
	-moz-box-shadow: 0px 3px 11px 0px rgba(0, 0, 0, 0.09);
	box-shadow: 0px 3px 11px 0px rgba(0, 0, 0, 0.09);
} */




  /* VERTICAL MENU STYLE END */





  /* Glide slider custom styles */

.glide ul {
  margin-bottom: 0;
}


.glide__arrow {
  background-color: rgba(255,255,255,.5);
  border: none;
  border-radius: 0;
  padding: 10px 10px;
}

.glide__arrow--left {
  left: 0;
}

.glide__arrow i {
  color: rgb(99, 97, 97);
}

.glide__arrow--right {
  right: 0;
}

/* Glide slider custom styles end*/


/* ADD TO CART HOME PAGE BUTTON STYLES */
.button.add_to_cart_button {
  background: #F0B730;
  padding: 6px 10px;
  margin: 0 auto;
  text-align: center;
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  width: 78%;
  /* visibility: hidden; */
}

.product-homepage .product.type-product:hover .button {
  /* -webkit-transform: translatey(0) !important;
  transform: translatey(0) !important; */
  visibility: visible;
}

.product-homepage .product.type-product .button {
  position: absolute;
  top: 10%;
  /* -webkit-transform: translateY(50%);
  transform: translateY(50%); */
  -webkit-transition: 0.03s;
  transition: 0.03s;
  visibility: hidden;
  margin-top: 10px;
  margin-left: 10px !important;
}

.product-homepage .product.type-product .button {
  font-size: 12px;
  line-height: 15px;
  padding: 8px 12px;
  min-height: 15px;
  font-weight: bold;
  text-transform: uppercase;
}

/*.product.type-product:hover {*/
/*    height: 340px;*/
/*}*/

/*.product-homepage .product.type-product {*/
/*    height: auto;*/
/*}*/



/* ADD TO CART HOME PAGE BUTTON STYLES END*/


div.asl_w .probox .promagnifier .innericon svg {
  fill: #ffffff!important;
}

div.asl_m .probox .promagnifier .innericon, div.asl_m .probox .prosettings .innericon, div.asl_m .probox .proclose .innericon {
  /* background-color: var(--sp-orange, #ff7a1a)!important; */
}


/* dropdown menu */

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0 0;
  margin: 0 .125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: .25rem;
}

/* dropdown menu end */



.sku-smart {
    /*position: absolute;*/
    bottom: 0px;
    background: #9ccf36;
    padding: 5px;
    color: #fff;
    font-weight: 700;
    font-size: 10px;
}

.single .sku-smart {
    background: #f1b813;
    padding: 5px;
    color: #fff;
    font-weight: 700;
    font-size: 10px;
    /* display: inline-block; */
    margin-bottom: 6px;
    position: absolute;
    top: -45px;
    right: -29px;
    height: 21px;
    z-index: 999;
    display:none;
}

.single .sku-smart-mob {
    /*display:none;*/
    font-size: 11px;
    font-weight: 600;
    color: var(--main-black-color);
}



.defect {
    max-width: 50px;
}


.defect-img {
    width: 50px;
}


/*======================
    404 page
=======================*/


.page_404{ 
    padding:40px 0; 
    background:#fff; 
}


.four_zero_four_bg{
 
 background-image: url(https://cdn.dribbble.com/users/285475/screenshots/2083086/dribbble_1.gif);
    height: 400px;
    background-position: center;
 }
 
 
 .four_zero_four_bg h1{
 font-size:80px!important;
 }
 
  .four_zero_four_bg h3{
			 font-size:80px;
			 }
			 
.link_404{			 
	color: #fff!important;
    padding: 10px 20px;
    background: #9bce36;
    border-radius: 3px;
    margin: 20px 0;
    display: inline-block;
    
}
.contant_box_404{ margin-top:-50px;}


/*end 404 page*/

/* Smartprice modern 404 page */
body.error404 {
    background: #f6f7f9 !important;
}

body.error404 #primary.smartprice-404-area {
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 122, 26, 0.08), transparent 26%),
        linear-gradient(180deg, #fff 0%, #f6f7f9 100%) !important;
    padding: 54px 0 72px !important;
}

body.error404 .page_404 {
    background: transparent !important;
    padding: 0 !important;
}

body.error404 .smartprice-404-card {
    align-items: center !important;
    background: #fff !important;
    border: 1px solid #edf0f3 !important;
    border-radius: 24px !important;
    box-shadow: 0 24px 70px rgba(17, 24, 39, 0.08) !important;
    display: grid !important;
    gap: 0 !important;
    margin: 0 auto !important;
    max-width: 1040px !important;
    overflow: hidden !important;
    padding: 28px !important;
    position: relative !important;
}

body.error404 .smartprice-404-card::before {
    background: linear-gradient(90deg, #ff7a1a, #ffb36f) !important;
    border-radius: 999px !important;
    content: "" !important;
    height: 5px !important;
    left: 28px !important;
    position: absolute !important;
    right: 28px !important;
    top: 0 !important;
}

body.error404 .four_zero_four_bg {
    background-image: url(https://cdn.dribbble.com/users/285475/screenshots/2083086/dribbble_1.gif) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: min(920px, 100%) auto !important;
    border-radius: 20px !important;
    height: 360px !important;
    margin: 0 !important;
    position: relative !important;
}

body.error404 .four_zero_four_bg h1 {
    color: #111827 !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: clamp(74px, 9vw, 132px) !important;
    font-weight: 900 !important;
    left: 50% !important;
    letter-spacing: 0 !important;
    line-height: 0.9 !important;
    margin: 0 !important;
    position: absolute !important;
    text-shadow: 0 10px 35px rgba(17, 24, 39, 0.10) !important;
    top: 10px !important;
    transform: translateX(-50%) !important;
}

body.error404 .contant_box_404 {
    margin: -18px auto 0 !important;
    max-width: 650px !important;
    position: relative !important;
    text-align: center !important;
    z-index: 2 !important;
}

body.error404 .smartprice-404-eyebrow {
    background: #fff3ea !important;
    border-radius: 999px !important;
    color: #ff7a1a !important;
    display: inline-flex !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    line-height: 1 !important;
    margin: 0 0 13px !important;
    padding: 9px 13px !important;
}

body.error404 .contant_box_404 h2,
body.error404 .contant_box_404 h3 {
    color: #111827 !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: clamp(30px, 3.2vw, 46px) !important;
    font-weight: 850 !important;
    letter-spacing: 0 !important;
    line-height: 1.08 !important;
    margin: 0 0 10px !important;
}

body.error404 .contant_box_404 p {
    color: #6b7280 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1.55 !important;
    margin: 0 auto 24px !important;
    max-width: 520px !important;
}

body.error404 .smartprice-404-actions {
    align-items: center !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    justify-content: center !important;
}

body.error404 .link_404,
body.error404 .smartprice-404-secondary {
    align-items: center !important;
    border-radius: 12px !important;
    display: inline-flex !important;
    font-size: 15px !important;
    font-weight: 850 !important;
    height: 48px !important;
    justify-content: center !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 22px !important;
    text-decoration: none !important;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease !important;
}

body.error404 .link_404 {
    background: #ff7a1a !important;
    box-shadow: 0 12px 26px rgba(255, 122, 26, 0.22) !important;
    color: #fff !important;
}

body.error404 .smartprice-404-secondary {
    background: #fff !important;
    border: 1px solid #edf0f3 !important;
    color: #111827 !important;
}

body.error404 .link_404:hover,
body.error404 .smartprice-404-secondary:hover {
    transform: translateY(-1px) !important;
}

body.error404 .link_404:hover {
    background: #e85f00 !important;
    box-shadow: 0 16px 32px rgba(255, 122, 26, 0.26) !important;
}

body.error404 .smartprice-404-secondary:hover {
    background: #fff8f1 !important;
}

@media (max-width: 767px) {
    body.error404 #primary.smartprice-404-area {
        padding: 24px 0 44px !important;
    }

    body.error404 .smartprice-404-card {
        border-radius: 18px !important;
        padding: 18px !important;
    }

    body.error404 .four_zero_four_bg {
        background-size: 720px auto !important;
        height: 270px !important;
    }

    body.error404 .four_zero_four_bg h1 {
        top: 4px !important;
    }

    body.error404 .contant_box_404 {
        margin-top: -8px !important;
    }

    body.error404 .smartprice-404-actions {
        flex-direction: column !important;
    }

    body.error404 .link_404,
    body.error404 .smartprice-404-secondary {
        width: 100% !important;
    }
}

/* Mobile homepage/header refresh */
@media (max-width: 991px) {
    body.home #page {
        background: #f6f7f9 !important;
    }

    body.home #masthead.site-header {
        background:
            radial-gradient(circle at 82% 0%, rgba(255, 122, 26, 0.09), transparent 30%),
            #fff !important;
        box-shadow: 0 12px 34px rgba(17, 24, 39, 0.045) !important;
        position: relative !important;
        z-index: 1000 !important;
    }

    body.home #masthead .smartprice-main-header {
        padding: 18px 20px 16px !important;
    }

    body.home #masthead .smartprice-bottom-header > .row {
        display: grid !important;
        gap: 18px !important;
        grid-template-columns: 1fr !important;
        margin: 0 !important;
    }

    body.home #masthead .smartprice-bottom-header > .row > [class*="col-"] {
        max-width: none !important;
        padding: 0 !important;
        width: 100% !important;
    }

    body.home .mobile-header {
        align-items: center !important;
        display: grid !important;
        gap: 14px !important;
        grid-template-columns: 44px minmax(0, 1fr) auto !important;
        min-height: 48px !important;
        width: 100% !important;
    }

    body.home #menu-button {
        align-items: center !important;
        background: transparent !important;
        border: 0 !important;
        border-radius: 999px !important;
        color: #111827 !important;
        display: inline-flex !important;
        height: 44px !important;
        justify-content: center !important;
        padding: 0 !important;
        width: 44px !important;
    }

    body.home #menu-button .smartprice-lucide {
        height: 28px !important;
        stroke-width: 1.8 !important;
        width: 28px !important;
    }

    body.home .mobile-header .site-branding {
        align-items: center !important;
        display: flex !important;
        justify-content: flex-start !important;
        min-width: 0 !important;
    }

    body.home .mobile-header .logo {
        height: auto !important;
        max-width: 188px !important;
        width: 44vw !important;
    }

    body.home .mobile-header-right {
        align-items: center !important;
        display: flex !important;
        gap: 16px !important;
        justify-content: flex-end !important;
    }

    body.home .smartprice-mobile-account,
    body.home .fixed-cart-mobile .cart {
        align-items: center !important;
        background: transparent !important;
        border: 0 !important;
        color: #111827 !important;
        display: inline-flex !important;
        height: 40px !important;
        justify-content: center !important;
        padding: 0 !important;
        position: relative !important;
        width: 40px !important;
    }

    body.home .smartprice-mobile-account .smartprice-lucide,
    body.home .fixed-cart-mobile .smartprice-lucide {
        height: 27px !important;
        stroke-width: 1.8 !important;
        width: 27px !important;
    }

    body.home .fixed-cart-mobile .header-cart-count {
        align-items: center !important;
        display: inline-flex !important;
        height: 40px !important;
        justify-content: center !important;
        position: relative !important;
        width: 40px !important;
    }

    body.home .fixed-cart-mobile .smartprice-cart-count-number {
        align-items: center !important;
        background: #ff7a1a !important;
        border: 2px solid #fff !important;
        border-radius: 999px !important;
        color: #fff !important;
        display: inline-flex !important;
        font-size: 11px !important;
        font-weight: 900 !important;
        height: 21px !important;
        justify-content: center !important;
        line-height: 1 !important;
        min-width: 21px !important;
        padding: 0 5px !important;
        position: absolute !important;
        right: -2px !important;
        top: -3px !important;
    }

    body.home .smartprice-bottom-header #ajaxsearchlite1,
    body.home .smartprice-bottom-header div.asl_w {
        border-radius: 16px !important;
        box-shadow: 0 14px 32px rgba(17, 24, 39, 0.07) !important;
        height: 64px !important;
        max-width: none !important;
        width: 100% !important;
    }

    body.home .smartprice-bottom-header #ajaxsearchlite1 .probox,
    body.home .smartprice-bottom-header div.asl_w .probox {
        border-radius: 16px !important;
        height: 64px !important;
    }

    body.home .smartprice-bottom-header div.asl_w .probox .promagnifier {
        border-radius: 14px !important;
        height: 56px !important;
        margin: 4px !important;
        width: 56px !important;
    }

    body.home .smartprice-bottom-header div.asl_w .probox .proinput input {
        font-size: 16px !important;
    }

    body.home .smartprice-home > .container:first-child {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    body.home .smartprice-feature-nav {
        display: none !important;
    }

    body.home .smartprice-trust-row {
        background: transparent !important;
        box-shadow: none !important;
        display: grid !important;
        gap: 16px !important;
        grid-auto-columns: minmax(150px, 1fr) !important;
        grid-auto-flow: column !important;
        grid-template-columns: none !important;
        margin: 12px -20px 0 !important;
        order: 1 !important;
        overflow-x: auto !important;
        padding: 0 20px 4px !important;
        scrollbar-width: none !important;
    }

    body.home .smartprice-trust-row::-webkit-scrollbar {
        display: none !important;
    }

    body.home .smartprice-trust-row div {
        align-items: center !important;
        background: transparent !important;
        box-shadow: none !important;
        display: grid !important;
        gap: 3px 10px !important;
        grid-template-columns: 46px minmax(0, 1fr) !important;
        min-width: 150px !important;
        padding: 0 !important;
    }

    body.home .smartprice-trust-row .smartprice-lucide {
        align-self: center !important;
        background: #fff3ea !important;
        border-radius: 999px !important;
        color: #ff7a1a !important;
        grid-row: span 2 !important;
        height: 46px !important;
        padding: 12px !important;
        width: 46px !important;
    }

    body.home .smartprice-trust-row strong {
        color: #111827 !important;
        font-size: 13px !important;
        font-weight: 850 !important;
        line-height: 1.15 !important;
        margin: 0 !important;
        white-space: nowrap !important;
    }

    body.home .smartprice-trust-row span {
        color: #6b7280 !important;
        font-size: 12px !important;
        line-height: 1.25 !important;
        margin: 0 !important;
    }

    body.home .smartprice-home-hero-grid {
        display: grid !important;
        gap: 20px !important;
        grid-template-columns: 1fr !important;
        order: 2 !important;
    }

    body.home .smartprice-hero-main {
        border-radius: 20px !important;
        min-height: 470px !important;
        overflow: hidden !important;
        padding: 36px !important;
        position: relative !important;
    }

    body.home .smartprice-kicker {
        display: none !important;
    }

    body.home .smartprice-hero-copy {
        max-width: 48% !important;
        position: relative !important;
        width: 48% !important;
        z-index: 2 !important;
    }

    body.home .smartprice-hero-copy h1 {
        color: #111827 !important;
        font-size: 30px !important;
        font-weight: 850 !important;
        letter-spacing: 0 !important;
        line-height: 1.12 !important;
        margin: 0 0 18px !important;
    }

    body.home .smartprice-hero-copy h1 span {
        display: block !important;
        font-size: 56px !important;
        line-height: 1 !important;
        margin-top: 8px !important;
        white-space: nowrap !important;
    }

    body.home .smartprice-hero-copy h1 span strong {
        color: #111827 !important;
        font-size: inherit !important;
        font-weight: 900 !important;
    }

    body.home .smartprice-hero-copy h1 span em {
        color: #ff5a1f !important;
        font-size: inherit !important;
        font-style: normal !important;
        font-weight: 900 !important;
    }

    body.home .smartprice-hero-copy p {
        color: #111827 !important;
        font-size: 18px !important;
        line-height: 1.45 !important;
        margin: 0 0 28px !important;
    }

    body.home .smartprice-hero-copy ul {
        gap: 13px !important;
        margin: 0 0 28px !important;
    }

    body.home .smartprice-hero-copy li {
        color: #111827 !important;
        font-size: 16px !important;
        font-weight: 750 !important;
        line-height: 1.35 !important;
    }

    body.home .smartprice-hero-main .smartprice-primary-btn {
        border-radius: 12px !important;
        font-size: 15px !important;
        height: 56px !important;
        padding: 0 22px !important;
    }

    body.home .smartprice-hero-visual {
        bottom: 8px !important;
        display: block !important;
        height: 78% !important;
        left: auto !important;
        margin: 0 !important;
        min-height: 0 !important;
        position: absolute !important;
        right: 0 !important;
        top: auto !important;
        width: 60% !important;
        z-index: 1 !important;
    }

    body.home .smartprice-hero-visual img {
        bottom: 0 !important;
        height: 100% !important;
        max-height: none !important;
        max-width: none !important;
        object-fit: contain !important;
        object-position: right bottom !important;
        position: absolute !important;
        right: -4% !important;
        width: 112% !important;
    }

    body.home .smartprice-promo-grid {
        display: grid !important;
        gap: 16px !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    body.home .smartprice-promo-card {
        border-radius: 16px !important;
        min-height: 184px !important;
        padding: 22px !important;
    }

    body.home .smartprice-promo-card strong {
        font-size: 15px !important;
        line-height: 1.15 !important;
    }

    body.home .smartprice-promo-card span {
        font-size: 18px !important;
        margin-bottom: 42px !important;
    }
}

@media (max-width: 575px) {
    body.home #masthead .smartprice-main-header {
        padding: 16px 14px 14px !important;
    }

    body.home .mobile-header {
        gap: 10px !important;
        grid-template-columns: 42px minmax(0, 1fr) auto !important;
    }

    body.home .mobile-header .logo {
        max-width: 150px !important;
        width: 42vw !important;
    }

    body.home .mobile-header-right {
        gap: 8px !important;
    }

    body.home .smartprice-mobile-account,
    body.home .fixed-cart-mobile .cart,
    body.home .fixed-cart-mobile .header-cart-count {
        height: 36px !important;
        width: 36px !important;
    }

    body.home .smartprice-mobile-account .smartprice-lucide,
    body.home .fixed-cart-mobile .smartprice-lucide {
        height: 25px !important;
        width: 25px !important;
    }

    body.home .smartprice-bottom-header #ajaxsearchlite1,
    body.home .smartprice-bottom-header div.asl_w,
    body.home .smartprice-bottom-header #ajaxsearchlite1 .probox,
    body.home .smartprice-bottom-header div.asl_w .probox {
        height: 52px !important;
    }

    body.home .smartprice-bottom-header div.asl_w .probox .promagnifier {
        height: 46px !important;
        width: 46px !important;
    }

    body.home .smartprice-home > .container:first-child {
        gap: 18px !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    body.home .smartprice-trust-row {
        gap: 12px !important;
        grid-auto-columns: minmax(138px, 1fr) !important;
        margin-left: -14px !important;
        margin-right: -14px !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    body.home .smartprice-hero-main {
        min-height: 632px !important;
        padding: 28px !important;
    }

    body.home .smartprice-hero-copy {
        max-width: 100% !important;
        width: 100% !important;
    }

    body.home .smartprice-hero-copy h1 {
        font-size: 21px !important;
        max-width: 310px !important;
    }

    body.home .smartprice-hero-copy h1 span {
        font-size: 42px !important;
    }

    body.home .smartprice-hero-copy p {
        font-size: 15px !important;
        max-width: 290px !important;
    }

    body.home .smartprice-hero-copy li {
        font-size: 14px !important;
    }

    body.home .smartprice-hero-main .smartprice-primary-btn {
        height: 46px !important;
        max-width: 226px !important;
        width: 100% !important;
    }

    body.home .smartprice-hero-visual {
        bottom: 18px !important;
        height: 34% !important;
        right: 18px !important;
        width: 76% !important;
    }

    body.home .smartprice-hero-visual img {
        right: 0 !important;
        width: 100% !important;
    }

    body.home .smartprice-promo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    body.home .smartprice-promo-card {
        min-height: 160px !important;
        padding: 18px !important;
    }
}

/* Mobile product action hard override. Must stay at the end of this file. */
@media (max-width: 767px) {
    body.smartprice-home .product_home .smartprice-product-actions,
    body.smartprice-home .product_home:hover .smartprice-product-actions,
    body.smartprice-home .product_home:active .smartprice-product-actions,
    body.smartprice-home .product_home:focus .smartprice-product-actions,
    body.smartprice-home .product_home:focus-within .smartprice-product-actions,
    body.smartprice-home .product_home:not(:hover) .smartprice-product-actions,
    body.smartprice-home .product_home:focus-within:not(:hover) .smartprice-product-actions,
    body.woocommerce-page ul.products li.product .smartprice-product-actions,
    body.woocommerce-page ul.products li.product:hover .smartprice-product-actions,
    body.woocommerce-page ul.products li.product:active .smartprice-product-actions,
    body.woocommerce-page ul.products li.product:focus-within .smartprice-product-actions,
    body ul.products li.product .smartprice-product-actions,
    body ul.products li.product:hover .smartprice-product-actions,
    body ul.products li.product:active .smartprice-product-actions,
    body ul.products li.product:focus-within .smartprice-product-actions {
        align-items: center !important;
        bottom: auto !important;
        display: flex !important;
        gap: 8px !important;
        justify-content: center !important;
        left: calc(50% - 46px) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        position: absolute !important;
        right: auto !important;
        top: 128px !important;
        transform: none !important;
        transition: none !important;
        visibility: visible !important;
        z-index: 300 !important;
    }

    body .smartprice-product-actions .smart-cart-btn,
    body .smartprice-product-actions .smart-cart-btn:hover,
    body .smartprice-product-actions .smart-cart-btn:focus,
    body .smartprice-product-actions .smart-cart-btn:active,
    body .smartprice-product-actions .smartprice-wishlist-btn,
    body .smartprice-product-actions .smartprice-wishlist-btn:hover,
    body .smartprice-product-actions .smartprice-wishlist-btn:focus,
    body .smartprice-product-actions .smartprice-wishlist-btn:active,
    body .smartprice-product-actions .yith-wcwl-add-button a,
    body .smartprice-product-actions .yith-wcwl-add-button a:hover,
    body .smartprice-product-actions .yith-wcwl-add-button a:focus,
    body .smartprice-product-actions .yith-wcwl-add-button a:active,
    body .smartprice-product-actions .yith-add-to-wishlist-button-block button,
    body .smartprice-product-actions .yith-add-to-wishlist-button-block button:hover,
    body .smartprice-product-actions .yith-add-to-wishlist-button-block button:focus,
    body .smartprice-product-actions .yith-add-to-wishlist-button-block button:active {
        bottom: auto !important;
        left: auto !important;
        margin: 0 !important;
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
    }

    body .smartprice-product-actions .added_to_cart:not(.smart-cart-btn),
    body .smartprice-product-actions .wc-forward:not(.smart-cart-btn) {
        display: none !important;
    }
}

/* Final desktop homepage action fix: only homepage desktop cards. */
@media (min-width: 768px) {
    body.smartprice-home .product_home .smartprice-product-actions,
    body.smartprice-home .product_home:hover .smartprice-product-actions,
    body.smartprice-home .product_home:active .smartprice-product-actions,
    body.smartprice-home .product_home:focus-within .smartprice-product-actions {
        align-items: center !important;
        display: flex !important;
        gap: 8px !important;
        justify-content: center !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: max-content !important;
    }

    .smartprice-home .product_home .smartprice-product-actions > a.added_to_cart:not(.smart-cart-btn),
    .smartprice-home .product_home .smartprice-product-actions > a.wc-forward:not(.smart-cart-btn),
    .smartprice-home .product_home .smartprice-product-actions .added_to_cart:not(.smart-cart-btn),
    .smartprice-home .product_home .smartprice-product-actions .wc-forward:not(.smart-cart-btn),
    .smartprice-home .product_home .smartprice-product-actions + a.added_to_cart:not(.smart-cart-btn),
    .smartprice-home .product_home .smartprice-product-actions + a.wc-forward:not(.smart-cart-btn),
    .smartprice-home .product_home a.added_to_cart.wc-forward:not(.smart-cart-btn),
    .smartprice-home .product_home .smartprice-product-actions > a.added_to_cart:not(.smart-cart-btn),
    .smartprice-home .product_home .smartprice-product-actions > a.wc-forward:not(.smart-cart-btn),
    .smartprice-home .product_home .smartprice-product-actions .added_to_cart:not(.smart-cart-btn),
    .smartprice-home .product_home .smartprice-product-actions .wc-forward:not(.smart-cart-btn),
    .smartprice-home .product_home .smartprice-product-actions + a.added_to_cart:not(.smart-cart-btn),
    .smartprice-home .product_home .smartprice-product-actions + a.wc-forward:not(.smart-cart-btn),
    .smartprice-home .product_home a.added_to_cart.wc-forward:not(.smart-cart-btn),
    body.smartprice-home .product_home .smartprice-product-actions > a.added_to_cart:not(.smart-cart-btn),
    body.smartprice-home .product_home .smartprice-product-actions > a.wc-forward:not(.smart-cart-btn),
    body.smartprice-home .product_home .smartprice-product-actions .added_to_cart:not(.smart-cart-btn),
    body.smartprice-home .product_home .smartprice-product-actions .wc-forward:not(.smart-cart-btn),
    body.smartprice-home .product_home .smartprice-product-actions + a.added_to_cart:not(.smart-cart-btn),
    body.smartprice-home .product_home .smartprice-product-actions + a.wc-forward:not(.smart-cart-btn),
    body.smartprice-home .product_home a.added_to_cart.wc-forward:not(.smart-cart-btn) {
        display: none !important;
        flex: 0 0 0 !important;
        height: 0 !important;
        min-height: 0 !important;
        min-width: 0 !important;
        opacity: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important;
        visibility: hidden !important;
        width: 0 !important;
    }

    .smartprice-home .product_home .smart-cart-btn.added:not(.loading):not(.smartprice-is-loading)::before,
    .smartprice-home .product_home .smart-cart-btn.added_to_cart:not(.loading):not(.smartprice-is-loading)::before,
    .smartprice-home .product_home .smart-cart-btn.wc-forward:not(.loading):not(.smartprice-is-loading)::before,
    body.smartprice-home .product_home .smart-cart-btn.added:not(.loading):not(.smartprice-is-loading)::before,
    body.smartprice-home .product_home .smart-cart-btn.added_to_cart:not(.loading):not(.smartprice-is-loading)::before,
    body.smartprice-home .product_home .smart-cart-btn.wc-forward:not(.loading):not(.smartprice-is-loading)::before {
        animation: none !important;
        background: currentColor !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        content: "" !important;
        display: block !important;
        height: 18px !important;
        left: auto !important;
        margin: 0 !important;
        mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='21' r='1'/%3E%3Ccircle cx='19' cy='21' r='1'/%3E%3Cpath d='M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12'/%3E%3C/svg%3E") center / contain no-repeat !important;
        -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='21' r='1'/%3E%3Ccircle cx='19' cy='21' r='1'/%3E%3Cpath d='M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12'/%3E%3C/svg%3E") center / contain no-repeat !important;
        opacity: 1 !important;
        padding: 0 !important;
        position: static !important;
        top: auto !important;
        transform: translateX(-50%) !important;
        visibility: visible !important;
        width: 18px !important;
        z-index: 1 !important;
    }
}

/* Mobile product-card actions: center the icon group horizontally everywhere. */
@media (max-width: 767px) {
    body .smartprice-product-actions,
    body ul.products li.product .smartprice-product-actions,
    body .product_home .smartprice-product-actions,
    body .product-hover-style .smartprice-product-actions,
    body.smartprice-home .product_home .smartprice-product-actions,
    body.woocommerce-page ul.products li.product .smartprice-product-actions {
        align-items: center !important;
        display: flex !important;
        gap: 8px !important;
        justify-content: center !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: max-content !important;
    }

    body .smartprice-product-actions:hover,
    body ul.products li.product:hover .smartprice-product-actions,
    body .product_home:hover .smartprice-product-actions,
    body .product-hover-style:hover .smartprice-product-actions,
    body .product_home:focus-within .smartprice-product-actions,
    body .product-hover-style:focus-within .smartprice-product-actions {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}

/* Final utility header menu reset: top item must match plain header links. */
#masthead .smartprice-utility-right nav.smartprice-utility-menu,
#masthead .smartprice-utility-right nav.smartprice-utility-menu * {
    text-transform: none !important;
    letter-spacing: 0 !important;
}

#masthead .smartprice-utility-right nav.smartprice-utility-menu > ul.smartprice-utility-nav,
#masthead .smartprice-utility-right nav.smartprice-utility-menu ul.smartprice-utility-nav {
    align-items: center !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    display: flex !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

#masthead .smartprice-utility-right nav.smartprice-utility-menu ul.smartprice-utility-nav > li,
#masthead .smartprice-utility-right nav.smartprice-utility-menu ul.smartprice-utility-nav > li.menu-item,
#masthead .smartprice-utility-right nav.smartprice-utility-menu ul.smartprice-utility-nav > li.megamenu,
#masthead .smartprice-utility-right nav.smartprice-utility-menu ul.smartprice-utility-nav > li.dropdown {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: block !important;
    height: auto !important;
    margin: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    position: relative !important;
    width: auto !important;
}

#masthead .smartprice-utility-right nav.smartprice-utility-menu ul.smartprice-utility-nav > li > a,
#masthead .smartprice-utility-right nav.smartprice-utility-menu ul.smartprice-utility-nav > li > a.nav-link,
#masthead .smartprice-utility-right nav.smartprice-utility-menu ul.smartprice-utility-nav > li > a.dropdown-toggle,
#masthead .smartprice-utility-right nav.smartprice-utility-menu ul.smartprice-utility-nav > li > a[role="button"] {
    align-items: center !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: var(--sp-dark, #111827) !important;
    display: inline-flex !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    gap: 6px !important;
    height: auto !important;
    line-height: 1 !important;
    margin: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    width: auto !important;
}

#masthead .smartprice-utility-right nav.smartprice-utility-menu ul.smartprice-utility-nav > li > a > i,
#masthead .smartprice-utility-right nav.smartprice-utility-menu ul.smartprice-utility-nav > li > a > svg,
#masthead .smartprice-utility-right nav.smartprice-utility-menu ul.smartprice-utility-nav > li > a > img,
#masthead .smartprice-utility-right nav.smartprice-utility-menu ul.smartprice-utility-nav > li > a > .smartprice-lucide {
    display: none !important;
}

#masthead .smartprice-utility-right nav.smartprice-utility-menu ul.smartprice-utility-nav > li.menu-item-has-children > a::after {
    border: solid currentColor !important;
    border-width: 0 1.7px 1.7px 0 !important;
    content: "" !important;
    display: inline-block !important;
    height: 6px !important;
    margin-left: 4px !important;
    transform: rotate(45deg) translateY(-2px) !important;
    width: 6px !important;
}

#masthead .smartprice-utility-right nav.smartprice-utility-menu ul.smartprice-utility-nav .sub-menu {
    background: #fff !important;
    border: 1px solid rgba(237, 240, 243, 0.95) !important;
    border-radius: 10px !important;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.14) !important;
    display: block !important;
    left: 50% !important;
    list-style: none !important;
    margin: 0 !important;
    min-width: 230px !important;
    opacity: 0 !important;
    padding: 8px !important;
    pointer-events: none !important;
    position: absolute !important;
    top: calc(100% + 10px) !important;
    transform: translateX(-50%) translateY(6px) !important;
    visibility: hidden !important;
    width: max-content !important;
    z-index: 300 !important;
}

#masthead .smartprice-utility-right nav.smartprice-utility-menu ul.smartprice-utility-nav > li:hover > .sub-menu,
#masthead .smartprice-utility-right nav.smartprice-utility-menu ul.smartprice-utility-nav > li:focus-within > .sub-menu {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
    visibility: visible !important;
}

/* Final header utility menu dropdown override. */
#masthead .smartprice-utility-right .smartprice-utility-menu {
    position: relative !important;
    z-index: 120 !important;
}

#masthead .smartprice-utility-right .smartprice-utility-nav {
    align-items: center !important;
    display: flex !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

#masthead .smartprice-utility-right .smartprice-utility-nav > li {
    position: relative !important;
}

#masthead .smartprice-utility-right .smartprice-utility-nav > li > a {
    align-items: center !important;
    color: var(--sp-dark, #111827) !important;
    display: inline-flex !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    gap: 6px !important;
    line-height: 1 !important;
    padding: 8px 0 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

#masthead .smartprice-utility-right .smartprice-utility-nav > li.menu-item-has-children > a::after {
    border: solid currentColor !important;
    border-width: 0 1.7px 1.7px 0 !important;
    content: "" !important;
    display: inline-block !important;
    height: 6px !important;
    margin-left: 3px !important;
    transform: rotate(45deg) translateY(-2px) !important;
    width: 6px !important;
}

#masthead .smartprice-utility-right .smartprice-utility-nav .sub-menu {
    background: #fff !important;
    border: 1px solid rgba(237, 240, 243, 0.95) !important;
    border-radius: 10px !important;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.14) !important;
    display: block !important;
    left: 50% !important;
    list-style: none !important;
    margin: 0 !important;
    min-width: 230px !important;
    opacity: 0 !important;
    padding: 8px !important;
    pointer-events: none !important;
    position: absolute !important;
    top: calc(100% + 10px) !important;
    transform: translateX(-50%) translateY(6px) !important;
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease !important;
    visibility: hidden !important;
    z-index: 300 !important;
}

#masthead .smartprice-utility-right .smartprice-utility-nav .sub-menu::before {
    content: "" !important;
    height: 12px !important;
    left: 0 !important;
    position: absolute !important;
    right: 0 !important;
    top: -12px !important;
}

#masthead .smartprice-utility-right .smartprice-utility-nav > li:hover > .sub-menu,
#masthead .smartprice-utility-right .smartprice-utility-nav > li:focus-within > .sub-menu {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
    visibility: visible !important;
}

#masthead .smartprice-utility-right .smartprice-utility-nav .sub-menu a {
    align-items: center !important;
    border-radius: 8px !important;
    color: var(--sp-dark, #111827) !important;
    display: flex !important;
    font-size: 13px !important;
    font-weight: 750 !important;
    gap: 8px !important;
    justify-content: flex-start !important;
    line-height: 1.25 !important;
    padding: 10px 12px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    width: 100% !important;
}

#masthead .smartprice-utility-right .smartprice-utility-nav .sub-menu a:hover,
#masthead .smartprice-utility-right .smartprice-utility-nav .sub-menu a:focus {
    background: #fff4ec !important;
    color: var(--sp-orange, #ff7a1a) !important;
}

/* Utility menu top item must match the plain "Klientu atbalsts" link. */
#masthead .smartprice-utility-right .smartprice-utility-menu .smartprice-utility-nav > li,
#masthead .smartprice-utility-right .smartprice-utility-menu .smartprice-utility-nav > li.menu-item,
#masthead .smartprice-utility-right .smartprice-utility-menu .smartprice-utility-nav > li.megamenu,
#masthead .smartprice-utility-right .smartprice-utility-menu .smartprice-utility-nav > li.dropdown {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

#masthead .smartprice-utility-right .smartprice-utility-menu .smartprice-utility-nav > li > a,
#masthead .smartprice-utility-right .smartprice-utility-menu .smartprice-utility-nav > li > a.nav-link,
#masthead .smartprice-utility-right .smartprice-utility-menu .smartprice-utility-nav > li > a.dropdown-toggle {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: var(--sp-dark, #111827) !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
    min-height: 0 !important;
    padding: 0 !important;
    text-transform: none !important;
}

#masthead .smartprice-utility-right .smartprice-utility-menu .smartprice-utility-nav > li > a > i,
#masthead .smartprice-utility-right .smartprice-utility-menu .smartprice-utility-nav > li > a > svg,
#masthead .smartprice-utility-right .smartprice-utility-menu .smartprice-utility-nav > li > a > .smartprice-lucide {
    display: none !important;
}

/* Desktop homepage product-card actions: keep the two icon buttons centered and hide Woo's generated cart link. */
@media (min-width: 768px) {
    body.smartprice-home .product_home .smartprice-product-actions,
    body.smartprice-home .product_home:hover .smartprice-product-actions,
    body.smartprice-home .product_home:active .smartprice-product-actions,
    body.smartprice-home .product_home:focus-within .smartprice-product-actions {
        align-items: center !important;
        display: flex !important;
        gap: 8px !important;
        justify-content: center !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: 76px !important;
    }

    body.smartprice-home .product_home .smartprice-product-actions > a.added_to_cart:not(.smart-cart-btn),
    body.smartprice-home .product_home .smartprice-product-actions > a.wc-forward:not(.smart-cart-btn),
    body.smartprice-home .product_home .smartprice-product-actions .added_to_cart:not(.smart-cart-btn),
    body.smartprice-home .product_home .smartprice-product-actions .wc-forward:not(.smart-cart-btn),
    body.smartprice-home .product_home .smartprice-product-actions + a.added_to_cart:not(.smart-cart-btn),
    body.smartprice-home .product_home .smartprice-product-actions + a.wc-forward:not(.smart-cart-btn),
    body.smartprice-home .product_home a.added_to_cart.wc-forward:not(.smart-cart-btn) {
        display: none !important;
        flex: 0 0 0 !important;
        height: 0 !important;
        min-height: 0 !important;
        min-width: 0 !important;
        opacity: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important;
        visibility: hidden !important;
        width: 0 !important;
    }

    .smartprice-home .product_home .smart-cart-btn.added:not(.loading):not(.smartprice-is-loading)::before,
    .smartprice-home .product_home .smart-cart-btn.added_to_cart:not(.loading):not(.smartprice-is-loading)::before,
    .smartprice-home .product_home .smart-cart-btn.wc-forward:not(.loading):not(.smartprice-is-loading)::before,
    body.smartprice-home .product_home .smart-cart-btn.added:not(.loading):not(.smartprice-is-loading)::before,
    body.smartprice-home .product_home .smart-cart-btn.added_to_cart:not(.loading):not(.smartprice-is-loading)::before,
    body.smartprice-home .product_home .smart-cart-btn.wc-forward:not(.loading):not(.smartprice-is-loading)::before {
        animation: none !important;
        background: currentColor !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        content: "" !important;
        display: block !important;
        height: 18px !important;
        left: auto !important;
        margin: 0 !important;
        mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='21' r='1'/%3E%3Ccircle cx='19' cy='21' r='1'/%3E%3Cpath d='M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12'/%3E%3C/svg%3E") center / contain no-repeat !important;
        -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='21' r='1'/%3E%3Ccircle cx='19' cy='21' r='1'/%3E%3Cpath d='M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12'/%3E%3C/svg%3E") center / contain no-repeat !important;
        opacity: 1 !important;
        padding: 0 !important;
        position: static !important;
        top: auto !important;
        transform: translateX(-50%) !important;
        visibility: visible !important;
        width: 18px !important;
        z-index: 1 !important;
    }
}

/* Mobile product action hard override. Must stay at the end of this file. */
@media (max-width: 767px) {
    body.smartprice-home .product_home .smartprice-product-actions,
    body.smartprice-home .product_home:hover .smartprice-product-actions,
    body.smartprice-home .product_home:active .smartprice-product-actions,
    body.smartprice-home .product_home:focus .smartprice-product-actions,
    body.smartprice-home .product_home:focus-within .smartprice-product-actions,
    body.smartprice-home .product_home:not(:hover) .smartprice-product-actions,
    body.smartprice-home .product_home:focus-within:not(:hover) .smartprice-product-actions,
    body.woocommerce-page ul.products li.product .smartprice-product-actions,
    body.woocommerce-page ul.products li.product:hover .smartprice-product-actions,
    body.woocommerce-page ul.products li.product:active .smartprice-product-actions,
    body.woocommerce-page ul.products li.product:focus-within .smartprice-product-actions,
    body ul.products li.product .smartprice-product-actions,
    body ul.products li.product:hover .smartprice-product-actions,
    body ul.products li.product:active .smartprice-product-actions,
    body ul.products li.product:focus-within .smartprice-product-actions {
        align-items: center !important;
        bottom: auto !important;
        display: flex !important;
        gap: 8px !important;
        justify-content: center !important;
        left: calc(50% - 46px) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        position: absolute !important;
        right: auto !important;
        top: 128px !important;
        transform: none !important;
        transition: none !important;
        visibility: visible !important;
        z-index: 300 !important;
    }

    body .smartprice-product-actions .smart-cart-btn,
    body .smartprice-product-actions .smart-cart-btn:hover,
    body .smartprice-product-actions .smart-cart-btn:focus,
    body .smartprice-product-actions .smart-cart-btn:active,
    body .smartprice-product-actions .smartprice-wishlist-btn,
    body .smartprice-product-actions .smartprice-wishlist-btn:hover,
    body .smartprice-product-actions .smartprice-wishlist-btn:focus,
    body .smartprice-product-actions .smartprice-wishlist-btn:active,
    body .smartprice-product-actions .yith-wcwl-add-button a,
    body .smartprice-product-actions .yith-wcwl-add-button a:hover,
    body .smartprice-product-actions .yith-wcwl-add-button a:focus,
    body .smartprice-product-actions .yith-wcwl-add-button a:active,
    body .smartprice-product-actions .yith-add-to-wishlist-button-block button,
    body .smartprice-product-actions .yith-add-to-wishlist-button-block button:hover,
    body .smartprice-product-actions .yith-add-to-wishlist-button-block button:focus,
    body .smartprice-product-actions .yith-add-to-wishlist-button-block button:active {
        bottom: auto !important;
        left: auto !important;
        margin: 0 !important;
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
    }
}

/* Mobile product action hard override. Must stay at the end of this file. */
@media (max-width: 767px) {
    body.smartprice-home .product_home .smartprice-product-actions,
    body.smartprice-home .product_home:hover .smartprice-product-actions,
    body.smartprice-home .product_home:active .smartprice-product-actions,
    body.smartprice-home .product_home:focus .smartprice-product-actions,
    body.smartprice-home .product_home:focus-within .smartprice-product-actions,
    body.smartprice-home .product_home:not(:hover) .smartprice-product-actions,
    body.smartprice-home .product_home:focus-within:not(:hover) .smartprice-product-actions,
    body.woocommerce-page ul.products li.product .smartprice-product-actions,
    body.woocommerce-page ul.products li.product:hover .smartprice-product-actions,
    body.woocommerce-page ul.products li.product:active .smartprice-product-actions,
    body.woocommerce-page ul.products li.product:focus-within .smartprice-product-actions,
    body ul.products li.product .smartprice-product-actions,
    body ul.products li.product:hover .smartprice-product-actions,
    body ul.products li.product:active .smartprice-product-actions,
    body ul.products li.product:focus-within .smartprice-product-actions {
        bottom: auto !important;
        left: calc(50% - 46px) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        position: absolute !important;
        right: auto !important;
        top: 128px !important;
        transform: none !important;
        transition: none !important;
        visibility: visible !important;
        z-index: 300 !important;
    }

    body .smartprice-product-actions .smart-cart-btn,
    body .smartprice-product-actions .smart-cart-btn:hover,
    body .smartprice-product-actions .smart-cart-btn:focus,
    body .smartprice-product-actions .smart-cart-btn:active,
    body .smartprice-product-actions .smartprice-wishlist-btn,
    body .smartprice-product-actions .smartprice-wishlist-btn:hover,
    body .smartprice-product-actions .smartprice-wishlist-btn:focus,
    body .smartprice-product-actions .smartprice-wishlist-btn:active,
    body .smartprice-product-actions .yith-wcwl-add-button a,
    body .smartprice-product-actions .yith-wcwl-add-button a:hover,
    body .smartprice-product-actions .yith-wcwl-add-button a:focus,
    body .smartprice-product-actions .yith-wcwl-add-button a:active,
    body .smartprice-product-actions .yith-add-to-wishlist-button-block button,
    body .smartprice-product-actions .yith-add-to-wishlist-button-block button:hover,
    body .smartprice-product-actions .yith-add-to-wishlist-button-block button:focus,
    body .smartprice-product-actions .yith-add-to-wishlist-button-block button:active {
        bottom: auto !important;
        left: auto !important;
        margin: 0 !important;
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
    }
}

/* Final mobile product action lock: keep cart/wishlist buttons fixed while tapping/loading. */
@media (max-width: 767px) {
    body.smartprice-home .product_home .smartprice-product-actions,
    body.smartprice-home .product_home:hover .smartprice-product-actions,
    body.smartprice-home .product_home:active .smartprice-product-actions,
    body.smartprice-home .product_home:focus .smartprice-product-actions,
    body.smartprice-home .product_home:focus-within .smartprice-product-actions,
    body.smartprice-home .product_home:not(:hover) .smartprice-product-actions,
    body.smartprice-home .product_home:focus-within:not(:hover) .smartprice-product-actions,
    body.woocommerce-page ul.products li.product .smartprice-product-actions,
    body.woocommerce-page ul.products li.product:hover .smartprice-product-actions,
    body.woocommerce-page ul.products li.product:active .smartprice-product-actions,
    body.woocommerce-page ul.products li.product:focus-within .smartprice-product-actions,
    body ul.products li.product .smartprice-product-actions,
    body ul.products li.product:hover .smartprice-product-actions,
    body ul.products li.product:active .smartprice-product-actions,
    body ul.products li.product:focus-within .smartprice-product-actions {
        align-items: center !important;
        bottom: auto !important;
        display: flex !important;
        gap: 8px !important;
        justify-content: center !important;
        left: calc(50% - 46px) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        position: absolute !important;
        right: auto !important;
        top: 128px !important;
        transform: none !important;
        transition: none !important;
        visibility: visible !important;
        z-index: 300 !important;
    }

    body .smartprice-product-actions .smart-cart-btn,
    body .smartprice-product-actions .smart-cart-btn:hover,
    body .smartprice-product-actions .smart-cart-btn:focus,
    body .smartprice-product-actions .smart-cart-btn:active,
    body .smartprice-product-actions .smartprice-wishlist-btn,
    body .smartprice-product-actions .smartprice-wishlist-btn:hover,
    body .smartprice-product-actions .smartprice-wishlist-btn:focus,
    body .smartprice-product-actions .smartprice-wishlist-btn:active,
    body .smartprice-product-actions .yith-wcwl-add-button a,
    body .smartprice-product-actions .yith-wcwl-add-button a:hover,
    body .smartprice-product-actions .yith-wcwl-add-button a:focus,
    body .smartprice-product-actions .yith-wcwl-add-button a:active,
    body .smartprice-product-actions .yith-add-to-wishlist-button-block button,
    body .smartprice-product-actions .yith-add-to-wishlist-button-block button:hover,
    body .smartprice-product-actions .yith-add-to-wishlist-button-block button:focus,
    body .smartprice-product-actions .yith-add-to-wishlist-button-block button:active {
        align-items: center !important;
        background: #ffffff !important;
        border: 1px solid rgba(17, 24, 39, 0.06) !important;
        border-radius: 999px !important;
        bottom: auto !important;
        box-shadow: 0 10px 24px rgba(17, 24, 39, 0.12) !important;
        color: #111827 !important;
        display: inline-flex !important;
        flex: 0 0 42px !important;
        height: 42px !important;
        justify-content: center !important;
        left: auto !important;
        margin: 0 !important;
        max-height: 42px !important;
        max-width: 42px !important;
        min-height: 42px !important;
        min-width: 42px !important;
        opacity: 1 !important;
        padding: 0 !important;
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        transition: background-color 0.16s ease, box-shadow 0.16s ease, color 0.16s ease !important;
        visibility: visible !important;
        width: 42px !important;
    }

    body .smartprice-product-actions .smart-cart-btn.smartprice-is-loading,
    body .smartprice-product-actions .smart-cart-btn.loading,
    body .smartprice-product-actions .smartprice-wishlist-btn.smartprice-is-loading,
    body .smartprice-product-actions .yith-wcwl-add-button a.smartprice-is-loading,
    body .smartprice-product-actions .yith-add-to-wishlist-button-block button.smartprice-is-loading {
        color: transparent !important;
        transform: none !important;
    }

    body .smartprice-product-actions .smart-cart-btn.smartprice-is-loading::before,
    body .smartprice-product-actions .smart-cart-btn.loading::before,
    body .smartprice-product-actions .smartprice-wishlist-btn.smartprice-is-loading::before,
    body .smartprice-product-actions .yith-wcwl-add-button a.smartprice-is-loading::before,
    body .smartprice-product-actions .yith-add-to-wishlist-button-block button.smartprice-is-loading::before {
        animation: smartpriceSpin 0.72s linear infinite !important;
        border: 2px solid rgba(17, 24, 39, 0.16) !important;
        border-radius: 999px !important;
        border-top-color: #111827 !important;
        box-sizing: border-box !important;
        content: "" !important;
        height: 18px !important;
        left: 50% !important;
        margin: -9px 0 0 -9px !important;
        position: absolute !important;
        top: 50% !important;
        transform: none !important;
        width: 18px !important;
    }
}

/* Final wishlist template overrides: keep custom cards independent from global Woo button rules. */
body .smartprice-wishlist-page .smartprice-wishlist-card .smartprice-wishlist-actions {
    display: grid !important;
    gap: 8px !important;
    grid-template-columns: minmax(124px, 1fr) minmax(88px, auto) !important;
    max-width: 100% !important;
    width: 100% !important;
}

body .smartprice-wishlist-page .smartprice-wishlist-card .smartprice-wishlist-add,
body .smartprice-wishlist-page .smartprice-wishlist-card .smartprice-wishlist-view {
    border-radius: 10px !important;
    box-sizing: border-box !important;
    font-size: 12px !important;
    font-weight: 850 !important;
    height: 38px !important;
    line-height: 1 !important;
    margin: 0 !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 0 11px !important;
    white-space: nowrap !important;
}

body .smartprice-wishlist-page .smartprice-wishlist-card .smartprice-wishlist-add svg,
body .smartprice-wishlist-page .smartprice-wishlist-card .smartprice-wishlist-view svg {
    flex: 0 0 auto !important;
    height: 17px !important;
    width: 17px !important;
}

body .smartprice-wishlist-page .smartprice-wishlist-card .smartprice-wishlist-view {
    justify-self: end !important;
}

@media (max-width: 575px) {
    body .smartprice-wishlist-page .smartprice-wishlist-card .smartprice-wishlist-actions {
        grid-template-columns: 1fr !important;
    }

    body .smartprice-wishlist-page .smartprice-wishlist-card .smartprice-wishlist-view {
        justify-self: stretch !important;
    }
}

/* Final wishlist template overrides: keep custom cards independent from global Woo button rules. */
body .smartprice-wishlist-page .smartprice-wishlist-card .smartprice-wishlist-actions {
    display: grid !important;
    gap: 8px !important;
    grid-template-columns: minmax(124px, 1fr) minmax(88px, auto) !important;
    max-width: 100% !important;
    width: 100% !important;
}

body .smartprice-wishlist-page .smartprice-wishlist-card .smartprice-wishlist-add,
body .smartprice-wishlist-page .smartprice-wishlist-card .smartprice-wishlist-view {
    border-radius: 10px !important;
    box-sizing: border-box !important;
    font-size: 12px !important;
    font-weight: 850 !important;
    height: 38px !important;
    line-height: 1 !important;
    margin: 0 !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 0 11px !important;
    white-space: nowrap !important;
}

body .smartprice-wishlist-page .smartprice-wishlist-card .smartprice-wishlist-add svg,
body .smartprice-wishlist-page .smartprice-wishlist-card .smartprice-wishlist-view svg {
    flex: 0 0 auto !important;
    height: 17px !important;
    width: 17px !important;
}

body .smartprice-wishlist-page .smartprice-wishlist-card .smartprice-wishlist-view {
    justify-self: end !important;
}

@media (max-width: 575px) {
    body .smartprice-wishlist-page .smartprice-wishlist-card .smartprice-wishlist-actions {
        grid-template-columns: 1fr !important;
    }

    body .smartprice-wishlist-page .smartprice-wishlist-card .smartprice-wishlist-view {
        justify-self: stretch !important;
    }
}

/* SmartPrice wishlist page */
body .woocommerce .wishlist-title,
body .woocommerce .wishlist-title-container {
    margin: 0 0 18px !important;
}

body .woocommerce .wishlist-title h2,
body .woocommerce .wishlist-title-container h2,
body .woocommerce h1.entry-title + .wishlist-title h2 {
    color: var(--sp-dark, #111827) !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 18px !important;
    font-weight: 760 !important;
    letter-spacing: 0 !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    text-transform: none !important;
}

body .woocommerce table.wishlist_table {
    background: #fff !important;
    border: 1px solid var(--sp-border, #edf0f3) !important;
    border-collapse: separate !important;
    border-radius: 18px !important;
    border-spacing: 0 !important;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.06) !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    margin: 22px 0 18px !important;
    overflow: hidden !important;
    width: 100% !important;
}

body .woocommerce table.wishlist_table thead th {
    background: var(--sp-cream, #fffaf5) !important;
    border: 0 !important;
    border-bottom: 1px solid var(--sp-border, #edf0f3) !important;
    color: var(--sp-dark, #111827) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    padding: 18px 18px !important;
    text-align: left !important;
    text-transform: none !important;
}

body .woocommerce table.wishlist_table tbody tr {
    background: #fff !important;
}

body .woocommerce table.wishlist_table tbody tr:not(:last-child) td {
    border-bottom: 1px solid var(--sp-border, #edf0f3) !important;
}

body .woocommerce table.wishlist_table td {
    border-left: 0 !important;
    border-right: 0 !important;
    color: var(--sp-text, #1f2933) !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    padding: 18px 18px !important;
    vertical-align: middle !important;
}

body .woocommerce table.wishlist_table .product-remove {
    text-align: center !important;
    width: 56px !important;
}

body .woocommerce table.wishlist_table .product-remove a,
body .woocommerce table.wishlist_table .remove_from_wishlist {
    align-items: center !important;
    background: #fff1f1 !important;
    border-radius: 999px !important;
    color: #ff3b30 !important;
    display: inline-flex !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    height: 34px !important;
    justify-content: center !important;
    line-height: 1 !important;
    text-decoration: none !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
    width: 34px !important;
}

body .woocommerce table.wishlist_table .product-remove a:hover,
body .woocommerce table.wishlist_table .remove_from_wishlist:hover {
    background: #ffe1e1 !important;
    transform: translateY(-1px) !important;
}

body .woocommerce table.wishlist_table .product-thumbnail {
    width: 92px !important;
}

body .woocommerce table.wishlist_table .product-thumbnail a {
    align-items: center !important;
    background: #fff !important;
    border: 1px solid var(--sp-border, #edf0f3) !important;
    border-radius: 14px !important;
    display: inline-flex !important;
    height: 74px !important;
    justify-content: center !important;
    padding: 8px !important;
    width: 74px !important;
}

body .woocommerce table.wishlist_table .product-thumbnail img {
    border-radius: 10px !important;
    height: 100% !important;
    max-height: 60px !important;
    max-width: 60px !important;
    object-fit: contain !important;
    width: 100% !important;
}

body .woocommerce table.wishlist_table .product-name a {
    color: var(--sp-dark, #111827) !important;
    display: inline-block !important;
    font-size: 14px !important;
    font-weight: 720 !important;
    line-height: 1.35 !important;
    max-width: 560px !important;
    text-decoration: none !important;
}

body .woocommerce table.wishlist_table .product-name a:hover {
    color: var(--sp-orange, #ff7a1a) !important;
}

body .woocommerce table.wishlist_table .product-price {
    white-space: nowrap !important;
}

body .woocommerce table.wishlist_table .product-price del,
body .woocommerce table.wishlist_table .product-price del .amount {
    color: #9aa3af !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-decoration: line-through !important;
    text-decoration-thickness: 1.5px !important;
}

body .woocommerce table.wishlist_table .product-price ins {
    background: var(--sp-orange-soft, #fff3ea) !important;
    border-radius: 10px !important;
    color: var(--sp-red-price, #ff3b30) !important;
    display: inline-flex !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    margin-left: 8px !important;
    padding: 7px 10px !important;
    text-decoration: none !important;
}

body .woocommerce table.wishlist_table .product-price ins .amount {
    color: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}

body .woocommerce table.wishlist_table .product-stock-status span,
body .woocommerce table.wishlist_table .product-stock-status .wishlist-in-stock {
    align-items: center !important;
    background: #ecfdf3 !important;
    border-radius: 999px !important;
    color: #16803b !important;
    display: inline-flex !important;
    font-size: 13px !important;
    font-weight: 760 !important;
    line-height: 1 !important;
    padding: 8px 12px !important;
    white-space: nowrap !important;
}

body .woocommerce table.wishlist_table .product-add-to-cart a,
body .woocommerce table.wishlist_table .product-add-to-cart .button,
body .woocommerce table.wishlist_table .product-add-to-cart button {
    align-items: center !important;
    background: var(--sp-orange, #ff7a1a) !important;
    border: 0 !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 24px rgba(255, 122, 26, 0.2) !important;
    color: #fff !important;
    display: inline-flex !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    height: 42px !important;
    justify-content: center !important;
    line-height: 1 !important;
    padding: 0 18px !important;
    text-decoration: none !important;
    text-transform: none !important;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
    white-space: nowrap !important;
}

body .woocommerce table.wishlist_table .product-add-to-cart a:hover,
body .woocommerce table.wishlist_table .product-add-to-cart .button:hover,
body .woocommerce table.wishlist_table .product-add-to-cart button:hover {
    background: var(--sp-orange-dark, #e85f00) !important;
    box-shadow: 0 16px 30px rgba(255, 122, 26, 0.24) !important;
    transform: translateY(-1px) !important;
}

body .woocommerce .yith-wcwl-share {
    background: #fff !important;
    border: 1px solid var(--sp-border, #edf0f3) !important;
    border-radius: 18px !important;
    box-shadow: 0 16px 34px rgba(17, 24, 39, 0.05) !important;
    margin: 18px 0 0 !important;
    padding: 18px !important;
}

body .woocommerce .yith-wcwl-share .yith-wcwl-share-title,
body .woocommerce .yith-wcwl-share h4 {
    color: var(--sp-dark, #111827) !important;
    font-size: 16px !important;
    font-weight: 780 !important;
    line-height: 1.2 !important;
    margin: 0 0 12px !important;
}

body .woocommerce .yith-wcwl-share ul {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body .woocommerce .yith-wcwl-share li {
    margin: 0 !important;
}

body .woocommerce .yith-wcwl-share a {
    align-items: center !important;
    border-radius: 10px !important;
    display: inline-flex !important;
    height: 36px !important;
    justify-content: center !important;
    overflow: hidden !important;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    width: 36px !important;
}

body .woocommerce .yith-wcwl-share a:hover {
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.12) !important;
    transform: translateY(-1px) !important;
}

body .woocommerce .wishlist-empty,
body .woocommerce .wishlist_table .wishlist-empty {
    background: #fff !important;
    border: 1px solid var(--sp-border, #edf0f3) !important;
    border-radius: 18px !important;
    color: var(--sp-muted, #6b7280) !important;
    font-size: 15px !important;
    padding: 28px !important;
    text-align: center !important;
}

@media (max-width: 767px) {
    body .woocommerce table.wishlist_table {
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        margin-top: 16px !important;
        overflow: visible !important;
    }

    body .woocommerce table.wishlist_table thead {
        display: none !important;
    }

    body .woocommerce table.wishlist_table,
    body .woocommerce table.wishlist_table tbody,
    body .woocommerce table.wishlist_table tr,
    body .woocommerce table.wishlist_table td {
        display: block !important;
        width: 100% !important;
    }

    body .woocommerce table.wishlist_table tbody tr {
        background: #fff !important;
        border: 1px solid var(--sp-border, #edf0f3) !important;
        border-radius: 18px !important;
        box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06) !important;
        margin: 0 0 14px !important;
        min-height: 0 !important;
        padding: 16px !important;
        position: relative !important;
    }

    body .woocommerce table.wishlist_table tbody tr td {
        border: 0 !important;
        padding: 5px 0 !important;
        text-align: left !important;
    }

    body .woocommerce table.wishlist_table .product-remove {
        position: absolute !important;
        right: 14px !important;
        top: 14px !important;
        width: auto !important;
        z-index: 2 !important;
    }

    body .woocommerce table.wishlist_table .product-thumbnail {
        margin-bottom: 10px !important;
        padding-top: 8px !important;
        text-align: center !important;
    }

    body .woocommerce table.wishlist_table .product-thumbnail a {
        height: 112px !important;
        margin: 0 auto !important;
        width: 112px !important;
    }

    body .woocommerce table.wishlist_table .product-thumbnail img {
        max-height: 94px !important;
        max-width: 94px !important;
    }

    body .woocommerce table.wishlist_table .product-name a {
        font-size: 15px !important;
        max-width: 100% !important;
    }

    body .woocommerce table.wishlist_table .product-price {
        align-items: center !important;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
    }

    body .woocommerce table.wishlist_table .product-price ins {
        margin-left: 0 !important;
    }

    body .woocommerce table.wishlist_table .product-stock-status span,
    body .woocommerce table.wishlist_table .product-stock-status .wishlist-in-stock {
        margin-top: 4px !important;
    }

    body .woocommerce table.wishlist_table .product-add-to-cart a,
    body .woocommerce table.wishlist_table .product-add-to-cart .button,
    body .woocommerce table.wishlist_table .product-add-to-cart button {
        margin-top: 10px !important;
        width: 100% !important;
    }

    body .woocommerce .yith-wcwl-share {
        padding: 16px !important;
    }
}

/* Last mobile override: keep responsive header and first homepage sections aligned with mockup. */
@media (max-width: 991px) {
    #masthead.site-header {
        background: #fff !important;
        box-shadow: 0 10px 28px rgba(17, 24, 39, 0.045) !important;
    }

    #masthead .smartprice-main-header {
        background: #fff !important;
        padding: 16px 20px !important;
    }

    #masthead .smartprice-bottom-header > .row {
        display: grid !important;
        gap: 16px !important;
        grid-template-columns: 1fr !important;
        margin: 0 !important;
    }

    #masthead .smartprice-bottom-header > .row > [class*="col-"] {
        max-width: none !important;
        padding: 0 !important;
        width: 100% !important;
    }

    #masthead .mobile-header {
        align-items: center !important;
        display: grid !important;
        grid-template-columns: 44px minmax(0, 1fr) auto !important;
        width: 100% !important;
    }

    #masthead #menu-button {
        align-items: center !important;
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        color: #111827 !important;
        display: inline-flex !important;
        height: 44px !important;
        justify-content: center !important;
        padding: 0 !important;
        width: 44px !important;
    }

    #masthead #menu-button .smartprice-lucide {
        height: 28px !important;
        stroke-width: 1.8 !important;
        width: 28px !important;
    }

    #masthead .mobile-header .logo {
        max-width: 178px !important;
        width: 42vw !important;
    }

    #masthead .mobile-header-right {
        align-items: center !important;
        display: flex !important;
        gap: 14px !important;
        justify-content: flex-end !important;
    }

    #masthead .smartprice-mobile-account,
    #masthead .fixed-cart-mobile,
    #masthead .fixed-cart-mobile .cart,
    #masthead .fixed-cart-mobile .header-cart-count {
        align-items: center !important;
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        color: #111827 !important;
        display: inline-flex !important;
        height: 42px !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
        position: relative !important;
        width: 42px !important;
    }

    #masthead .smartprice-mobile-account .smartprice-lucide,
    #masthead .fixed-cart-mobile .smartprice-lucide {
        height: 28px !important;
        stroke-width: 1.8 !important;
        width: 28px !important;
    }

    #masthead .fixed-cart-mobile .smartprice-cart-count-number {
        align-items: center !important;
        background: #ff7a1a !important;
        border: 2px solid #fff !important;
        border-radius: 999px !important;
        color: #fff !important;
        display: inline-flex !important;
        font-size: 11px !important;
        font-weight: 900 !important;
        height: 21px !important;
        justify-content: center !important;
        line-height: 1 !important;
        min-width: 21px !important;
        padding: 0 5px !important;
        position: absolute !important;
        right: -3px !important;
        top: -3px !important;
    }

    body.home .smartprice-trust-row {
        background: transparent !important;
        box-shadow: none !important;
        display: grid !important;
        gap: 14px !important;
        grid-auto-flow: row !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        margin: 8px 0 0 !important;
        overflow: visible !important;
        padding: 0 !important;
    }

    body.home .smartprice-trust-row div {
        align-items: center !important;
        background: transparent !important;
        box-shadow: none !important;
        display: grid !important;
        gap: 2px 10px !important;
        grid-template-columns: 42px minmax(0, 1fr) !important;
        min-width: 0 !important;
        padding: 0 !important;
    }

    body.home .smartprice-trust-row .smartprice-lucide {
        height: 42px !important;
        padding: 11px !important;
        width: 42px !important;
    }

    body.home .smartprice-trust-row strong {
        font-size: 13px !important;
        white-space: normal !important;
    }

    body.home .smartprice-trust-row span {
        font-size: 12px !important;
    }

    body.home .smartprice-promo-grid {
        display: grid !important;
        gap: 16px !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 575px) {
    #masthead .smartprice-main-header {
        padding: 14px !important;
    }

    #masthead .mobile-header {
        grid-template-columns: 42px minmax(0, 1fr) auto !important;
    }

    #masthead .mobile-header .logo {
        max-width: 150px !important;
        width: 42vw !important;
    }

    #masthead .mobile-header-right {
        gap: 8px !important;
    }

    #masthead .smartprice-mobile-account,
    #masthead .fixed-cart-mobile,
    #masthead .fixed-cart-mobile .cart,
    #masthead .fixed-cart-mobile .header-cart-count {
        height: 38px !important;
        width: 38px !important;
    }

    body.home .smartprice-trust-row {
        gap: 12px !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow: visible !important;
        padding: 0 !important;
    }

    body.home .smartprice-trust-row div {
        gap: 2px 9px !important;
        grid-template-columns: 38px minmax(0, 1fr) !important;
    }

    body.home .smartprice-trust-row .smartprice-lucide {
        height: 38px !important;
        padding: 10px !important;
        width: 38px !important;
    }

    body.home .smartprice-hero-main {
        border-radius: 18px !important;
        min-height: 530px !important;
        padding: 34px 28px !important;
    }

    body.home .smartprice-hero-copy h1 {
        font-size: 27px !important;
        max-width: 310px !important;
    }

    body.home .smartprice-hero-copy h1 span {
        font-size: 49px !important;
    }

    body.home .smartprice-hero-copy p {
        font-size: 17px !important;
        max-width: 270px !important;
    }

    body.home .smartprice-hero-copy li {
        font-size: 15px !important;
        max-width: 240px !important;
    }

    body.home .smartprice-hero-main .smartprice-primary-btn {
        max-width: 238px !important;
        position: relative !important;
        z-index: 3 !important;
    }

    body.home .smartprice-hero-visual {
        bottom: 22px !important;
        height: 30% !important;
        right: 18px !important;
        width: 58% !important;
    }

    body.home .smartprice-promo-grid {
        gap: 16px !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    body.home .smartprice-promo-card {
        min-height: 184px !important;
    }
}

/* Mobile header consistency + home hero/trust grid polish. */
@media (max-width: 991px) {
    #masthead.site-header {
        background: #fff !important;
        box-shadow: 0 10px 28px rgba(17, 24, 39, 0.045) !important;
    }

    #masthead .smartprice-main-header {
        background: #fff !important;
        padding: 16px 20px !important;
    }

    #masthead .smartprice-bottom-header > .row {
        display: grid !important;
        gap: 16px !important;
        grid-template-columns: 1fr !important;
        margin: 0 !important;
    }

    #masthead .smartprice-bottom-header > .row > [class*="col-"] {
        max-width: none !important;
        padding: 0 !important;
        width: 100% !important;
    }

    #masthead .mobile-header {
        align-items: center !important;
        display: grid !important;
        grid-template-columns: 44px minmax(0, 1fr) auto !important;
        min-height: 48px !important;
        width: 100% !important;
    }

    #masthead #menu-button {
        align-items: center !important;
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        color: #111827 !important;
        display: inline-flex !important;
        height: 44px !important;
        justify-content: center !important;
        padding: 0 !important;
        width: 44px !important;
    }

    #masthead #menu-button .smartprice-lucide {
        height: 28px !important;
        stroke-width: 1.8 !important;
        width: 28px !important;
    }

    #masthead .mobile-header .site-branding {
        align-items: center !important;
        display: flex !important;
        justify-content: flex-start !important;
        min-width: 0 !important;
    }

    #masthead .mobile-header .logo {
        height: auto !important;
        max-width: 178px !important;
        width: 42vw !important;
    }

    #masthead .mobile-header-right {
        align-items: center !important;
        display: flex !important;
        gap: 14px !important;
        justify-content: flex-end !important;
    }

    #masthead .smartprice-mobile-account,
    #masthead .fixed-cart-mobile,
    #masthead .fixed-cart-mobile .cart,
    #masthead .fixed-cart-mobile .header-cart-count {
        align-items: center !important;
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        color: #111827 !important;
        display: inline-flex !important;
        height: 42px !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
        position: relative !important;
        width: 42px !important;
    }

    #masthead .smartprice-mobile-account .smartprice-lucide,
    #masthead .fixed-cart-mobile .smartprice-lucide {
        height: 28px !important;
        stroke-width: 1.8 !important;
        width: 28px !important;
    }

    #masthead .fixed-cart-mobile .smartprice-cart-count-number {
        align-items: center !important;
        background: #ff7a1a !important;
        border: 2px solid #fff !important;
        border-radius: 999px !important;
        color: #fff !important;
        display: inline-flex !important;
        font-size: 11px !important;
        font-weight: 900 !important;
        height: 21px !important;
        justify-content: center !important;
        line-height: 1 !important;
        min-width: 21px !important;
        padding: 0 5px !important;
        position: absolute !important;
        right: -3px !important;
        top: -3px !important;
    }

    #masthead .smartprice-bottom-header div.asl_w,
    #masthead .smartprice-bottom-header #ajaxsearchlite1 {
        max-width: none !important;
        width: 100% !important;
    }

    body.home .smartprice-trust-row {
        background: transparent !important;
        box-shadow: none !important;
        display: grid !important;
        gap: 14px !important;
        grid-auto-flow: row !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        margin: 8px 0 0 !important;
        overflow: visible !important;
        padding: 0 !important;
    }

    body.home .smartprice-trust-row div {
        align-items: center !important;
        background: transparent !important;
        display: grid !important;
        gap: 2px 10px !important;
        grid-template-columns: 42px minmax(0, 1fr) !important;
        min-width: 0 !important;
        padding: 0 !important;
    }

    body.home .smartprice-trust-row .smartprice-lucide {
        height: 42px !important;
        padding: 11px !important;
        width: 42px !important;
    }

    body.home .smartprice-trust-row strong {
        font-size: 13px !important;
        white-space: normal !important;
    }

    body.home .smartprice-trust-row span {
        font-size: 12px !important;
    }

    body.home .smartprice-promo-grid {
        display: grid !important;
        gap: 16px !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 575px) {
    #masthead .smartprice-main-header {
        padding: 14px !important;
    }

    #masthead .mobile-header {
        grid-template-columns: 42px minmax(0, 1fr) auto !important;
    }

    #masthead .mobile-header .logo {
        max-width: 150px !important;
        width: 42vw !important;
    }

    #masthead .mobile-header-right {
        gap: 8px !important;
    }

    #masthead .smartprice-mobile-account,
    #masthead .fixed-cart-mobile,
    #masthead .fixed-cart-mobile .cart,
    #masthead .fixed-cart-mobile .header-cart-count {
        height: 38px !important;
        width: 38px !important;
    }

    body.home .smartprice-trust-row {
        gap: 12px !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    body.home .smartprice-trust-row div {
        gap: 2px 9px !important;
        grid-template-columns: 38px minmax(0, 1fr) !important;
    }

    body.home .smartprice-trust-row .smartprice-lucide {
        height: 38px !important;
        padding: 10px !important;
        width: 38px !important;
    }

    body.home .smartprice-promo-grid {
        gap: 16px !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    body.home .smartprice-promo-card {
        min-height: 184px !important;
    }

    body.home .smartprice-hero-main {
        border-radius: 18px !important;
        min-height: 530px !important;
        padding: 34px 28px !important;
    }

    body.home .smartprice-hero-copy h1 {
        font-size: 27px !important;
        max-width: 310px !important;
    }

    body.home .smartprice-hero-copy h1 span {
        font-size: 49px !important;
    }

    body.home .smartprice-hero-copy p {
        font-size: 17px !important;
        max-width: 270px !important;
    }

    body.home .smartprice-hero-copy ul {
        margin-bottom: 22px !important;
    }

    body.home .smartprice-hero-copy li {
        font-size: 15px !important;
        max-width: 240px !important;
    }

    body.home .smartprice-hero-main .smartprice-primary-btn {
        max-width: 238px !important;
        position: relative !important;
        z-index: 3 !important;
    }

    body.home .smartprice-hero-visual {
        bottom: 22px !important;
        height: 30% !important;
        right: 18px !important;
        width: 58% !important;
    }
}



.woocommerce div.product .woocommerce-tabs ul.tabs li {
    margin: 0 -3px;
}

.cmplz-cookiebanner .cmplz-title {
    font-weight: 600!important;
}



.home .add_to_cart_button.loading:after {
    content: '';
    display: inline-block!important;
    width: 16px!important;
    height: 16px!important;
    vertical-align: middle!important;
    background: url('https://smartprice.lv/wp-content/uploads/2024/03/tube-spinner.svg') no-repeat center center!important;
    margin-left: 5px!important; /* Adjust as needed */
    /*z-index: 999!important;*/
}

.added_to_cart {
    display:none!important;
}




/*Notices*/
/*.woocommerce-notices-wrapper {*/
/*    position: fixed;*/
/*    top: 10px;*/
/*    right: 20px;*/
/*    z-index:999;*/
/*    width: 300px;*/
/*}*/

/*.woocommerce-notices-wrapper {*/
/*    opacity:0;*/
/*    -moz-animation:notices 10s;*/
/*    -webkit-animation:notices 10s;*/
/*    -o-animation:notices 10s;*/
/*    animation:notices 10s;*/
/*    -webkit-animation-fill-mode:forwards;*/
/*    animation-fill-mode:forwards*/
/*}*/
/*@keyframes notices {*/
/*   0% { opacity:1} */
/*   15% { opacity:1} */
/*   30% { opacity:1} */
/*   45% { opacity:1} */
/*   60% { opacity:1}*/
/*   75% { opacity:1}*/
/*   100% { opacity:0} }*/




/*SCROLL TEXT LINE*/


.bounce p {
 position: absolute;
 width: 100%;
 height: 100%;
 margin: 0;
 line-height: 50px;
 text-align: center;
 /* Starting position */
 -moz-transform:translateX(50%);
 -webkit-transform:translateX(50%);	
 transform:translateX(50%);
 /* Apply animation to this element */	
 -moz-animation: bouncing-text 5s linear infinite alternate;
 -webkit-animation: bouncing-text 5s linear infinite alternate;
 animation: bouncing-text 5s linear infinite alternate;
}
/* Move it (define the animation) */
@-moz-keyframes bouncing-text {
 0%   { -moz-transform: translateX(50%); }
 100% { -moz-transform: translateX(-50%); }
}
@-webkit-keyframes bouncing-text {
 0%   { -webkit-transform: translateX(50%); }
 100% { -webkit-transform: translateX(-50%); }
}
@keyframes bouncing-text {
 0%   { 
 -moz-transform: translateX(50%); /* Browser bug fix */
 -webkit-transform: translateX(50%); /* Browser bug fix */
 transform: translateX(50%); 		
 }
 100% { 
 -moz-transform: translateX(-50%); /* Browser bug fix */
 -webkit-transform: translateX(-50%); /* Browser bug fix */
 transform: translateX(-50%); 
 }
}

.marquee {
 height: 50px;	
 overflow: hidden;
 position: relative;
 background: #f5d0a9;
 color: var(--main-black-color);
 font-weight:bold;
 font-size:16px;
 border: 1px solid #ccc;
}

 
 
.marquee p {
 position: absolute;
 width: 100%;
 height: 100%;
 margin: 0;
 line-height: 50px;
 text-align: center;
 /* Starting position */
 -moz-transform:translateX(100%);
 -webkit-transform:translateX(100%);	
 transform:translateX(100%);
 /* Apply animation to this element */	
 -moz-animation: scroll-left 5s linear infinite;
 -webkit-animation: scroll-left 5s linear infinite;
 animation: scroll-left 5s linear infinite;
}
/* Move it (define the animation) */
@-moz-keyframes scroll-left {
 0%   { -moz-transform: translateX(100%); }
 100% { -moz-transform: translateX(-100%); }
}
@-webkit-keyframes scroll-left {
 0%   { -webkit-transform: translateX(100%); }
 100% { -webkit-transform: translateX(-100%); }
}
@keyframes scroll-left {
 0%   { 
 -moz-transform: translateX(100%); /* Browser bug fix */
 -webkit-transform: translateX(100%); /* Browser bug fix */
 transform: translateX(100%); 		
 }
 100% { 
 -moz-transform: translateX(-100%); /* Browser bug fix */
 -webkit-transform: translateX(-100%); /* Browser bug fix */
 transform: translateX(-100%); 
 }
}

.marquee-outer {
 height: 100px;	
 overflow: hidden;
 position: relative;
 color: #FFFFFF;
 BACKGROUND:#d0f5a9;
}
.marquee-inner {
 position: absolute;
 width: 100%;
 height: 100%;
 margin: 0;
 line-height: 50px;
 text-align: center;
 /* Starting position */
 -moz-transform:translateX(100%);
 -webkit-transform:translateX(100%);	
 transform:translateX(100%);
 /* Apply animation to this element */	
 -moz-animation: scroll-left 5s linear infinite;
 -webkit-animation: scroll-left 5s linear infinite;
 animation: scroll-left 5s linear infinite;
}
/* Move it (define the animation) */
@-moz-keyframes scroll-left {
 0%   { -moz-transform: translateX(100%); }
 100% { -moz-transform: translateX(-100%); }
}
@-webkit-keyframes scroll-left {
 0%   { -webkit-transform: translateX(100%); }
 100% { -webkit-transform: translateX(-100%); }
}
@keyframes scroll-left {
 0%   { 
 -moz-transform: translateX(100%); /* Browser bug fix */
 -webkit-transform: translateX(100%); /* Browser bug fix */
 transform: translateX(100%); 		
 }
 100% { 
 -moz-transform: translateX(-100%); /* Browser bug fix */
 -webkit-transform: translateX(-100%); /* Browser bug fix */
 transform: translateX(-100%); 
 }
}
.html-marquee {
    position: relative;
    width: 102.3%;
    top: 2px;
    left: 0px;
    z-index: 999;
    background: #000000;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    border: 0px solid #ccc;
    border-radius: 3px;
}

.html-marquee p{
    margin: 0!important;
    padding: 10px!important;
}


/*END SCROLL TEXT LINE*/


.info_panel_sp {
    padding: 30px;
    background: #fff;
    /*box-shadow: 0 0 5px rgb(0 0 0 / 14%);*/
    border-right: solid 1px #f4f4f4;
    border-radius: 6px;
}

.info_panel_sp p {
    font-size: 12px;
}

.info_panel_sp p span {
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 10px;
}

.info_panel_sp p:nth-child(2) span {
    color: #fff;
    background: #28a745;

}

.info_panel_sp p:nth-child(3) span {
    color: #fff;
    background: #ff9800;

}

.info_panel_sp p:nth-child(4) span {
       color: #fff;
    background: #9e9e9e;
}

.info_panel_sp p:nth-child(5) span {
    color: #fff;
    background: #e53935;
}

.info_panel_sp p:nth-child(6) span {
    color: red;
}

/*.info_panel_sp p:last-child span {*/
/*    color: yellow;*/
/*}*/



.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product .stock {
    color: #000000;
    margin-top: 10px;
    margin-bottom: 6px;
    font-weight: 600;
}


/*search header input*/
#ajaxsearchlite1 .probox, div.asl_w .probox {
    height: 40px;
}

div.asl_m .probox .proinput input {
    height: 40px;
}

div.asl_w .probox .promagnifier {
    width: 40px;
    height: 40px;
}


.day-products .in_stock_text {
    /*display: none!important;   */
}

.day-products .woocommerce-loop-product__title {
    /*font-size: 10px!important;*/
}

.day-products .woocommerce-Price-amount.amount bdi {
    /*font-size: 16px;*/
    /*font-weight: 600;*/
    /*color: #000;*/
}

.day-products ins .woocommerce-Price-amount.amount bdi {
    /*font-size: 14px;*/
    /*font-weight: 700;*/
    /*color: #f43a37;*/
}

.day-products .woocommerce-LoopProduct-link {
    display: block;
    /* border: 1px solid rgba(0, 0, 0, 0.05); */
    /*padding: 0px;*/
}




.day-products .new-product-home .product-type-simple,.day-products .new-product-home .product-type-variable {
    min-height: 100%;
    width: 100%;
    top: -17px;
    margin: 0;
    right: 0px;
    background: #fff;
    z-index: 1;
    transition: background .2s ease;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 0 10px;;
}


/*.day-products .owl-carousel.owl-loaded {*/
/*    background: #fff;*/
/*}*/

.day-products .owl-carousel.owl-drag .owl-item {
    border: 1px solid #f2f2f2;
}

.day-products .new-product-home .product-type-simple:hover,.day-products .new-product-home .product-type-variable:hover  {
    position: inherit;
    min-height: 100%;
    width: 100%;
    /*padding: initial;*/
    top: 0px;
    margin: 0;
    right: 0px;
    background: #fff;
    box-shadow: none;
    z-index: 1;
    transition: background .2s ease;
}

.day-products .owl-item:hover {
    /*box-shadow: 0 0 20px 1px rgb(0 0 0 / 10%);*/
     opacity:0.8;
}

.day-products .owl-item {
    opacity:1;
}

.day-products .woocommerce-loop-product__title {
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
           line-clamp: 2;
   -webkit-box-orient: vertical;
   font-weight:600;
}



.day-products  .onsale {
position: absolute;
    font-family: oswald, sans-serif;
    background-color: #FDE533;
    box-shadow: 2px 2px 2px 0 rgb(197 143 190 / 30%);
    padding: 14px 4px;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50%;
    right: 0;
}


.top-products  .onsale {
position: absolute;
    background-color: #FDE533;
    color: #191919;
}





.day-products .new-product-home .product-type-simple:hover .button.product_type_simple,.day-products  .new-product-home .product-type-simple:hover .add_to_cart_button,.day-products  .new-product-home .product-type-variable:hover .button.product_type_variable {
    /*display: none;*/
    background: #9ccf36;
    padding: 11px 10px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    position: absolute;
    text-transform: uppercase;
    width: 43%;
    right: -6px;
    bottom: 120px;
    border-radius: 6px;
    
    display: none;
}

.top-products .new-product-home .product-type-simple:hover .button.product_type_simple,.top-products   .new-product-home .product-type-simple:hover .add_to_cart_button,.top-products   .new-product-home .product-type-variable:hover .button.product_type_variable {
    /*display: none;*/
    background: #9ccf36;
    padding: 12px 0px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    position: absolute;
    text-transform: uppercase;
    width: 50%;
    right: -6px;
    bottom: 120px;
    border-radius: 6px;
    
    display: none;
}


.vertical-sidebar-h2 {
    background:#fff;
    border: 1px solid #f2f2f2;
    width: 100%;
    border-left: none;
    position: relative;
}

.top-bar-small > .vertical-sidebar-h2 {
    border-bottom: none;
}

.top-bar-small > .vertical-sidebar-h2 + .vertical-sidebar-h2 + .vertical-sidebar-h2 + .vertical-sidebar-h2{
    border-right: none;
}

.vertical-sidebar-h2 h2 {
    font-size: 15px;
    text-transform: none;
    margin: 0;
    padding: 13px 12px;
    font-weight: 700;
    color: #191919;
}


.vertical-sidebar-h2 .icon-list-1:before {
    content: '\e812';
    font-size: 21px;
    position: relative;
    top: 2px;
}

.vertical-sidebar-h2 .h2-all2,.vertical-sidebar-h2 .h2-all3,.vertical-sidebar-h2 .h2-all4 {
    font-weight: 600;
    font-size: 12px;
    padding: 13px 18px;
    text-align: center;
    text-transform: initial;
}

.top-bar-small {
    /*background:#fff;*/
    /*border: 1px solid rgba(0, 0, 0, 0.05);*/
    border-top: none;
    border-bottom: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.icon-052-delivery-truck-3:before,.icon-039-online-shop-9:before,.icon-discount:before {
    font-size: 18px;
    margin-right: 8px;
}


.omniva_top_bar {
    width: 25px;
    position: absolute;
    top: 10px;
    left: 10px;
}



.banner-home_section {
    /*border: 1px solid #f2f2f2;*/
    margin-top: 3px;
}

.banner-home_section .banner1:hover, .banner-home_section .banner2:hover, .banner-home_section .banner3:hover, .banner-home_section .banner4:hover {
    opacity: 0.8;
}

.banner-home_section .banner1, .banner-home_section .banner2, .banner-home_section .banner3, .banner-home_section .banner4 {
    padding:5px;
}


.woocommerce div.product form.cart {
    margin-bottom: 10px;
}

.woocommerce div.product p.stock.out-of-stock {
    color: #f43a37;
    font-size: 16px;
    font-weight: 700;
}



/* Stilizācija paziņojumam nosaukuma joslā */
@keyframes cart-update {
    0% { color: red; }
    50% { color: green; }
    100% { color: red; }
}

.cart-updated {
    animation: cart-update 1s ease-in-out;
}

.fb-smartprice {
    position: block;
    right: 10px;
    top: 10px;
    z-index: 999;
}

@media screen and (max-width: 991px) {	
	.fb-smartprice {
        display:none;
    }
	
}


/*countdown timer*/

.topbar-sp {
    background: #660ab3;
}

.top_bar_title {
    color:#fff;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
}


#note div span {
    font-size: 20px!important;
}

#note div {
    width: 43px !important;
    font-size: 10px !important;
    margin-right: 0px !important;
    padding: 3px 0 !important;
}



.devnet_fsl-free-shipping .fsl-progress-bar, .devnet_fsl-free-shipping .progress-bar {
    border:none!important;
}



/* =========================
   
   ========================= */
   
/* remove checkmark from add to cart button */

/* product card */
.woocommerce ul.products li.product{
position:relative;
}






.woocommerce ul.products li.product{
position:relative;
}

/* modern cart button */

.smart-cart-btn{

position:absolute;
bottom:10px;
right:10px;

width:34px;
height:34px;

background:#fff;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

box-shadow:0 2px 6px rgba(0,0,0,.12);

transition:all .2s ease;

}

/* icon */

.smart-cart-btn i{
font-size:14px;
color:#555;
}

/* hover */

.smart-cart-btn:hover{
transform:scale(1.08);
box-shadow:0 4px 10px rgba(0,0,0,.16);
}

/* click */

.smart-cart-btn:active{
transform:scale(.92);
}

/* mobile */

@media(max-width:768px){

.smart-cart-btn{
width:36px;
height:36px;
bottom:12px;
right:12px;
}

.smart-cart-btn i{
font-size:15px;
}

}




.columns-4 ul.products li.product {
        transition: background .2s ease;
        border-radius: 10px;
        transition: transform .25s ease, box-shadow .25s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        /*padding: 10px;*/
        
}

.product-hover-style {
    padding: 10px;
}
    
.columns-4 ul.products li.product:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.woocommerce-LoopProduct-link {
    padding: 0px!important;
}








.telegram-top-banner {
    display: inline-flex;
    align-items: center;
    margin-right: 28px;
    max-width: 44px;
}

.telegram-top-banner img {
    display: block;
    width: 100%;
    max-width: 44px;
    height: auto;
}

.header-contact-desc {
    gap: 18px;
}

.header-contact-desc span a {
    white-space: nowrap;
}

@media (max-width: 1199px) {
    .telegram-top-banner {
        max-width: 390px;
        margin-right: 18px;
    }
}


.header-contact-desc{
    display:flex !important;
    align-items:center;
    gap:20px;
}

.header-contact-desc > span{
    display:flex;
    align-items:center;
    height:36px;
}


.nav-top {
    margin-top: 6px;
}

/* Smartprice desktop header strip */
.smartprice-header-strip.top-menu-section {
    background: #0c1421;
    border-bottom: 3px solid #f0f0f0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    padding: 10px 0;
}

.smartprice-header-inner {
    align-items: center;
    display: flex;
    gap: 18px;
    height: 88px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1269px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

.smartprice-telegram-banner {
    align-items: center;
    background:
        radial-gradient(circle at 86% 88%, rgba(255, 255, 255, 0.17) 0 1px, transparent 2px),
        radial-gradient(circle at 90% 78%, rgba(255, 255, 255, 0.17) 0 1px, transparent 2px),
        linear-gradient(100deg, #115cff 0%, #2636c9 24%, #087cff 74%, #0a4da4 100%);
    border-radius: 19px;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.18), inset 0 -2px 0 rgba(0, 0, 0, 0.16), 0 2px 6px rgba(0, 0, 0, 0.28);
    color: #fff;
    display: flex;
    flex: 0 1 520px;
    height: 80px;
    min-width: 470px;
    overflow: hidden;
    padding: 9px 22px 9px 14px;
    position: relative;
}

.smartprice-telegram-banner:before {
    background: rgba(8, 24, 110, 0.18);
    content: "";
    height: 120px;
    left: 108px;
    position: absolute;
    top: -22px;
    transform: rotate(-7deg);
    width: 70px;
}

.smartprice-telegram-banner:hover {
    color: #fff;
    text-decoration: none;
}

.smartprice-telegram-icon {
    align-items: center;
    background: linear-gradient(145deg, #49c9ff 0%, #0a87ee 100%);
    border: 3px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18), inset 0 2px 5px rgba(255, 255, 255, 0.22);
    display: flex;
    flex: 0 0 56px;
    height: 56px;
    justify-content: center;
    margin-right: 18px;
    position: relative;
    width: 56px;
    z-index: 1;
}

.smartprice-telegram-icon svg {
    fill: #fff;
    height: 31px;
    transform: translate(-1px, 1px);
    width: 31px;
}

.smartprice-telegram-copy {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    position: relative;
    text-shadow: 0 2px 2px rgba(5, 25, 70, 0.55);
    z-index: 1;
}

.smartprice-telegram-copy strong {
    color: #fff;
    display: block;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 7px;
    white-space: nowrap;
}

.smartprice-telegram-copy small {
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.smartprice-telegram-cta {
    align-items: center;
    background: #fff;
    border-radius: 999px;
    box-shadow: inset 0 -2px 0 rgba(16, 85, 211, 0.1), 0 2px 7px rgba(0, 0, 0, 0.16);
    color: #1162e7;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 800;
    gap: 8px;
    height: 44px;
    justify-content: center;
    margin-left: 18px;
    padding: 0 17px;
    position: relative;
    white-space: nowrap;
    z-index: 2;
}

.smartprice-telegram-cta svg {
    fill: #1675f4;
    height: 20px;
    width: 20px;
}

.smartprice-paper-plane {
    position: absolute;
    right: 20px;
    top: 19px;
    transform: rotate(-8deg);
}

.smartprice-paper-plane svg {
    fill: none;
    height: 41px;
    stroke: rgba(255, 255, 255, 0.88);
    stroke-linejoin: round;
    stroke-width: 2.8;
    width: 41px;
}

.smartprice-header-benefits {
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    gap: 20px;
    justify-content: center;
    min-width: 0;
}

.smartprice-benefit {
    align-items: center;
    color: #fff;
    display: flex;
    gap: 10px;
    min-width: max-content;
    text-decoration: none;
}

.smartprice-benefit:hover {
    color: #fff;
    text-decoration: none;
}

.smartprice-benefit-icon {
    align-items: center;
    display: flex;
    flex: 0 0 34px;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.smartprice-benefit-icon svg {
    fill: none;
    height: 34px;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3.1;
    width: 34px;
}

.smartprice-benefit span:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.45);
}

.smartprice-benefit strong {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.1;
    white-space: nowrap;
}

.smartprice-benefit small {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
    white-space: nowrap;
}

.smartprice-header-actions {
    align-items: center;
    color: #fff;
    display: flex;
    flex: 0 0 auto;
    gap: 18px;
}

.smartprice-language {
    align-items: center;
    display: flex;
    gap: 9px;
    min-width: 75px;
}

.smartprice-flag {
    background: linear-gradient(to bottom, #b91519 0 38%, #fff 38% 62%, #b91519 62% 100%);
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
    display: inline-block;
    height: 19px;
    width: 30px;
}

.smartprice-language span:nth-child(2) {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
}

.smartprice-caret {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #fff;
    display: inline-block;
    height: 0;
    margin-top: 3px;
    width: 0;
}

.smartprice-contact-link {
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.42);
    color: #fff;
    display: flex;
    gap: 12px;
    min-height: 44px;
    padding-left: 18px;
    text-decoration: none;
}

.smartprice-contact-link:hover {
    color: #fff;
    text-decoration: none;
}

.smartprice-contact-link svg {
    fill: none;
    height: 29px;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3.4;
    width: 29px;
}

.smartprice-contact-link span {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

@media (max-width: 1399px) {
    .smartprice-header-strip.top-menu-section {
        padding-left: 0;
        padding-right: 0;
    }

    .smartprice-header-inner {
        gap: 14px;
    }

    .smartprice-telegram-banner {
        flex-basis: 480px;
        min-width: 440px;
    }

    .smartprice-telegram-copy strong {
        font-size: 19px;
    }

    .smartprice-telegram-copy small {
        font-size: 13px;
    }

    .smartprice-telegram-cta {
        margin-left: 14px;
        padding: 0 14px;
    }

    .smartprice-header-benefits {
        gap: 16px;
    }

    .smartprice-benefit strong {
        font-size: 14px;
    }

    .smartprice-benefit small {
        font-size: 12px;
    }
}

/* ==========================================================
   Smartprice redesign 2026
   ========================================================== */
:root {
    --sp-orange: #ff7a1a;
    --sp-orange-dark: #e85f00;
    --sp-orange-soft: #fff3ea;
    --sp-pink-soft: #fff4f6;
    --sp-beige: #fff8f1;
    --sp-cream: #fffaf5;
    --sp-dark: #111827;
    --sp-text: #1f2933;
    --sp-muted: #6b7280;
    --sp-border: #edf0f3;
    --sp-bg: #ffffff;
    --sp-section-bg: #fafafa;
    --sp-card-bg: #ffffff;
    --sp-red-price: #ff3b30;
    --sp-badge-pink: #ff5c8a;
    --sp-yellow-badge: #ffb800;
    --sp-ink: var(--sp-dark);
    --sp-line: var(--sp-border);
    --sp-card-shadow: 0 12px 34px rgba(16, 24, 40, 0.07);
}

body {
    background: var(--sp-bg);
    color: var(--sp-ink);
    font-family: "Inter", "Poppins", Arial, sans-serif;
}

.smartprice-lucide {
    color: var(--sp-dark);
    display: inline-block;
    flex: 0 0 auto;
    height: 22px;
    stroke-width: 1.8;
    vertical-align: middle;
    width: 22px;
}

.smartprice-lucide-accent {
    color: var(--sp-orange);
}

#page.site {
    background: var(--sp-section-bg) !important;
}

.smartprice-utility-bar {
    background: linear-gradient(90deg, #fffaf5 0%, #ffffff 46%, #fff8f1 100%);
    border-bottom: 1px solid var(--sp-border);
    color: var(--sp-dark);
    font-family: "Inter", "Poppins", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
}

.smartprice-utility-inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    min-height: 58px;
    padding-left: 0;
    padding-right: 0;
}

.smartprice-utility-list {
    align-items: center;
    display: flex;
    gap: 72px;
    min-width: 0;
}

.smartprice-utility-list span,
.smartprice-utility-right a,
.smartprice-utility-lang {
    align-items: center;
    color: var(--sp-dark);
    display: inline-flex;
    gap: 12px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.smartprice-utility-list svg {
    fill: none;
    flex: 0 0 22px;
    height: 22px;
    stroke: var(--sp-dark);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 22px;
}

.smartprice-utility-list .smartprice-lucide {
    height: 20px;
    width: 20px;
}

.smartprice-utility-right {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    gap: 48px;
    margin-left: 44px;
}

.smartprice-utility-lang,
.smartprice-native-gtranslate,
.smartprice-native-gtranslate .gtranslate_wrapper,
.smartprice-native-gtranslate .gt_switcher_wrapper {
    align-items: center;
    display: inline-flex;
    gap: 7px;
    min-width: 0;
    position: relative;
}

.smartprice-native-gtranslate select,
.smartprice-native-gtranslate .gt_selector {
    background: transparent;
    border: 0;
    color: var(--sp-dark);
    cursor: pointer;
    font-family: "Inter", "Poppins", Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    min-height: 28px;
    padding: 0;
}

.smartprice-native-gtranslate img,
.smartprice-native-gtranslate .gtranslate_wrapper img,
.smartprice-native-gtranslate .gt_switcher img {
    display: inline-block !important;
    height: auto !important;
    margin: 0 4px 0 0 !important;
    opacity: 1 !important;
    width: auto !important;
}

.smartprice-native-gtranslate a {
    align-items: center;
    color: var(--sp-dark) !important;
    display: inline-flex;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    gap: 5px;
    line-height: 1;
    padding: 0 !important;
    text-decoration: none !important;
}

.smartprice-native-gtranslate .gt_switcher,
.smartprice-native-gtranslate .gt_switcher .gt_selected,
.smartprice-native-gtranslate .gt_switcher .gt_selected a {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: var(--sp-dark) !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}

.smartprice-utility-bar .smartprice-native-gtranslate,
.smartprice-utility-bar .smartprice-native-gtranslate *,
.smartprice-utility-bar .smartprice-native-gtranslate .gtranslate_wrapper,
.smartprice-utility-bar .smartprice-native-gtranslate .gt_switcher,
.smartprice-utility-bar .smartprice-native-gtranslate .gt_switcher_wrapper,
.smartprice-utility-bar .smartprice-native-gtranslate .gt_selector {
    visibility: visible !important;
}

.smartprice-utility-bar .smartprice-native-gtranslate .gtranslate_wrapper,
.smartprice-utility-bar .smartprice-native-gtranslate .gt_switcher_wrapper {
    display: inline-flex !important;
    height: auto !important;
    left: auto !important;
    opacity: 1 !important;
    overflow: visible !important;
    position: static !important;
    right: auto !important;
    top: auto !important;
    width: auto !important;
    z-index: auto !important;
}

.smartprice-utility-bar .smartprice-native-gtranslate .gt_switcher {
    display: inline-block !important;
    min-width: 42px !important;
}

.smartprice-utility-bar .smartprice-native-gtranslate .gt_selected,
.smartprice-utility-bar .smartprice-native-gtranslate .gt_selected a,
.smartprice-utility-bar .smartprice-native-gtranslate select,
.smartprice-utility-bar .smartprice-native-gtranslate .gt_selector {
    display: inline-flex !important;
    opacity: 1 !important;
}

.smartprice-utility-list a:hover,
.smartprice-utility-right a:hover {
    color: var(--sp-orange-dark);
    text-decoration: none;
}

.smartprice-main-header {
    padding-bottom: 12px;
    padding-top: 14px;
}

.smartprice-bottom-header .row {
    align-items: center;
}

.smartprice-bottom-header .site-branding.my-3 {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

.smartprice-bottom-header .logo {
    width: 220px;
}

.smartprice-bottom-header #ajaxsearchlite1,
.smartprice-bottom-header div.asl_w {
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06) !important;
}

.smartprice-bottom-header #ajaxsearchlite1 .probox,
.smartprice-bottom-header div.asl_w .probox {
    border: 1px solid #eee2da !important;
    border-radius: 12px !important;
    height: 46px !important;
}

.smartprice-bottom-header div.asl_w .probox .promagnifier {
    background: var(--sp-orange) !important;
    border-radius: 10px !important;
    height: 38px !important;
    margin: 4px !important;
    width: 44px !important;
}

.smartprice-bottom-header .login a,
.smartprice-bottom-header .login span {
    color: var(--sp-ink) !important;
}

.smartprice-header-actions {
    align-items: center;
    gap: 18px;
}

.smartprice-account-actions {
    align-items: center;
    display: flex;
    gap: 12px;
    margin-right: 0 !important;
    position: static !important;
    top: auto !important;
}

.smartprice-account-link {
    align-items: center;
    display: inline-flex !important;
    gap: 9px;
    line-height: 1;
    min-height: 38px;
    position: static !important;
    text-align: left;
    top: auto !important;
    white-space: nowrap;
}

.smartprice-logout-link {
    color: var(--sp-dark) !important;
    display: inline-flex !important;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    margin-left: 0;
    min-height: 38px;
    align-items: center;
    position: static !important;
    top: auto !important;
}

.smartprice-account-link:before,
.smartprice-cart-count:before {
    content: none !important;
}

.smartprice-header-wishlist {
    align-items: center;
    color: var(--sp-dark) !important;
    display: inline-flex !important;
    height: 38px;
    justify-content: center;
    line-height: 1;
    position: relative;
    text-decoration: none !important;
    width: 38px;
}

.smartprice-header-wishlist .smartprice-lucide {
    display: block;
    height: 23px;
    stroke-width: 1.8;
    width: 23px;
}

.smartprice-header-wishlist:hover {
    color: var(--sp-orange) !important;
    text-decoration: none !important;
}

.smartprice-wishlist-count-number {
    align-items: center;
    background: var(--sp-badge-pink, #ff5c8a);
    border: 2px solid #fff;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 10px;
    font-weight: 900;
    height: 18px;
    justify-content: center;
    line-height: 1;
    min-width: 18px;
    padding: 0 4px;
    position: absolute;
    right: -2px;
    top: 0;
}

.smartprice-cart-count {
    align-items: center;
    color: var(--sp-dark);
    display: inline-flex;
    gap: 6px;
    justify-content: center;
    min-height: 38px;
    position: relative !important;
}

.smartprice-cart-count .smartprice-lucide-shopping-cart {
    height: 23px;
    width: 23px;
}

.smartprice-cart-count-number,
.count-class .smartprice-cart-count-number,
.header-cart-count .smartprice-cart-count-number {
    align-items: center;
    background: var(--sp-yellow-badge);
    border-radius: 999px;
    color: var(--sp-bg);
    display: inline-flex;
    font-size: 10px;
    font-weight: 900;
    justify-content: center;
    min-height: 16px;
    min-width: 16px;
    padding: 0 4px;
    position: absolute;
    right: -6px;
    top: 2px;
    transform: none;
    z-index: 2;
}

#menu-button .smartprice-lucide {
    height: 24px;
    width: 24px;
}

.smartprice-bottom-header .site-header-cart,
.smartprice-bottom-header .cart-contents {
    align-items: center;
    color: var(--sp-dark) !important;
    display: inline-flex;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 14px;
    font-weight: 500;
    gap: 7px;
    line-height: 1;
    min-height: 38px;
    position: relative;
    text-decoration: none;
    top: auto !important;
}

.smartprice-bottom-header .site-header-cart {
    justify-content: flex-end;
}

.smartprice-bottom-header .cart-contents:hover {
    color: var(--sp-orange-dark) !important;
    text-decoration: none;
}

.smartprice-bottom-header .cart-contents .amount {
    align-items: center;
    color: var(--sp-text);
    display: inline-flex;
    font-size: 15px;
    font-weight: 650;
    line-height: 1;
    margin-left: 6px;
    white-space: nowrap;
}

.smartprice-bottom-header .cart-contents .amount bdi {
    align-items: center;
    display: inline-flex;
    line-height: 1;
}

.smartprice-cart-separator {
    display: none !important;
}

.smartprice-bottom-header .site-header-cart {
    position: relative;
    z-index: 80;
}

.smartprice-bottom-header .site-header-cart .widget_shopping_cart {
    background: #fff;
    border: 1px solid rgba(237, 240, 243, 0.96);
    border-radius: 14px;
    box-shadow: 0 22px 50px rgba(17, 24, 39, 0.14);
    display: block;
    left: auto !important;
    line-height: 1.35;
    margin: 0;
    min-height: 0;
    opacity: 0;
    padding: 14px 16px 16px;
    pointer-events: none;
    position: absolute;
    right: 0 !important;
    text-align: left;
    top: calc(100% + 12px) !important;
    transform: translateY(4px);
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
    visibility: hidden;
    width: 360px;
    z-index: 99999;
}

.smartprice-bottom-header .site-header-cart:hover .widget_shopping_cart,
.smartprice-bottom-header .site-header-cart.focus .widget_shopping_cart,
.smartprice-bottom-header .site-header-cart:focus-within .widget_shopping_cart {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.smartprice-bottom-header .site-header-cart .widget_shopping_cart:before {
    content: "";
    height: 12px;
    left: 0;
    position: absolute;
    right: 0;
    top: -12px;
}

.smartprice-bottom-header .widget_shopping_cart .woocommerce-mini-cart {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin: 0;
    max-height: 360px;
    overflow-y: auto;
    padding: 0;
}

.smartprice-bottom-header .widget_shopping_cart .mini_cart_item {
    border-bottom: 1px solid rgba(237, 240, 243, 0.9);
    display: block;
    min-width: 0;
    padding: 0 0 10px 22px;
    position: relative;
}

.smartprice-bottom-header .widget_shopping_cart .mini_cart_item > a:not(.remove),
.smartprice-bottom-header .widget_shopping_cart .smartprice-mini-cart-product {
    align-items: flex-start;
    color: var(--sp-dark);
    display: flex;
    font-size: 13px;
    font-weight: 650;
    gap: 10px;
    line-height: 1.25;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.smartprice-bottom-header .widget_shopping_cart .smartprice-mini-cart-product-title {
    display: -webkit-box;
    flex: 1 1 auto;
    line-height: 1.22;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.smartprice-bottom-header .widget_shopping_cart .mini_cart_item img {
    border-radius: 8px;
    flex: 0 0 56px;
    height: 56px;
    margin: 0;
    object-fit: contain;
    width: 56px;
}

.smartprice-bottom-header .widget_shopping_cart .remove {
    align-items: center;
    background: #fff4f4;
    border-radius: 999px;
    color: var(--sp-red-price) !important;
    display: inline-flex;
    font-size: 16px;
    font-weight: 800;
    height: 18px;
    justify-content: center;
    left: 0;
    line-height: 1;
    position: absolute;
    text-decoration: none;
    top: 2px;
    width: 18px;
}

.smartprice-bottom-header .widget_shopping_cart .quantity {
    color: var(--sp-muted);
    display: block;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    margin-left: 66px;
    margin-top: 4px;
}

.smartprice-bottom-header .widget_shopping_cart .woocommerce-mini-cart__total {
    align-items: center;
    border-top: 0;
    color: var(--sp-dark);
    display: flex;
    font-size: 14px;
    font-weight: 750;
    justify-content: space-between;
    margin: 12px 0 10px;
    padding: 0;
}

.smartprice-bottom-header .widget_shopping_cart .woocommerce-mini-cart__total strong {
    font-weight: 750;
}

.smartprice-bottom-header .widget_shopping_cart .woocommerce-mini-cart__buttons {
    align-items: stretch !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    justify-content: stretch !important;
    margin: 0 !important;
    width: 100% !important;
}

.smartprice-bottom-header .widget_shopping_cart .button,
.smartprice-bottom-header .widget_shopping_cart .woocommerce-mini-cart__buttons a,
.smartprice-bottom-header .widget_shopping_cart .woocommerce-mini-cart__buttons .wc-forward {
    align-items: center;
    background: var(--sp-orange) !important;
    border-radius: 10px;
    clear: none !important;
    color: #fff !important;
    display: inline-flex;
    flex: 1 1 0 !important;
    float: none !important;
    font-size: 13px;
    font-weight: 750;
    justify-content: center;
    line-height: 1;
    margin: 0 !important;
    min-height: 40px;
    padding: 10px 12px;
    text-decoration: none;
    width: auto !important;
}

.smartprice-bottom-header .widget_shopping_cart .button:hover {
    background: var(--sp-orange-dark) !important;
}

.smartprice-bottom-header .widget_shopping_cart .woocommerce-mini-cart__empty-message {
    color: var(--sp-muted);
    font-size: 13px;
    margin: 0;
    padding: 6px 0;
}

.smartprice-home {
    padding-top: 8px;
}

.smartprice-feature-nav {
    align-items: center;
    display: grid;
    column-gap: 24px;
    grid-template-columns: 280px minmax(128px, 0.72fr) minmax(208px, 1.05fr) minmax(174px, 0.92fr) minmax(184px, 0.95fr);
    justify-content: stretch;
    margin: 18px 0 16px;
    position: relative;
    z-index: 30;
}

.smartprice-feature-categories {
    position: relative;
}

.smartprice-feature-category-btn {
    align-items: center;
    background: linear-gradient(135deg, #ff7a1a 0%, #f26a12 100%);
    border: 0;
    border-radius: 10px;
    box-shadow: 0 10px 22px rgba(255, 122, 26, 0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    font-family: "Inter", "Poppins", Arial, sans-serif;
    font-size: 15px;
    font-weight: 750;
    gap: 13px;
    height: 52px;
    padding: 0 24px;
    width: 100%;
}

.smartprice-feature-category-btn .smartprice-lucide {
    color: #fff;
    height: 23px;
    width: 23px;
}

.smartprice-feature-category-menu {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.14);
    left: 0;
    opacity: 0;
    padding: 8px;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 6px);
    transform: translateY(8px);
    transition: opacity 0.16s ease, transform 0.16s ease;
    visibility: hidden;
    width: 280px;
    z-index: 50;
}

.smartprice-feature-categories:after {
    bottom: -10px;
    content: "";
    display: block;
    height: 12px;
    left: 0;
    position: absolute;
    right: 0;
}

.smartprice-feature-categories:hover .smartprice-feature-category-menu,
.smartprice-feature-categories:focus-within .smartprice-feature-category-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.smartprice-feature-category-menu .vertical-nav {
    box-shadow: none;
    margin: 0;
    padding: 0;
}

.smartprice-feature-category-menu .vertical-nav li {
    border: 0;
    border-radius: 10px;
}

.smartprice-feature-category-menu .vertical-nav li a {
    color: var(--sp-text);
    display: block;
    font-size: 13px;
    font-weight: 650;
    padding: 10px 12px;
}

.smartprice-feature-category-menu .vertical-nav li:hover {
    background: var(--sp-orange-soft);
}

.smartprice-feature-category-menu .vertical-nav li:hover > a {
    color: var(--sp-orange-dark);
}

.smartprice-feature-item {
    align-items: center;
    color: var(--sp-dark);
    display: flex;
    gap: 10px;
    min-height: 52px;
    min-width: 0;
}

.smartprice-feature-item strong {
    color: var(--sp-dark);
    display: block;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.15;
    white-space: nowrap;
}

.smartprice-feature-item small {
    color: var(--sp-muted);
    display: block;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 4px;
}

.smartprice-feature-item .smartprice-lucide {
    color: #111827;
    height: 22px;
    width: 22px;
}

.smartprice-feature-item > .smartprice-lucide {
    background: #fff7ef;
    border: 1px solid rgba(255, 122, 26, 0.22);
    border-radius: 999px;
    box-sizing: content-box;
    color: var(--sp-orange);
    padding: 6px;
}

.smartprice-feature-item > .smartprice-lucide-package,
.smartprice-feature-item > .smartprice-lucide-truck {
    background: transparent;
    border-color: transparent;
    color: #111827;
    padding: 4px;
}

.smartprice-omniva-icon {
    color: #ff4b1f !important;
}

.smartprice-feature-omniva strong:before {
    color: #ff4b1f;
    content: "Omniva";
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    margin-right: 8px;
    vertical-align: 1px;
}

.smartprice-home-hero-grid {
    display: grid;
    gap: 16px;
    /* grid-template-columns: minmax(0, 1.05fr) minmax(520px, 0.95fr); */
    grid-template-columns: minmax(0, 1.62fr) minmax(0, 1fr);
    align-items: stretch;
    margin-top: 12px;
}

.smartprice-category-panel,
.smartprice-hero-main,
.smartprice-promo-card,
.smartprice-trust-row,
.smartprice-social-card {
    border: 1px solid var(--sp-line);
    box-shadow: var(--sp-card-shadow);
}

.smartprice-category-panel {
    background: #fff;
    border-radius: 16px;
    overflow: visible;
}

.smartprice-category-title {
    align-items: center;
    background: linear-gradient(135deg, #ff7a1f 0%, #ff5d12 100%);
    border-radius: 14px;
    color: #fff;
    display: flex;
    font-size: 14px;
    font-weight: 800;
    gap: 10px;
    margin: 8px;
    padding: 13px 14px;
}

.smartprice-category-panel .vertical-nav {
    box-shadow: none;
    margin: 0;
    padding: 4px 8px 10px;
}

.smartprice-category-panel .vertical-nav > li {
    border-bottom: 0;
    border-radius: 10px;
}

.smartprice-category-panel .vertical-nav li a {
    color: #344054;
    font-size: 13px;
    letter-spacing: 0;
    padding: 10px 11px;
}

.smartprice-category-panel .vertical-nav li:hover,
.smartprice-category-panel .vertical-nav li.current {
    background: #fff3ea;
}

.smartprice-category-panel .vertical-nav li:hover > a,
.smartprice-category-panel .vertical-nav li.current > a {
    color: var(--sp-orange-dark);
}

.smartprice-hero-main {
    background:
        radial-gradient(circle at 78% 50%, rgba(255, 122, 26, 0.07), transparent 34%),
        linear-gradient(135deg, #fff7ef 0%, #fffaf6 42%, #fff1e8 100%);
    border-radius: 18px;
    display: block;
    min-height: 410px;
    overflow: hidden;
    padding: 58px 46px 48px 62px;
    position: relative;
}

.smartprice-kicker {
    color: var(--sp-orange-dark);
    display: none;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.smartprice-hero-copy h1 {
    color: #07111f;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.18;
    margin-bottom: 20px;
    position: relative;
    text-transform: none;
    z-index: 2;
}

.smartprice-hero-copy {
    max-width: 390px;
    position: relative;
    width: 53%;
    z-index: 2;
}

.smartprice-hero-copy h1 span {
    align-items: baseline;
    color: #07111f;
    display: block;
    font-size: 60px;
    font-weight: 800;
    line-height: 1.02;
    margin-top: 14px;
    text-transform: uppercase;
    white-space: nowrap;
}

.smartprice-hero-copy h1 span strong {
    color: #07111f;
    font: inherit;
}

.smartprice-hero-copy h1 span em {
    color: var(--sp-orange);
    font: inherit;
    font-style: normal;
}

.smartprice-hero-copy p {
    color: #07111f;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 30px;
    max-width: 430px;
}

.smartprice-hero-copy ul {
    display: grid;
    gap: 17px;
    margin: 0;
    padding: 0;
}

.smartprice-hero-copy li {
    color: #07111f;
    font-size: 16px;
    font-weight: 650;
    white-space: nowrap;
}

.smartprice-hero-copy li:before {
    background: #fff;
    border: 2px solid var(--sp-orange);
    border-radius: 50%;
    color: var(--sp-orange);
    content: "✓";
    display: inline-grid;
    font-size: 12px;
    height: 18px;
    margin-right: 14px;
    place-items: center;
    width: 18px;
}

.smartprice-primary-btn {
    align-items: center;
    background: linear-gradient(135deg, #ff7826 0%, #ff5f16 100%);
    border-radius: 11px;
    color: #fff;
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    min-height: 46px;
    padding: 0 22px;
    text-decoration: none;
    white-space: nowrap;
}

.smartprice-hero-main .smartprice-primary-btn {
    display: inline-flex;
    margin-top: 30px;
}

.smartprice-primary-btn:hover {
    color: #fff;
    text-decoration: none;
}

.smartprice-hero-visual {
    bottom: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 58%;
}

.smartprice-hero-visual img {
    display: block;
    height: 100%;
    inset: 0 -20px 0 auto;
    max-height: none;
    max-width: none;
    object-fit: cover;
    object-position: 50% center;
    position: absolute;
    width: calc(100% + 24px);
}

.smartprice-hero-shape {
    background: #ffd8c5;
    border-radius: 999px;
    position: absolute;
}

.smartprice-hero-shape.shape-one {
    height: 170px;
    right: 12px;
    top: 50px;
    width: 170px;
}

.smartprice-hero-shape.shape-two {
    background: #fff;
    bottom: 42px;
    height: 92px;
    right: 116px;
    width: 92px;
}

.smartprice-hero-product {
    background: linear-gradient(145deg, #fff 0%, #f3e0d7 100%);
    border: 1px solid rgba(255, 107, 26, 0.18);
    box-shadow: 0 22px 44px rgba(115, 62, 33, 0.16);
    position: absolute;
}

.smartprice-hero-product.product-one {
    border-radius: 30px 30px 10px 10px;
    bottom: 52px;
    height: 132px;
    right: 52px;
    width: 154px;
}

.smartprice-hero-product.product-two {
    border-radius: 50%;
    bottom: 64px;
    height: 92px;
    right: 185px;
    width: 92px;
}

.smartprice-hero-product.product-three {
    border-radius: 18px;
    bottom: 28px;
    height: 54px;
    right: 148px;
    width: 132px;
}

.smartprice-promo-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
}

.smartprice-promo-card {
    background:
        radial-gradient(circle at 86% 70%, rgba(255, 171, 123, 0.28), transparent 34%),
        linear-gradient(135deg, #fff 0%, #fff2ea 100%);
    border-radius: 16px;
    color: var(--sp-ink);
    min-height: 197px;
    overflow: hidden;
    padding: 24px;
    position: relative;
    text-decoration: none;
}

.smartprice-promo-card:after {
    bottom: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 54px 54px;
    content: "";
    height: 54px;
    opacity: 0.32;
    position: absolute;
    right: 18px;
    width: 54px;
}

.promo-kids:after {
    display: none;
}

.promo-kids {
    background:
        linear-gradient(90deg, rgba(255, 250, 245, 0.98) 0%, rgba(255, 250, 245, 0.92) 42%, rgba(255, 244, 236, 0.16) 100%),
        url("../smartprice/img/promo-kids-teddy.png") right -28px bottom -8px / 67% auto no-repeat,
        linear-gradient(135deg, #fffaf5 0%, #fff1e8 100%);
    padding-right: 48%;
}

.promo-kitchen:after,
.promo-home:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 24 24' fill='none' stroke='%23ff7a1a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7.5 4.27 9 5.15'/%3E%3Cpath d='M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z'/%3E%3Cpath d='m3.3 7 8.7 5 8.7-5'/%3E%3Cpath d='M12 22V12'/%3E%3C/svg%3E");
}

.promo-beauty:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 24 24' fill='none' stroke='%23ff7a1a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z'/%3E%3Cpath d='m15 9-6 6'/%3E%3Cpath d='M9 9h.01'/%3E%3Cpath d='M15 15h.01'/%3E%3C/svg%3E");
}

.smartprice-promo-card strong,
.smartprice-promo-card span,
.smartprice-promo-card small {
    display: block;
    position: relative;
    z-index: 1;
}

.smartprice-promo-card strong {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.smartprice-promo-card span {
    color: var(--sp-orange);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 32px;
}

.smartprice-promo-card small {
    align-items: center;
    color: var(--sp-ink);
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    gap: 3px;
}

.smartprice-promo-card:hover {
    color: var(--sp-ink);
    text-decoration: none;
}

.smartprice-trust-row {
    background: #fff;
    border-radius: 16px;
    display: grid;
    gap: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 18px 0 22px;
    overflow: hidden;
}

.smartprice-trust-row div {
    align-items: center;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 18px;
}

.smartprice-trust-row div + div {
    border-left: 1px solid #f0e4dc;
}

.smartprice-trust-row .smartprice-lucide {
    align-items: center;
    background: #fff6f0;
    border-radius: 50%;
    color: var(--sp-orange);
    display: flex;
    grid-row: 1 / span 2;
    height: 38px;
    justify-content: center;
    padding: 8px;
    width: 38px;
}

.smartprice-trust-row strong {
    color: var(--sp-ink);
    font-size: 13px;
    font-weight: 800;
}

.smartprice-trust-row span {
    color: #667085;
    font-size: 12px;
    line-height: 1.35;
}

.smartprice-product-section {
    margin-bottom: 22px;
    margin-top: 18px;
}

.smartprice-section-heading {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.smartprice-section-heading > div {
    align-items: center;
    display: flex;
    gap: 12px;
}

.smartprice-section-heading h2 {
    color: var(--sp-ink);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0;
    margin: 0;
    text-transform: none;
}

.smartprice-section-heading span {
    background: #ffe4ef;
    border-radius: 999px;
    color: #e04476;
    font-size: 12px;
    font-weight: 800;
    padding: 5px 12px;
}

.smartprice-section-heading a {
    align-items: center;
    color: var(--sp-orange-dark);
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    gap: 2px;
    text-decoration: none;
}

.smartprice-products-row.products-row {
    gap: 14px;
    row-gap: 18px;
}

.smartprice-products-row.products-row .product-col {
    flex: 0 0 calc((100% - 14px) / 2);
    max-width: calc((100% - 14px) / 2);
}

@media (min-width: 768px) {
    .smartprice-products-row.products-row .product-col {
        flex: 0 0 calc((100% - 28px) / 3);
        max-width: calc((100% - 28px) / 3);
    }
}

@media (min-width: 1200px) {
    .smartprice-products-row.products-row .product-col {
        flex: 0 0 calc((100% - 70px) / 6);
        max-width: calc((100% - 70px) / 6);
    }
}

.smartprice-home .product_home {
    background: #fff !important;
    border: 1px solid #efe6df;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(16, 24, 40, 0.055);
    overflow: hidden;
    position: relative;
}

.smartprice-home .product_home:hover {
    box-shadow: 0 14px 30px rgba(16, 24, 40, 0.1);
    transform: translateY(-3px);
}

.smartprice-home .product_home .product,
.smartprice-home .day-products .new-product-home .product-type-simple,
.smartprice-home .day-products .new-product-home .product-type-variable {
    background: #fff;
    border-radius: 16px;
    box-shadow: none;
    min-height: 100%;
    padding: 10px 10px 14px;
    top: 0;
}

.smartprice-home .product_thumbnail {
    align-items: center;
    background: #fff;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    min-height: 170px;
    overflow: hidden;
}

.smartprice-home .product_thumbnail img,
.smartprice-home .woocommerce ul.products li.product img {
    border-radius: 12px;
    max-height: 165px;
    object-fit: contain;
    width: 100%;
}

.smartprice-home .woocommerce-loop-product__title {
    color: var(--sp-ink);
    display: -webkit-box;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.32;
    margin: 8px 0 6px;
    min-height: 35px;
    overflow: hidden;
    text-transform: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.smartprice-home .in_stock_text {
    color: #667085;
    font-size: 12px;
    margin-bottom: 7px;
}

.smartprice-home .price {
    align-items: baseline;
    display: flex !important;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 32px;
}

.smartprice-home .price del,
.smartprice-home .price del .woocommerce-Price-amount.amount bdi {
    color: #a6a6a6 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
}

.smartprice-home .price ins {
    text-decoration: none;
}

.smartprice-home .price ins .woocommerce-Price-amount.amount,
.smartprice-home ins .woocommerce-Price-amount.amount {
    background: #fff3ef;
    border-radius: 9px;
    padding: 4px 8px;
}

.smartprice-home .price ins .woocommerce-Price-amount.amount bdi,
.smartprice-home ins .woocommerce-Price-amount.amount bdi {
    color: #ff7a1a !important;
    font-size: 18px !important;
    font-weight: 800 !important;
}

.smartprice-home .onsale {
    background: #ffcf1a !important;
    border-radius: 999px !important;
    box-shadow: none !important;
    color: var(--sp-ink) !important;
    font-family: 'Open Sans', sans-serif !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    min-height: 38px;
    min-width: 38px;
    padding: 10px 5px !important;
    right: 10px !important;
    top: 10px !important;
}

.smartprice-home .button.add_to_cart_button,
.smartprice-home .button.product_type_simple,
.smartprice-home .button.product_type_variable,
.smartprice-home .product-type-simple:hover .button.product_type_simple,
.smartprice-home .product-type-simple:hover .add_to_cart_button,
.smartprice-home .product-type-variable:hover .button.product_type_variable {
    align-items: center !important;
    background: var(--sp-orange) !important;
    border-radius: 50% !important;
    bottom: 12px !important;
    color: #fff !important;
    display: flex !important;
    font-size: 0 !important;
    height: 38px !important;
    justify-content: center !important;
    min-width: 38px !important;
    padding: 0 !important;
    position: absolute !important;
    right: 12px !important;
    width: 38px !important;
}

.smartprice-home .button.add_to_cart_button:before,
.smartprice-home .button.product_type_simple:before,
.smartprice-home .button.product_type_variable:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='21' r='1'/%3E%3Ccircle cx='19' cy='21' r='1'/%3E%3Cpath d='M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57L21.7 8H5.12'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    content: "";
    display: block;
    height: 20px;
    width: 20px;
}

.smartprice-category-cards {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.smartprice-category-card {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.82) 0%, var(--sp-category-bg, #fff8f1) 100%);
    border: 1px solid rgba(237, 240, 243, 0.72);
    border-radius: 15px;
    color: var(--sp-ink);
    display: block;
    min-height: 150px;
    padding: 14px;
    text-align: center;
    text-decoration: none;
    transition: box-shadow 0.22s ease, transform 0.22s ease, background-color 0.22s ease;
}

.smartprice-category-card:hover {
    color: var(--sp-ink);
    text-decoration: none;
}

.smartprice-category-thumb {
    height: 78px;
    margin-bottom: 9px;
}

.smartprice-category-thumb img {
    height: 78px;
    object-fit: contain;
    width: 100%;
}

.smartprice-category-card strong,
.smartprice-category-card span {
    display: block;
}

.smartprice-category-card strong {
    font-size: 13px;
    font-weight: 800;
}

.smartprice-category-card span {
    color: #667085;
    font-size: 12px;
    margin-top: 3px;
}

.smartprice-social-section {
    display: grid;
    gap: 16px;
    grid-template-columns: 1.1fr 1.1fr 0.8fr;
    margin-bottom: 26px;
    margin-top: 24px;
}

.smartprice-social-card {
    background: linear-gradient(135deg, #fff 0%, #fff5ee 100%);
    border-radius: 16px;
    padding: 24px;
}

.smartprice-social-card h3 {
    color: var(--sp-ink);
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 8px;
}

.smartprice-social-card p {
    color: #667085;
    font-size: 13px;
    margin-bottom: 14px;
}

.smartprice-social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.smartprice-social-buttons a {
    border-radius: 9px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    padding: 10px 16px;
    text-decoration: none;
}

.smartprice-social-buttons .telegram { background: #2aabee; }
.smartprice-social-buttons .facebook { background: #1877f2; }
.smartprice-social-buttons .instagram { background: linear-gradient(135deg, #ff7a59, #d62976); }

.smartprice-email-card form {
    display: flex;
    margin-top: 18px;
}

.smartprice-email-card input {
    background: #fff;
    border: 1px solid #eadfd7;
    border-radius: 11px 0 0 11px;
    color: var(--sp-ink);
    flex: 1;
    min-height: 46px;
    padding: 0 14px;
}

.smartprice-email-card button {
    background: var(--sp-orange);
    border: 0;
    border-radius: 0 11px 11px 0;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    min-width: 54px;
}

.smartprice-email-card button .smartprice-lucide {
    color: #fff;
}

.smartprice-help-card p {
    align-items: center;
    color: var(--sp-ink);
    display: flex;
    gap: 8px;
    font-weight: 800;
    margin-bottom: 8px;
}

.smartprice-help-card p .smartprice-lucide {
    height: 18px;
    width: 18px;
}

.page-footer {
    background: #fff;
    border-top: 1px solid #eee4dc;
    color: var(--sp-ink);
    margin-top: 34px !important;
}

.footer-top {
    background: #fff7f1;
    border-bottom: 1px solid #eee4dc;
}

.page-footer h4,
.page-footer h6 {
    color: var(--sp-ink) !important;
    letter-spacing: 0;
}

.page-footer h4 {
    color: var(--sp-orange) !important;
    font-weight: 900;
}

.smartprice-footer-heading-icon {
    align-items: center;
    display: inline-flex;
    gap: 8px;
}

.smartprice-sidebar-title-icon {
    align-items: center;
    display: inline-flex;
    gap: 8px;
}

.smartprice-product-state-icon {
    align-items: center;
    background: var(--sp-orange);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    height: 30px;
    justify-content: center;
    margin-right: 6px;
    padding: 5px;
    width: 30px;
}

.smartprice-product-state-icon:before,
.smartprice-stock-tooltip:before,
.badge-text .smartprice-lucide + p:before {
    content: none !important;
}

.smartprice-product-state-icon .smartprice-lucide,
.badge-text .smartprice-lucide {
    color: currentColor;
}

.smartprice-stock-tooltip {
    align-items: center;
    display: inline-flex;
    gap: 4px;
}

.page-footer p .smartprice-lucide {
    color: var(--sp-dark);
    height: 20px;
    margin-right: 8px;
    width: 20px;
}

.page-footer p,
.page-footer a {
    color: #475467 !important;
    font-size: 13px;
}

.page-footer hr {
    background: var(--sp-orange);
    border: 0;
    height: 2px;
}

.footer-copyright {
    background: #111827;
    color: rgba(255, 255, 255, 0.72) !important;
}

.footer-copyright a {
    color: #fff !important;
}

@media (max-width: 1199px) {
    .smartprice-utility-list {
        gap: 18px;
    }

    .smartprice-feature-nav {
        grid-template-columns: minmax(220px, 260px) repeat(2, minmax(0, 1fr));
        justify-content: stretch;
    }

    .smartprice-home-hero-grid {
        grid-template-columns: 1fr;
    }

    .smartprice-hero-copy h1 {
        font-size: 36px;
    }

    .smartprice-hero-copy {
        max-width: 350px;
        width: 48%;
    }

    .smartprice-hero-copy h1 span {
        font-size: 52px;
    }

    .smartprice-hero-copy p {
        font-size: 15px;
    }

    .smartprice-hero-copy li {
        white-space: normal;
    }

    .smartprice-category-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .smartprice-main-header {
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .smartprice-home {
        padding-top: 0;
    }

    .smartprice-feature-nav {
        gap: 10px;
        grid-template-columns: 1fr 1fr;
    }

    .smartprice-feature-categories {
        grid-column: 1 / -1;
    }

    .smartprice-feature-category-menu {
        width: 100%;
    }

    .smartprice-home-hero-grid {
        grid-template-columns: 1fr;
    }

    .smartprice-hero-main {
        min-height: auto;
        padding: 28px;
    }

    .smartprice-hero-copy {
        max-width: none;
        width: 100%;
    }

    .smartprice-hero-visual {
        display: flex;
        min-height: 220px;
        margin-top: 18px;
        position: relative;
        width: 100%;
    }

    .smartprice-hero-visual img {
        height: auto;
        inset: auto;
        max-height: 280px;
        max-width: 112%;
        object-fit: contain;
        object-position: right bottom;
        position: relative;
        right: -18px;
        width: 100%;
    }

    .smartprice-trust-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .smartprice-trust-row div:nth-child(3) {
        border-left: 0;
        border-top: 1px solid #f0e4dc;
    }

    .smartprice-trust-row div:nth-child(4) {
        border-top: 1px solid #f0e4dc;
    }

    .smartprice-social-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .smartprice-feature-nav {
        grid-template-columns: 1fr;
    }

    .smartprice-feature-item {
        min-height: 42px;
    }

    .smartprice-hero-copy h1 {
        font-size: 30px;
    }

    .smartprice-hero-copy h1 span {
        font-size: 42px;
    }

    .smartprice-promo-grid,
    .smartprice-trust-row,
    .smartprice-category-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .smartprice-promo-card {
        min-height: 142px;
        padding: 18px;
    }

    .smartprice-section-heading {
        align-items: flex-start;
        gap: 8px;
    }

    .smartprice-section-heading h2 {
        font-size: 19px;
    }

    .smartprice-section-heading a {
        font-size: 12px;
        text-align: right;
    }

    .smartprice-home .product_thumbnail {
        min-height: 138px;
    }
}

/* Smartprice redesign surface cleanup: remove legacy hard borders */
#masthead.site-header {
    border: 0;
    box-shadow: none;
}

.smartprice-utility-bar {
    border-bottom: 0;
    box-shadow: 0 1px 0 rgba(17, 24, 39, 0.03);
    position: relative;
    z-index: 10010;
}

.smartprice-bottom-header #ajaxsearchlite1,
.smartprice-bottom-header div.asl_w {
    border: 0 !important;
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06) !important;
}

.smartprice-bottom-header #ajaxsearchlite1 .probox,
.smartprice-bottom-header div.asl_w .probox {
    border: 0 !important;
    box-shadow: inset 0 0 0 1px rgba(237, 240, 243, 0.55) !important;
}

.smartprice-category-panel,
.smartprice-hero-main,
.smartprice-promo-card,
.smartprice-trust-row,
.smartprice-social-card,
.smartprice-category-card,
.smartprice-home .product_home {
    border: 0 !important;
}

.smartprice-category-panel,
.smartprice-hero-main,
.smartprice-promo-card,
.smartprice-social-card {
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.055);
}

.smartprice-category-panel {
    background: var(--sp-card-bg);
}

.smartprice-category-panel .vertical-nav,
.smartprice-category-panel .vertical-nav > li,
.smartprice-category-panel .vertical-nav li,
.smartprice-category-panel .vertical-nav li a {
    border: 0 !important;
    box-shadow: none !important;
}

.smartprice-category-panel .vertical-nav > li + li {
    margin-top: 1px;
}

.smartprice-category-panel .vertical-nav li a {
    border-radius: 9px;
}

.smartprice-hero-main {
    background:
        radial-gradient(circle at 78% 50%, rgba(255, 122, 26, 0.07), transparent 34%),
        linear-gradient(135deg, #fff7ef 0%, #fffaf6 42%, #fff1e8 100%);
}

.smartprice-promo-card,
.smartprice-social-card,
.smartprice-category-card {
    background:
        radial-gradient(circle at 88% 76%, rgba(255, 122, 26, 0.08), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #fffaf5 100%);
}

.smartprice-trust-row {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.045);
}

.smartprice-trust-row div,
.smartprice-trust-row div + div,
.smartprice-trust-row div:nth-child(3),
.smartprice-trust-row div:nth-child(4) {
    border: 0 !important;
}

.smartprice-trust-row div + div {
    box-shadow: inset 1px 0 0 rgba(237, 240, 243, 0.38);
}

.smartprice-home .product_home {
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.055);
}

.smartprice-home .product_home:hover {
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.095);
}

.smartprice-home .product_home .product,
.smartprice-home .day-products .new-product-home .product-type-simple,
.smartprice-home .day-products .new-product-home .product-type-variable,
.smartprice-home .product_thumbnail {
    border: 0 !important;
    box-shadow: none !important;
}

.smartprice-category-card {
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.045);
}

.smartprice-email-card input {
    border: 0;
    box-shadow: inset 0 0 0 1px rgba(237, 240, 243, 0.72);
}

.page-footer {
    border-top: 0;
    box-shadow: 0 -1px 0 rgba(17, 24, 39, 0.03);
}

.footer-top {
    border-bottom: 0;
    box-shadow: inset 0 -1px 0 rgba(17, 24, 39, 0.03);
}

.page-footer hr {
    border: 0 !important;
    box-shadow: none !important;
}

.footer-copyright {
    border: 0;
}

/* Footer polish */
.page-footer {
    background: #fff !important;
    border-top: 1px solid rgba(237, 240, 243, 0.96) !important;
    box-shadow: 0 -18px 44px rgba(17, 24, 39, 0.03) !important;
    color: var(--sp-dark) !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    margin-top: 56px !important;
}

.page-footer > .container {
    max-width: 1237px !important;
    padding-bottom: 34px !important;
    padding-top: 0px !important;
}

.page-footer .row {
    align-items: flex-start !important;
    display: grid !important;
    gap: 34px !important;
    grid-template-columns: 1.35fr 0.85fr 0.85fr 1fr !important;
    margin: 0 !important;
}

.page-footer .row > [class*="col-"] {
    margin: 0 !important;
    max-width: none !important;
    padding: 0 !important;
    width: auto !important;
}

.page-footer h6 {
    align-items: center;
    color: var(--sp-dark) !important;
    display: inline-flex;
    font-size: 15px !important;
    font-weight: 850 !important;
    gap: 8px;
    letter-spacing: 0 !important;
    line-height: 1.2 !important;
    margin: 0 0 14px !important;
    text-transform: uppercase !important;
}

.page-footer h6 .smartprice-lucide {
    height: 18px !important;
    width: 18px !important;
}

.page-footer hr {
    background: var(--sp-orange) !important;
    border: 0 !important;
    border-radius: 999px !important;
    display: block !important;
    height: 2px !important;
    margin: 0 0 20px !important;
    width: 42px !important;
}

.page-footer p {
    color: var(--sp-muted) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.45 !important;
    margin: 0 0 12px !important;
}

.page-footer a {
    color: var(--sp-muted) !important;
    display: inline-flex;
    font-size: 13px !important;
    font-weight: 550 !important;
    line-height: 1.35 !important;
    text-decoration: none !important;
    transition: color 0.16s ease, transform 0.16s ease;
}

.page-footer a:hover {
    color: var(--sp-orange-dark) !important;
    transform: translateX(2px);
}

.page-footer .smartprice-footer-heading-icon {
    align-items: center !important;
}

.page-footer .smartprice-footer-heading-icon + hr {
    margin-top: 0 !important;
}

.page-footer img {
    height: auto;
    max-width: 100%;
}

.page-footer img[style*="width: 280px"] {
    display: block !important;
    margin: 14px 0 18px !important;
    max-width: 230px !important;
    width: 230px !important;
}

.page-footer a[target="_blank"] {
    margin: 0 5px 6px 0 !important;
    vertical-align: top;
}

.page-footer a[target="_blank"] img {
    background: #fff;
    border: 1px solid rgba(237, 240, 243, 0.92) !important;
    border-radius: 5px;
    height: 27px !important;
    object-fit: contain;
    padding: 2px;
    width: auto !important;
}

.page-footer p .smartprice-lucide {
    color: var(--sp-dark) !important;
    flex: 0 0 18px;
    height: 18px !important;
    margin-right: 9px !important;
    position: relative;
    top: 3px;
    width: 18px !important;
}

.page-footer .fb-smartprice {
    border-radius: 12px;
    margin-top: 14px;
    max-width: 210px;
    overflow: hidden;
}

.footer-copyright {
    align-items: center;
    background: #111827 !important;
    color: rgba(255, 255, 255, 0.72) !important;
    display: flex;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 12px !important;
    justify-content: center;
    min-height: 44px;
    padding: 12px 16px !important;
}

.footer-copyright a {
    color: #fff !important;
    display: inline-flex;
    font-size: 12px !important;
    font-weight: 750 !important;
    margin-left: 4px;
}

/* Shop/category product cards */
.woocommerce-shop ul.products,
.tax-product_cat ul.products,
.post-type-archive-product ul.products,
.woocommerce-page ul.products {
    display: grid !important;
    gap: 24px !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    margin: 0 !important;
}

.woocommerce-shop ul.products:before,
.woocommerce-shop ul.products:after,
.tax-product_cat ul.products:before,
.tax-product_cat ul.products:after,
.post-type-archive-product ul.products:before,
.post-type-archive-product ul.products:after,
.woocommerce-page ul.products:before,
.woocommerce-page ul.products:after {
    content: none !important;
    display: none !important;
}

.woocommerce-shop ul.products li.product,
.tax-product_cat ul.products li.product,
.post-type-archive-product ul.products li.product,
.woocommerce-page ul.products li.product {
    background: transparent !important;
    border: 0 !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    width: auto !important;
}

.woocommerce-shop ul.products li.product .product-hover-style,
.tax-product_cat ul.products li.product .product-hover-style,
.post-type-archive-product ul.products li.product .product-hover-style,
.woocommerce-page ul.products li.product .product-hover-style {
    background: #fff !important;
    border: 1px solid rgba(237, 240, 243, 0.92) !important;
    border-radius: 14px !important;
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.055) !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 100% !important;
    overflow: hidden !important;
    padding: 12px 12px 14px !important;
    position: relative !important;
    transition: box-shadow 0.2s ease, border-color 0.2s ease !important;
}

.woocommerce-shop ul.products li.product .product-hover-style:hover,
.tax-product_cat ul.products li.product .product-hover-style:hover,
.post-type-archive-product ul.products li.product .product-hover-style:hover,
.woocommerce-page ul.products li.product .product-hover-style:hover {
    border-color: rgba(255, 122, 26, 0.18) !important;
    box-shadow: 0 16px 34px rgba(17, 24, 39, 0.08) !important;
}

.woocommerce-shop ul.products li.product .product-hover-style > a,
.tax-product_cat ul.products li.product .product-hover-style > a,
.post-type-archive-product ul.products li.product .product-hover-style > a,
.woocommerce-page ul.products li.product .product-hover-style > a {
    color: inherit !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 100% !important;
    position: static !important;
    text-decoration: none !important;
}

.woocommerce-shop ul.products li.product .product_thumbnail,
.tax-product_cat ul.products li.product .product_thumbnail,
.post-type-archive-product ul.products li.product .product_thumbnail,
.woocommerce-page ul.products li.product .product_thumbnail {
    align-items: center !important;
    background: #fff !important;
    border: 0 !important;
    display: flex !important;
    justify-content: center !important;
    margin: 0 0 12px !important;
    min-height: 166px !important;
    overflow: visible !important;
    position: static !important;
}

.woocommerce-shop ul.products li.product img,
.tax-product_cat ul.products li.product img,
.post-type-archive-product ul.products li.product img,
.woocommerce-page ul.products li.product img {
    display: block !important;
    height: auto !important;
    margin: 0 auto !important;
    max-height: 162px !important;
    object-fit: contain !important;
    width: auto !important;
}

.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    color: #111827 !important;
    display: -webkit-box !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.36 !important;
    margin: 0 0 14px !important;
    min-height: 38px !important;
    overflow: hidden !important;
    padding: 0 !important;
    text-overflow: ellipsis !important;
}

.woocommerce-shop ul.products li.product .in_stock_text,
.tax-product_cat ul.products li.product .in_stock_text,
.post-type-archive-product ul.products li.product .in_stock_text,
.woocommerce-page ul.products li.product .in_stock_text {
    display: none !important;
}

.woocommerce-shop ul.products li.product .price,
.tax-product_cat ul.products li.product .price,
.post-type-archive-product ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
    align-items: center !important;
    column-gap: 11px !important;
    display: grid !important;
    grid-template-columns: max-content max-content 1fr !important;
    line-height: 1 !important;
    margin: auto 0 0 !important;
    min-height: 32px !important;
    column-gap: 8px !important;
    padding: 0 58px 0 0 !important;
    position: relative !important;
    white-space: nowrap !important;
    width: 100% !important;
}

.woocommerce-shop ul.products li.product .price ins,
.tax-product_cat ul.products li.product .price ins,
.post-type-archive-product ul.products li.product .price ins,
.woocommerce-page ul.products li.product .price ins {
    background: transparent !important;
    box-shadow: none !important;
    display: inline-flex !important;
    line-height: 1 !important;
    margin: 0 !important;
    order: 1 !important;
    padding: 0 !important;
    text-decoration: none !important;
}

.woocommerce-shop ul.products li.product .price del,
.tax-product_cat ul.products li.product .price del,
.post-type-archive-product ul.products li.product .price del,
.woocommerce-page ul.products li.product .price del {
    color: #9aa3b2 !important;
    display: inline-flex !important;
    line-height: 1 !important;
    margin: 0 !important;
    opacity: 1 !important;
    order: 2 !important;
    text-decoration: line-through !important;
    text-decoration-color: #9aa3b2 !important;
    text-decoration-thickness: 1.5px !important;
}

.woocommerce-shop ul.products li.product .price ins .woocommerce-Price-amount.amount bdi,
.tax-product_cat ul.products li.product .price ins .woocommerce-Price-amount.amount bdi,
.post-type-archive-product ul.products li.product .price ins .woocommerce-Price-amount.amount bdi,
.woocommerce-page ul.products li.product .price ins .woocommerce-Price-amount.amount bdi,
.woocommerce-shop ul.products li.product .price > .woocommerce-Price-amount.amount bdi,
.tax-product_cat ul.products li.product .price > .woocommerce-Price-amount.amount bdi,
.post-type-archive-product ul.products li.product .price > .woocommerce-Price-amount.amount bdi,
.woocommerce-page ul.products li.product .price > .woocommerce-Price-amount.amount bdi {
    color: var(--sp-dark) !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
}

.woocommerce-shop ul.products li.product .price del .woocommerce-Price-amount.amount,
.tax-product_cat ul.products li.product .price del .woocommerce-Price-amount.amount,
.post-type-archive-product ul.products li.product .price del .woocommerce-Price-amount.amount,
.woocommerce-page ul.products li.product .price del .woocommerce-Price-amount.amount,
.woocommerce-shop ul.products li.product .price del .woocommerce-Price-amount.amount bdi,
.tax-product_cat ul.products li.product .price del .woocommerce-Price-amount.amount bdi,
.post-type-archive-product ul.products li.product .price del .woocommerce-Price-amount.amount bdi,
.woocommerce-page ul.products li.product .price del .woocommerce-Price-amount.amount bdi {
    color: #9aa3b2 !important;
    font-size: 13px !important;
    font-weight: 650 !important;
    line-height: 1 !important;
}

.woocommerce-shop ul.products li.product .onsale,
.tax-product_cat ul.products li.product .onsale,
.post-type-archive-product ul.products li.product .onsale,
.woocommerce-page ul.products li.product .onsale {
    align-items: center !important;
    background: #fff2ee !important;
    border: 0 !important;
    border-radius: 999px !important;
    bottom: 14px !important;
    box-shadow: none !important;
    color: #ff5f2a !important;
    display: inline-flex !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    height: 30px !important;
    justify-content: center !important;
    line-height: 1 !important;
    min-height: 30px !important;
    min-width: 50px !important;
    padding: 0 10px !important;
    position: absolute !important;
    right: 12px !important;
    top: auto !important;
    width: auto !important;
    z-index: 8 !important;
}

.woocommerce-shop ul.products li.product .sale-icon,
.tax-product_cat ul.products li.product .sale-icon,
.post-type-archive-product ul.products li.product .sale-icon,
.woocommerce-page ul.products li.product .sale-icon {
    display: flex !important;
    gap: 6px !important;
    left: 12px !important;
    position: absolute !important;
    top: 12px !important;
    z-index: 9 !important;
}

.woocommerce-shop ul.products li.product .sale-icon .smartprice-product-state-icon,
.tax-product_cat ul.products li.product .sale-icon .smartprice-product-state-icon,
.post-type-archive-product ul.products li.product .sale-icon .smartprice-product-state-icon,
.woocommerce-page ul.products li.product .sale-icon .smartprice-product-state-icon {
    align-items: center !important;
    border-radius: 999px !important;
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.1) !important;
    color: #fff !important;
    display: inline-flex !important;
    height: 30px !important;
    justify-content: center !important;
    margin: 0 !important;
    min-width: 30px !important;
    padding: 0 !important;
    width: 30px !important;
}

.woocommerce-shop ul.products li.product .smartprice-product-state-new,
.tax-product_cat ul.products li.product .smartprice-product-state-new,
.post-type-archive-product ul.products li.product .smartprice-product-state-new,
.woocommerce-page ul.products li.product .smartprice-product-state-new {
    background: var(--sp-badge-pink) !important;
}

.woocommerce-shop ul.products li.product .smartprice-product-state-check,
.tax-product_cat ul.products li.product .smartprice-product-state-check,
.post-type-archive-product ul.products li.product .smartprice-product-state-check,
.woocommerce-page ul.products li.product .smartprice-product-state-check {
    background: #42c6d6 !important;
}

.woocommerce-shop ul.products li.product .smartprice-product-state-damage,
.tax-product_cat ul.products li.product .smartprice-product-state-damage,
.post-type-archive-product ul.products li.product .smartprice-product-state-damage,
.woocommerce-page ul.products li.product .smartprice-product-state-damage {
    background: var(--sp-orange) !important;
}

.woocommerce-shop ul.products li.product .smartprice-product-state-used,
.tax-product_cat ul.products li.product .smartprice-product-state-used,
.post-type-archive-product ul.products li.product .smartprice-product-state-used,
.woocommerce-page ul.products li.product .smartprice-product-state-used {
    background: #7c3aed !important;
}

.woocommerce-shop ul.products li.product .smartprice-loop-extra-badge,
.tax-product_cat ul.products li.product .smartprice-loop-extra-badge,
.post-type-archive-product ul.products li.product .smartprice-loop-extra-badge,
.woocommerce-page ul.products li.product .smartprice-loop-extra-badge {
    align-items: center !important;
    border-radius: 999px !important;
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.12) !important;
    color: #fff !important;
    display: inline-flex !important;
    gap: 5px !important;
    height: 25px !important;
    left: 12px !important;
    max-width: calc(100% - 24px) !important;
    padding: 0 9px !important;
    position: absolute !important;
    top: 166px !important;
    width: auto !important;
    z-index: 10 !important;
}

.woocommerce-shop ul.products li.product:has(.smartprice-loop-extra-badge) .woocommerce-loop-product__title,
.tax-product_cat ul.products li.product:has(.smartprice-loop-extra-badge) .woocommerce-loop-product__title,
.post-type-archive-product ul.products li.product:has(.smartprice-loop-extra-badge) .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product:has(.smartprice-loop-extra-badge) .woocommerce-loop-product__title {
    margin-top: 34px !important;
}

.woocommerce-shop ul.products li.product .badge-text p,
.tax-product_cat ul.products li.product .badge-text p,
.post-type-archive-product ul.products li.product .badge-text p,
.woocommerce-page ul.products li.product .badge-text p {
    font-size: 10px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    margin: 0 !important;
    overflow: hidden !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
}

.woocommerce-shop ul.products li.product .smartprice-product-actions,
.tax-product_cat ul.products li.product .smartprice-product-actions,
.post-type-archive-product ul.products li.product .smartprice-product-actions,
.woocommerce-page ul.products li.product .smartprice-product-actions {
    align-items: center !important;
    display: flex !important;
    gap: 8px !important;
    left: calc(50% - 38px) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    top: 82px !important;
    transform: none !important;
    transition: opacity 0.18s ease, transform 0.18s ease !important;
    visibility: hidden !important;
    z-index: 20 !important;
}

.woocommerce-shop ul.products li.product .product-hover-style:hover .smartprice-product-actions,
.tax-product_cat ul.products li.product .product-hover-style:hover .smartprice-product-actions,
.post-type-archive-product ul.products li.product .product-hover-style:hover .smartprice-product-actions,
.woocommerce-page ul.products li.product .product-hover-style:hover .smartprice-product-actions {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    visibility: visible !important;
}

.woocommerce-shop ul.products li.product .smartprice-product-actions .smart-cart-btn,
.woocommerce-shop ul.products li.product .smartprice-product-actions .smartprice-wishlist-btn,
.tax-product_cat ul.products li.product .smartprice-product-actions .smart-cart-btn,
.tax-product_cat ul.products li.product .smartprice-product-actions .smartprice-wishlist-btn,
.post-type-archive-product ul.products li.product .smartprice-product-actions .smart-cart-btn,
.post-type-archive-product ul.products li.product .smartprice-product-actions .smartprice-wishlist-btn,
.woocommerce-page ul.products li.product .smartprice-product-actions .smart-cart-btn,
.woocommerce-page ul.products li.product .smartprice-product-actions .smartprice-wishlist-btn {
    align-items: center !important;
    background: #fff !important;
    border: 1px solid rgba(237, 240, 243, 0.95) !important;
    border-radius: 999px !important;
    box-shadow: 0 12px 26px rgba(17, 24, 39, 0.12) !important;
    color: #111827 !important;
    display: inline-flex !important;
    height: 34px !important;
    justify-content: center !important;
    margin: 0 !important;
    min-height: 34px !important;
    min-width: 34px !important;
    padding: 0 !important;
    position: static !important;
    text-decoration: none !important;
    width: 34px !important;
}

.woocommerce-shop ul.products li.product .smartprice-product-actions .smart-cart-btn:hover,
.woocommerce-shop ul.products li.product .smartprice-product-actions .smartprice-wishlist-btn:hover,
.tax-product_cat ul.products li.product .smartprice-product-actions .smart-cart-btn:hover,
.tax-product_cat ul.products li.product .smartprice-product-actions .smartprice-wishlist-btn:hover,
.post-type-archive-product ul.products li.product .smartprice-product-actions .smart-cart-btn:hover,
.post-type-archive-product ul.products li.product .smartprice-product-actions .smartprice-wishlist-btn:hover,
.woocommerce-page ul.products li.product .smartprice-product-actions .smart-cart-btn:hover,
.woocommerce-page ul.products li.product .smartprice-product-actions .smartprice-wishlist-btn:hover {
    background: var(--sp-orange) !important;
    border-color: var(--sp-orange) !important;
    color: #fff !important;
}

@media (max-width: 1199px) {
    .woocommerce-shop ul.products,
    .tax-product_cat ul.products,
    .post-type-archive-product ul.products,
    .woocommerce-page ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 767px) {
    .woocommerce-shop ul.products,
    .tax-product_cat ul.products,
    .post-type-archive-product ul.products,
    .woocommerce-page ul.products {
        gap: 14px !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 991px) {
    .page-footer .row {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 575px) {
    .page-footer > .container {
        padding-bottom: 26px !important;
        padding-top: 30px !important;
    }

    .page-footer .row {
        gap: 28px !important;
        grid-template-columns: 1fr !important;
    }
}

/* GTranslate compact dropdown */
.smartprice-utility-lang {
    align-items: center;
    display: inline-flex;
    justify-content: flex-end;
    min-width: 64px;
    overflow: visible;
    position: relative;
}

.smartprice-utility-lang .gtranslate_wrapper,
.smartprice-utility-lang .gt_switcher_wrapper {
    display: inline-flex !important;
    height: auto !important;
    opacity: 1 !important;
    overflow: visible !important;
    position: static !important;
    visibility: visible !important;
    width: auto !important;
}

.smartprice-utility-lang .gt_switcher {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: var(--sp-dark) !important;
    display: block !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    min-width: 58px !important;
    overflow: visible !important;
    position: relative !important;
    width: auto !important;
}

.smartprice-utility-lang .gt_switcher .gt_selected {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
    width: auto !important;
}

.smartprice-utility-lang .gt_switcher .gt_selected a {
    align-items: center;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: var(--sp-dark) !important;
    display: inline-flex !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 750 !important;
    gap: 6px;
    height: 28px !important;
    line-height: 1 !important;
    padding: 0 !important;
    text-decoration: none !important;
    white-space: nowrap;
    width: auto !important;
}

.smartprice-utility-lang .gt_switcher .gt_selected a img {
    display: none !important;
}

.smartprice-utility-lang .gt_switcher .gt_selected a:after {
    border: solid var(--sp-dark);
    border-width: 0 1.8px 1.8px 0;
    content: "";
    display: inline-block;
    height: 6px;
    margin-left: 2px;
    margin-top: -3px;
    transform: rotate(45deg);
    width: 6px;
}

.smartprice-utility-lang .gt_switcher .gt_option {
    background: #fff !important;
    border: 0 !important;
    border-radius: 10px !important;
    box-shadow: 0 16px 34px rgba(17, 24, 39, 0.14) !important;
    left: auto !important;
    min-width: 150px !important;
    overflow: hidden !important;
    padding: 6px !important;
    position: absolute !important;
    right: 0 !important;
    top: calc(100% + 8px) !important;
    width: max-content !important;
    z-index: 9999 !important;
}

.smartprice-utility-lang .gt_switcher .gt_option a {
    align-items: center;
    border-radius: 8px;
    color: var(--sp-dark) !important;
    display: flex !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 650 !important;
    gap: 8px;
    line-height: 1 !important;
    padding: 9px 10px !important;
    text-decoration: none !important;
    white-space: nowrap;
}

.smartprice-utility-lang .gt_switcher .gt_option a:hover {
    background: var(--sp-orange-soft) !important;
    color: var(--sp-orange-dark) !important;
}

.smartprice-utility-lang .gt_switcher .gt_option img {
    display: inline-block !important;
    height: 14px !important;
    margin: 0 !important;
    max-width: none !important;
    opacity: 1 !important;
    width: 21px !important;
}

.smartprice-utility-lang select,
.smartprice-utility-lang .gt_selector {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Header container alignment */
#masthead .smartprice-utility-inner,
#masthead .smartprice-main-header {
    max-width: 1237px;
}

#masthead .smartprice-utility-inner {
    padding-left: 15px;
    padding-right: 15px;
}

#masthead .smartprice-utility-list {
    gap: clamp(22px, 4vw, 54px);
}

#masthead .smartprice-utility-right {
    gap: 26px;
    margin-left: 28px;
}

#masthead .smartprice-utility-lang {
    flex: 0 0 auto;
    justify-content: flex-end;
    min-width: 76px;
}

#masthead .smartprice-utility-lang .gtranslate_wrapper {
    justify-content: flex-end;
}

#masthead .smartprice-utility-lang img {
    max-height: 18px !important;
}

/* Final header GTranslate reset: keep the plugin behavior, fix only layout. */
#masthead .smartprice-utility-lang {
    align-items: center;
    align-self: stretch;
    display: inline-flex;
    flex: 0 0 54px;
    justify-content: flex-end;
    line-height: 1;
    min-width: 54px;
    overflow: visible;
    position: relative;
    transform: none;
    z-index: 10020;
}

#masthead .smartprice-utility-lang .gtranslate_wrapper,
#masthead .smartprice-utility-lang .gt_switcher_wrapper {
    align-items: center !important;
    display: flex !important;
    height: auto !important;
    inset: auto !important;
    margin: 0 !important;
    opacity: 1 !important;
    overflow: visible !important;
    position: static !important;
    transform: none !important;
    visibility: visible !important;
    width: auto !important;
    z-index: auto !important;
}

#masthead .smartprice-utility-lang .gt_switcher {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    align-items: center !important;
    display: flex !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    line-height: 1 !important;
    min-width: 0 !important;
    overflow: visible !important;
    position: relative !important;
    width: auto !important;
}

#masthead .smartprice-utility-lang .gt_switcher .gt_selected {
    align-items: center !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    display: flex !important;
    overflow: visible !important;
    width: auto !important;
}

#masthead .smartprice-utility-lang .gt_switcher .gt_selected a {
    align-items: center !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: var(--sp-dark) !important;
    display: inline-flex !important;
    font-size: 13px !important;
    font-weight: 650 !important;
    gap: 7px !important;
    height: 58px !important;
    line-height: 1 !important;
    padding: 0 !important;
    text-decoration: none !important;
    text-transform: uppercase;
    transform: translateY(-2px);
    white-space: nowrap !important;
    width: auto !important;
}

#masthead .smartprice-utility-lang .gt_switcher .gt_selected a img,
#masthead .smartprice-utility-lang .gt_switcher .gt_selected a br {
    display: none !important;
}

#masthead .smartprice-utility-lang .gt_switcher .gt_selected a:after {
    border: solid var(--sp-dark);
    border-width: 0 1.6px 1.6px 0;
    content: "";
    display: inline-block;
    flex: 0 0 5px;
    height: 5px;
    margin-left: 1px;
    margin-top: -2px;
    position: relative;
    top: 0;
    transform: rotate(45deg);
    width: 5px;
}

#masthead .smartprice-utility-lang .gt_switcher .gt_selected .gt_arrow,
#masthead .smartprice-utility-lang .gt_switcher .gt_arrow {
    display: none !important;
}

#masthead .smartprice-utility-lang .gt_switcher .gt_option {
    background: #fff !important;
    background-color: #fff !important;
    border: 1px solid rgba(237, 240, 243, 0.96) !important;
    border-radius: 12px !important;
    box-shadow: 0 22px 46px rgba(17, 24, 39, 0.18) !important;
    box-sizing: border-box !important;
    left: auto !important;
    margin: 0 !important;
    max-height: 260px !important;
    min-width: 154px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    padding: 6px !important;
    position: absolute !important;
    right: 0 !important;
    top: calc(100% + 10px) !important;
    transform: none !important;
    width: 154px !important;
    z-index: 10030 !important;
}

#masthead .smartprice-utility-lang .gt_switcher .gt_option:before {
    content: "";
    height: 10px;
    left: 0;
    position: absolute;
    right: 0;
    top: -10px;
}

#masthead .smartprice-utility-lang .gt_switcher .gt_option a {
    align-items: center !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    color: var(--sp-dark) !important;
    display: flex !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    gap: 8px !important;
    justify-content: flex-start !important;
    line-height: 1.15 !important;
    margin: 0 !important;
    min-height: 34px !important;
    padding: 8px 10px !important;
    text-align: left !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    width: 100% !important;
}

#masthead .smartprice-utility-lang .gt_switcher .gt_option a:hover {
    background: var(--sp-orange-soft) !important;
    color: var(--sp-orange-dark) !important;
}

#masthead .smartprice-utility-lang .gt_switcher .gt_option img {
    border-radius: 2px !important;
    display: inline-block !important;
    flex: 0 0 22px !important;
    height: 14px !important;
    margin: 0 !important;
    max-height: 14px !important;
    max-width: 22px !important;
    object-fit: cover;
    opacity: 1 !important;
    visibility: visible !important;
    width: 22px !important;
}

#masthead .smartprice-utility-lang .gt_float_switcher {
    align-items: center !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: var(--sp-dark) !important;
    display: flex !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    line-height: 1 !important;
    overflow: visible !important;
    position: relative !important;
    width: auto !important;
}

#masthead .smartprice-utility-lang .gt_float_switcher .gt-selected,
#masthead .smartprice-utility-lang .gt_float_switcher .gt-selected .gt-current-lang {
    align-items: center !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: var(--sp-dark) !important;
    display: inline-flex !important;
    font-size: 13px !important;
    font-weight: 650 !important;
    gap: 7px !important;
    height: 58px !important;
    line-height: 1 !important;
    overflow: visible !important;
    padding: 0 !important;
    text-transform: uppercase;
    white-space: nowrap !important;
    width: auto !important;
}

#masthead .smartprice-utility-lang .gt_float_switcher .gt-selected .gt-current-lang {
    min-height: 58px !important;
    position: relative;
    transform: translateY(-2px);
}

#masthead .smartprice-utility-lang .gt_float_switcher .gt-selected img {
    display: none !important;
}

#masthead .smartprice-utility-lang .gt_float_switcher .gt-selected .gt-lang-code {
    color: var(--sp-dark) !important;
    font-size: 13px !important;
    font-weight: 650 !important;
    margin: 0 !important;
}

#masthead .smartprice-utility-lang .gt_float_switcher .gt-selected .gt_float_switcher-arrow {
    display: none !important;
}

#masthead .smartprice-utility-lang .gt_float_switcher .gt-selected .gt-current-lang:after {
    border: solid var(--sp-dark);
    border-width: 0 1.6px 1.6px 0;
    content: "";
    display: inline-block;
    flex: 0 0 5px;
    height: 5px;
    margin-left: 1px;
    margin-top: -2px;
    position: relative;
    top: 0;
    transform: rotate(45deg);
    width: 5px;
}

#masthead .smartprice-utility-lang .gt_float_switcher .gt_options {
    background: #fff !important;
    background-color: #fff !important;
    border: 1px solid rgba(237, 240, 243, 0.96) !important;
    border-radius: 12px !important;
    box-shadow: 0 22px 46px rgba(17, 24, 39, 0.18) !important;
    box-sizing: border-box !important;
    left: auto !important;
    margin: 0 !important;
    max-height: 260px !important;
    min-width: 154px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    padding: 6px !important;
    position: absolute !important;
    right: 0 !important;
    top: calc(100% + 10px) !important;
    transform: none !important;
    width: 154px !important;
    z-index: 10030 !important;
}

#masthead .smartprice-utility-lang .gt_float_switcher .gt_options a {
    align-items: center !important;
    background: transparent !important;
    border-radius: 8px !important;
    color: var(--sp-dark) !important;
    display: flex !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    gap: 8px !important;
    line-height: 1.15 !important;
    min-height: 34px !important;
    padding: 8px 10px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    width: 100% !important;
}

#masthead .smartprice-utility-lang .gt_float_switcher .gt_options a:hover {
    background: var(--sp-orange-soft) !important;
    color: var(--sp-orange-dark) !important;
}

#masthead .smartprice-utility-lang .gt_float_switcher .gt_options img {
    border-radius: 2px !important;
    display: inline-block !important;
    flex: 0 0 22px !important;
    height: 14px !important;
    margin: 0 !important;
    max-height: 14px !important;
    max-width: 22px !important;
    object-fit: cover;
    width: 22px !important;
}

.smartprice-promo-grid .smartprice-promo-card.has-promo-image {
    background:
        linear-gradient(90deg, rgba(255, 250, 245, 0.98) 0%, rgba(255, 250, 245, 0.9) 37%, rgba(255, 244, 236, 0.2) 100%),
        linear-gradient(135deg, #fffaf5 0%, #fff1e8 100%) !important;
    padding-right: 15%;
}

.smartprice-promo-grid .smartprice-promo-card.has-promo-image:before {
    background-image: var(--promo-image);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    display: block;
    pointer-events: none;
    position: absolute;
    right: -22px;
    top: 16px;
    width: 100%;
    z-index: 0;
}

.smartprice-promo-grid .smartprice-promo-card.has-promo-image:after {
    display: none !important;
}

/* Smartprice motion layer */
.smartprice-home [data-aos] {
    pointer-events: auto;
    transition-duration: 0.52s;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity;
}

.smartprice-home [data-aos="smartprice-fade"],
.smartprice-home [data-aos="fade-up"] {
    opacity: 0;
    transform: none;
}

.smartprice-home [data-aos="fade-down"] {
    opacity: 0;
    transform: none;
}

.smartprice-home [data-aos="fade-right"] {
    opacity: 0;
    transform: none;
}

.smartprice-home [data-aos="zoom-in"] {
    opacity: 0;
    transform: none;
}

.smartprice-home [data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

.smartprice-feature-item,
.smartprice-promo-card,
.smartprice-category-card,
.smartprice-social-card,
.smartprice-home .product_home {
    transition: box-shadow 0.22s ease, transform 0.22s ease, background-color 0.22s ease;
}

.smartprice-feature-item:hover {
    transform: none;
}

.smartprice-promo-card:hover,
.smartprice-category-card:hover,
.smartprice-social-card:hover,
.smartprice-home .product_home:hover {
    transform: none;
}

.smartprice-primary-btn,
.smartprice-section-heading a,
.smartprice-social-buttons a,
.smartprice-email-card button {
    transition: box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.smartprice-primary-btn:hover,
.smartprice-social-buttons a:hover,
.smartprice-email-card button:hover {
    box-shadow: 0 10px 20px rgba(255, 122, 26, 0.18);
    transform: none;
}

.smartprice-hero-visual img,
.smartprice-promo-card.has-promo-image:before {
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.smartprice-hero-main:hover .smartprice-hero-visual img {
    transform: scale(1.012);
}

.smartprice-promo-card.has-promo-image:hover:before {
    transform: scale(1.018);
}

.smartprice-categories-section .smartprice-category-card {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.55) 0%, var(--sp-category-bg, #fff8f1) 100%) !important;
}

.smartprice-home .product .onsale,
.smartprice-home .product_thumbnail .onsale,
.smartprice-home .day-products .onsale,
.smartprice-home .top-products .onsale {
    align-items: center !important;
    background: #ffb800 !important;
    border: 0 !important;
    border-radius: 999px !important;
    box-shadow: 0 8px 18px rgba(255, 184, 0, 0.22) !important;
    color: #ffffff !important;
    display: inline-flex !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    height: 28px !important;
    justify-content: center !important;
    line-height: 1 !important;
    min-height: 28px !important;
    min-width: 48px !important;
    padding: 0 10px !important;
    right: 12px !important;
    top: 12px !important;
    width: auto !important;
    z-index: 5 !important;
}

.smartprice-home .product_home {
    border: 1px solid rgba(237, 240, 243, 0.92) !important;
    border-radius: 14px !important;
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.055) !important;
    overflow: hidden;
}

.smartprice-home .product_home .product,
.smartprice-home .day-products .new-product-home .product-type-simple,
.smartprice-home .day-products .new-product-home .product-type-variable {
    padding: 12px 12px 16px !important;
    position: static !important;
}

.smartprice-home .product_thumbnail {
    background: #fff !important;
    margin-bottom: 10px !important;
    min-height: 176px !important;
    overflow: visible !important;
    position: static !important;
}

.smartprice-home .product_thumbnail img,
.smartprice-home .woocommerce ul.products li.product img {
    max-height: 170px !important;
}

.smartprice-home .product_home:after {
    content: none !important;
    display: none !important;
}

.smartprice-home .sale-icon {
    left: 12px !important;
    position: absolute !important;
    top: 12px !important;
    z-index: 6 !important;
}

.smartprice-home .sale-icon .smartprice-product-state-icon {
    align-items: center !important;
    border-radius: 999px !important;
    box-shadow: none !important;
    display: inline-flex !important;
    height: 25px !important;
    justify-content: center !important;
    margin: 0 !important;
    min-width: 56px !important;
    padding: 0 10px !important;
    width: auto !important;
}

.smartprice-home .sale-icon .smartprice-product-state-new {
    background: var(--sp-badge-pink) !important;
    color: #fff !important;
}

.smartprice-home .sale-icon .smartprice-product-state-new svg {
    display: none !important;
}

.smartprice-home .sale-icon .smartprice-product-state-new:before {
    content: "JAUNA";
    font-family: "Inter", "Poppins", Arial, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1;
}

.smartprice-home .woocommerce-loop-product__title {
    color: var(--sp-dark) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    margin: 8px 0 10px !important;
    min-height: 38px !important;
}

.smartprice-home .in_stock_text {
    display: none !important;
}

.smartprice-home .price {
    align-items: center !important;
    display: flex !important;
    gap: 10px !important;
    min-height: 30px !important;
    padding-right: 58px !important;
    position: relative;
}

.smartprice-home .price ins {
    order: 1;
    text-decoration: none !important;
}

.smartprice-home .price del {
    order: 2;
}

.smartprice-home .price ins .woocommerce-Price-amount.amount,
.smartprice-home ins .woocommerce-Price-amount.amount {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.smartprice-home .price ins .woocommerce-Price-amount.amount bdi,
.smartprice-home ins .woocommerce-Price-amount.amount bdi {
    color: var(--sp-dark) !important;
    font-size: 18px !important;
    font-weight: 800 !important;
}

.smartprice-home .price del,
.smartprice-home .price del .woocommerce-Price-amount.amount bdi {
    color: #8f98a8 !important;
    font-size: 14px !important;
    font-weight: 650 !important;
}

.smartprice-home .product .onsale,
.smartprice-home .product_thumbnail .onsale,
.smartprice-home .day-products .onsale,
.smartprice-home .top-products .onsale {
    background: #fff2ee !important;
    box-shadow: none !important;
    color: #ff5f2a !important;
    height: 28px !important;
    min-height: 28px !important;
    min-width: 52px !important;
    padding: 0 10px !important;
    right: 12px !important;
    top: auto !important;
    bottom: 16px !important;
}

.smartprice-home .button.add_to_cart_button,
.smartprice-home .button.product_type_simple,
.smartprice-home .button.product_type_variable,
.smartprice-home .product-type-simple:hover .button.product_type_simple,
.smartprice-home .product-type-simple:hover .add_to_cart_button,
.smartprice-home .product-type-variable:hover .button.product_type_variable {
    display: none !important;
}

.smartprice-home .smartprice-product-actions {
    align-items: center;
    display: grid !important;
    gap: 8px !important;
    grid-template-columns: 34px 34px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    left: calc(50% - 46px) !important;
    right: auto !important;
    top: 82px !important;
    transform: none !important;
    transition: opacity 0.18s ease, transform 0.18s ease;
    visibility: hidden !important;
    z-index: 30 !important;
}

.smartprice-home .product_home:hover .smartprice-product-actions {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    visibility: visible !important;
}

.smartprice-home .product_home:not(:hover) .smartprice-product-actions {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: none !important;
    visibility: hidden !important;
}

.smartprice-home .smartprice-product-actions .smart-cart-btn,
.smartprice-home .smartprice-product-actions .smartprice-wishlist-btn {
    align-items: center !important;
    background: rgba(255, 255, 255, 0.96) !important;
    border: 1px solid rgba(237, 240, 243, 0.92) !important;
    border-radius: 999px !important;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12) !important;
    color: var(--sp-dark) !important;
    cursor: pointer;
    display: inline-flex !important;
    height: 34px !important;
    justify-content: center !important;
    margin: 0 !important;
    min-height: 34px !important;
    min-width: 34px !important;
    padding: 0 !important;
    position: static !important;
    text-decoration: none !important;
    transform: none !important;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
    width: 34px !important;
}

.smartprice-home .smartprice-product-actions > * {
    grid-row: 1 !important;
}

.smartprice-home .smartprice-product-actions .smart-cart-btn {
    grid-column: 1 !important;
}

.smartprice-home .smartprice-product-actions .smartprice-wishlist-btn {
    grid-column: 2 !important;
}

.smartprice-home .smartprice-product-actions .smart-cart-btn {
    background: rgba(255, 255, 255, 0.96) !important;
    border-color: rgba(237, 240, 243, 0.92) !important;
    color: var(--sp-dark) !important;
}

.smartprice-home .smartprice-product-actions .smartprice-wishlist-btn {
    background: rgba(255, 255, 255, 0.96) !important;
    border-color: rgba(237, 240, 243, 0.92) !important;
    color: var(--sp-dark) !important;
}

.smartprice-home .product_home:hover .smartprice-product-actions .smart-cart-btn {
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.smartprice-home .smartprice-product-actions .smart-cart-btn:hover,
.smartprice-home .smartprice-product-actions .smartprice-wishlist-btn:hover {
    background: var(--sp-orange-dark) !important;
    border-color: var(--sp-orange-dark) !important;
    box-shadow: 0 14px 30px rgba(255, 122, 26, 0.24) !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
}

.smartprice-home .smartprice-product-actions .smartprice-lucide {
    display: block !important;
    height: 18px !important;
    stroke-width: 1.8 !important;
    width: 18px !important;
}

.smartprice-home .smartprice-product-actions .smart-cart-btn:before,
.smartprice-home .smartprice-product-actions .smart-cart-btn:after,
.smartprice-home .smartprice-product-actions .smartprice-wishlist-btn:before,
.smartprice-home .smartprice-product-actions .smartprice-wishlist-btn:after,
.smartprice-home .smartprice-product-actions i {
    content: none !important;
    display: none !important;
}

.smartprice-home ins .woocommerce-Price-amount.amount bdi:before,
.smartprice-home .price ins .woocommerce-Price-amount.amount bdi:before {
    content: none !important;
    display: none !important;
}

.smartprice-home .price {
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    margin-top: 2px !important;
    min-width: 0;
    padding-right: 54px !important;
    white-space: nowrap !important;
}

.smartprice-home .price ins,
.smartprice-home .price del {
    flex: 0 0 auto;
    line-height: 1 !important;
    margin: 0 !important;
    white-space: nowrap !important;
}

.smartprice-home .price del {
    opacity: 1 !important;
}

.smartprice-home .price ins .woocommerce-Price-amount.amount bdi,
.smartprice-home ins .woocommerce-Price-amount.amount bdi {
    font-size: 17px !important;
    line-height: 1 !important;
}

.smartprice-home .price del,
.smartprice-home .price del .woocommerce-Price-amount.amount,
.smartprice-home .price del .woocommerce-Price-amount.amount bdi {
    font-size: 12px !important;
    line-height: 1 !important;
}

.smartprice-home .product .onsale,
.smartprice-home .product_thumbnail .onsale,
.smartprice-home .day-products .onsale,
.smartprice-home .top-products .onsale {
    bottom: 15px !important;
    font-size: 12px !important;
    height: 26px !important;
    min-height: 26px !important;
    min-width: 50px !important;
    padding: 0 9px !important;
}

.smartprice-home .price,
.smartprice-home .product .price,
.smartprice-home .woocommerce .price {
    align-items: center !important;
    column-gap: 12px !important;
    display: grid !important;
    grid-template-columns: max-content max-content 1fr !important;
    line-height: 1 !important;
    margin: 0 !important;
    min-height: 28px !important;
    padding: 0 64px 0 0 !important;
    position: relative !important;
    white-space: nowrap !important;
    width: 100% !important;
}

.smartprice-home .price ins,
.smartprice-home .price del {
    display: inline-flex !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.smartprice-home .price ins,
.smartprice-home .price ins .woocommerce-Price-amount.amount,
.smartprice-home .price ins .woocommerce-Price-amount.amount bdi {
    background: transparent !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

.smartprice-home .price ins .woocommerce-Price-amount.amount bdi,
.smartprice-home ins .woocommerce-Price-amount.amount bdi {
    color: var(--sp-dark) !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
}

.smartprice-home .price del {
    color: #8f98a8 !important;
    opacity: 1 !important;
    position: relative !important;
    text-decoration: line-through !important;
    text-decoration-color: #8f98a8 !important;
    text-decoration-thickness: 1.5px !important;
}

.smartprice-home .price del:before {
    content: none !important;
    display: none !important;
}

.smartprice-home .price del .woocommerce-Price-amount.amount,
.smartprice-home .price del .woocommerce-Price-amount.amount bdi {
    color: #8f98a8 !important;
    font-size: 14px !important;
    font-weight: 650 !important;
    line-height: 1 !important;
}

.smartprice-home .product .onsale,
.smartprice-home .product_thumbnail .onsale,
.smartprice-home .day-products .onsale,
.smartprice-home .top-products .onsale {
    align-items: center !important;
    background: #fff2ee !important;
    border-radius: 999px !important;
    bottom: 14px !important;
    color: #ff5f2a !important;
    display: inline-flex !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    height: 30px !important;
    justify-content: center !important;
    line-height: 1 !important;
    min-height: 30px !important;
    min-width: 56px !important;
    padding: 0 12px !important;
    right: 12px !important;
    top: auto !important;
    width: auto !important;
}

.smartprice-home .product_home .product,
.smartprice-home .day-products .new-product-home .product-type-simple,
.smartprice-home .day-products .new-product-home .product-type-variable {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100% !important;
    padding: 12px 12px 14px !important;
    position: relative !important;
}

.smartprice-home .product_thumbnail {
    margin-bottom: 12px !important;
    min-height: 166px !important;
}

.smartprice-home .product_thumbnail img,
.smartprice-home .woocommerce ul.products li.product img {
    max-height: 162px !important;
}

.smartprice-home .woocommerce-loop-product__title {
    color: #111827 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.36 !important;
    margin: 0 0 14px !important;
    min-height: 38px !important;
    -webkit-line-clamp: 2 !important;
}

.smartprice-home .price,
.smartprice-home .product .price,
.smartprice-home .woocommerce .price {
    align-items: center !important;
    column-gap: 11px !important;
    grid-template-columns: max-content max-content 1fr !important;
    margin-top: auto !important;
    min-height: 32px !important;
    padding-right: 62px !important;
}

.smartprice-home .price ins .woocommerce-Price-amount.amount bdi,
.smartprice-home ins .woocommerce-Price-amount.amount bdi {
    font-size: 18px !important;
    font-weight: 800 !important;
}

.smartprice-home .price del .woocommerce-Price-amount.amount,
.smartprice-home .price del .woocommerce-Price-amount.amount bdi {
    color: #9aa3b2 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.smartprice-home .product .onsale,
.smartprice-home .product_thumbnail .onsale,
.smartprice-home .day-products .onsale,
.smartprice-home .top-products .onsale {
    bottom: 14px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    height: 32px !important;
    min-height: 32px !important;
    min-width: 58px !important;
    padding: 0 12px !important;
}

.smartprice-home .price,
.smartprice-home .product .price,
.smartprice-home .woocommerce .price {
    column-gap: 5px !important;
    grid-template-columns: max-content minmax(0, 1fr) !important;
    min-height: 24px !important;
    padding-right: 47px !important;
}

.smartprice-home .price ins .woocommerce-Price-amount.amount bdi,
.smartprice-home ins .woocommerce-Price-amount.amount bdi {
    font-size: 15px !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em !important;
}

.smartprice-home .price del {
    max-width: 42px !important;
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: clip !important;
}

.smartprice-home .price del .woocommerce-Price-amount.amount,
.smartprice-home .price del .woocommerce-Price-amount.amount bdi {
    font-size: 11px !important;
    font-weight: 700 !important;
}

.smartprice-home .product .onsale,
.smartprice-home .product_thumbnail .onsale,
.smartprice-home .day-products .onsale,
.smartprice-home .top-products .onsale {
    bottom: 15px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    height: 24px !important;
    min-height: 24px !important;
    min-width: 42px !important;
    padding: 0 8px !important;
    right: 10px !important;
}

.smartprice-home .price,
.smartprice-home .product .price,
.smartprice-home .woocommerce .price {
    column-gap: 6px !important;
    min-height: 26px !important;
    padding-right: 50px !important;
}

.smartprice-home .price ins .woocommerce-Price-amount.amount bdi,
.smartprice-home ins .woocommerce-Price-amount.amount bdi {
    font-size: 16px !important;
}

.smartprice-home .price del {
    max-width: 44px !important;
}

.smartprice-home .price del .woocommerce-Price-amount.amount,
.smartprice-home .price del .woocommerce-Price-amount.amount bdi {
    font-size: 12px !important;
}

.smartprice-home .product .onsale,
.smartprice-home .product_thumbnail .onsale,
.smartprice-home .day-products .onsale,
.smartprice-home .top-products .onsale {
    bottom: 14px !important;
    font-size: 11.5px !important;
    height: 25px !important;
    min-height: 25px !important;
    min-width: 46px !important;
    padding: 0 8px !important;
    right: 8px !important;
}

.smartprice-home .sale-icon .smartprice-product-state-icon {
    height: 24px !important;
    min-width: 58px !important;
}

.smartprice-home .sale-icon .smartprice-product-state-new:before {
    font-size: 11px !important;
}

.smartprice-home .sale-icon {
    align-items: center !important;
    display: flex !important;
    gap: 6px !important;
    left: 12px !important;
    top: 12px !important;
}

.smartprice-home .sale-icon > div {
    display: none !important;
}

.smartprice-home .sale-icon .smartprice-product-state-icon,
.smartprice-home .sale-icon .smartprice-product-state-new,
.smartprice-home .sale-icon .smartprice-product-state-damage,
.smartprice-home .sale-icon .smartprice-product-state-check {
    align-items: center !important;
    border: 0 !important;
    border-radius: 999px !important;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.1) !important;
    color: #fff !important;
    display: inline-flex !important;
    height: 28px !important;
    justify-content: center !important;
    margin: 0 !important;
    min-height: 28px !important;
    min-width: 34px !important;
    padding: 0 9px !important;
    width: auto !important;
}

.smartprice-home .sale-icon .smartprice-product-state-new {
    background: var(--sp-badge-pink) !important;
}

.smartprice-home .sale-icon .smartprice-product-state-damage {
    background: var(--sp-orange) !important;
}

.smartprice-home .sale-icon .smartprice-product-state-check {
    background: #48c9d4 !important;
}

.smartprice-home .sale-icon .smartprice-product-state-used {
    background: #8b5cf6 !important;
}

.smartprice-home .sale-icon .smartprice-product-state-icon svg,
.smartprice-home .sale-icon .smartprice-product-state-new svg,
.smartprice-home .sale-icon .smartprice-product-state-damage svg,
.smartprice-home .sale-icon .smartprice-product-state-check svg,
.smartprice-home .sale-icon .smartprice-product-state-used svg {
    display: block !important;
    height: 16px !important;
    stroke-width: 1.9 !important;
    width: 16px !important;
}

.smartprice-home .sale-icon .smartprice-product-state-new:before,
.smartprice-home .sale-icon .smartprice-product-state-icon:before {
    content: none !important;
    display: none !important;
}

.smartprice-home .badge-text {
    align-items: center !important;
    border-radius: 999px !important;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.1) !important;
    bottom: auto !important;
    box-sizing: border-box !important;
    color: #fff !important;
    display: inline-flex !important;
    flex-direction: row !important;
    gap: 5px !important;
    height: 26px !important;
    left: 12px !important;
    margin: -2px 0 8px !important;
    max-width: calc(100% - 66px) !important;
    min-height: 0 !important;
    min-width: 0 !important;
    overflow: hidden !important;
    padding: 0 9px !important;
    position: static !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    white-space: nowrap !important;
    width: auto !important;
    writing-mode: horizontal-tb !important;
    z-index: 6 !important;
}

.smartprice-home .smartprice-loop-extra-badge {
    align-self: flex-start !important;
    bottom: auto !important;
    left: 12px !important;
    margin: 0 !important;
    max-width: calc(100% - 24px) !important;
    position: absolute !important;
    right: auto !important;
    top: 166px !important;
    z-index: 12 !important;
}

.smartprice-home .product:has(.smartprice-loop-extra-badge) .product_thumbnail {
    min-height: 150px !important;
}

.smartprice-home .product:has(.smartprice-loop-extra-badge) .product_thumbnail img {
    max-height: 148px !important;
}

.smartprice-home .product:has(.smartprice-loop-extra-badge) .woocommerce-loop-product__title {
    margin-top: 34px !important;
}

.smartprice-home .badge-text p {
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
    margin: 0 !important;
    max-width: none !important;
    overflow: hidden !important;
    padding: 0 !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
}

.smartprice-home .badge-text svg {
    flex: 0 0 14px !important;
    height: 14px !important;
    width: 14px !important;
}

.tooltip .tooltip-inner {
    background: #111827 !important;
    border-radius: 10px !important;
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.18) !important;
    color: #fff !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    line-height: 1.3 !important;
    max-width: 230px !important;
    padding: 8px 12px !important;
    text-align: center !important;
}

.tooltip.bs-tooltip-top .arrow:before,
.tooltip.bs-tooltip-auto[x-placement^="top"] .arrow:before {
    border-top-color: #111827 !important;
}

.tooltip.bs-tooltip-bottom .arrow:before,
.tooltip.bs-tooltip-auto[x-placement^="bottom"] .arrow:before {
    border-bottom-color: #111827 !important;
}

@media (prefers-reduced-motion: reduce) {
    .smartprice-home [data-aos],
    .smartprice-feature-item,
    .smartprice-promo-card,
    .smartprice-category-card,
    .smartprice-social-card,
    .smartprice-home .product_home,
    .smartprice-primary-btn,
    .smartprice-hero-visual img,
    .smartprice-promo-card.has-promo-image:before {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Final product action reset */
.smartprice-home .product_home .smartprice-product-actions {
    align-items: center !important;
    display: flex !important;
    gap: 8px !important;
    left: calc(50% - 46px) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    right: auto !important;
    top: 82px !important;
    transform: none !important;
    visibility: hidden !important;
    z-index: 40 !important;
}

.smartprice-home .product_home:hover .smartprice-product-actions {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    visibility: visible !important;
}

.smartprice-home .product_home:not(:hover) .smartprice-product-actions,
.smartprice-home .product_home:focus-within:not(:hover) .smartprice-product-actions {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: none !important;
    visibility: hidden !important;
}

.smartprice-home .product_home:not(:hover) .smartprice-product-actions .smart-cart-btn,
.smartprice-home .product_home:not(:hover) .smartprice-product-actions .smartprice-wishlist-btn {
    pointer-events: none !important;
}

.smartprice-home .product_home .smartprice-product-actions .smart-cart-btn,
.smartprice-home .product_home .smartprice-product-actions .smartprice-wishlist-btn {
    align-items: center !important;
    background: #fff !important;
    border: 1px solid rgba(237, 240, 243, 0.95) !important;
    border-radius: 999px !important;
    bottom: auto !important;
    box-shadow: 0 12px 26px rgba(17, 24, 39, 0.12) !important;
    color: #111827 !important;
    display: inline-flex !important;
    height: 34px !important;
    justify-content: center !important;
    left: auto !important;
    margin: 0 !important;
    min-height: 34px !important;
    min-width: 34px !important;
    padding: 0 !important;
    position: static !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 34px !important;
}

.smartprice-home .product_home .smartprice-product-actions .smart-cart-btn:hover,
.smartprice-home .product_home .smartprice-product-actions .smartprice-wishlist-btn:hover {
    background: var(--sp-orange) !important;
    border-color: var(--sp-orange) !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
}

.smartprice-home .product_home .smartprice-product-actions .smart-cart-btn svg,
.smartprice-home .product_home .smartprice-product-actions .smartprice-wishlist-btn svg {
    display: block !important;
    height: 18px !important;
    width: 18px !important;
}

.smartprice-floating-cart-wrap {
    bottom: 24px;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 28px;
    transform: translateY(16px) scale(0.96);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 9998;
}

.smartprice-floating-cart-active .smartprice-floating-cart-wrap {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.smartprice-floating-cart[data-count="0"] {
    display: none !important;
}

.smartprice-floating-cart {
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(237, 240, 243, 0.95);
    border-radius: 999px;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.16);
    color: var(--sp-dark);
    display: inline-flex;
    gap: 11px;
    min-height: 54px;
    padding: 8px 16px 8px 10px;
    text-decoration: none !important;
    transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.smartprice-floating-cart:hover {
    border-color: rgba(255, 122, 26, 0.28);
    box-shadow: 0 20px 50px rgba(255, 122, 26, 0.18), 0 16px 38px rgba(17, 24, 39, 0.12);
    color: var(--sp-dark);
    transform: translateY(-2px);
}

.smartprice-floating-cart-icon {
    align-items: center;
    background: var(--sp-orange-soft);
    border-radius: 999px;
    color: var(--sp-dark);
    display: inline-flex;
    height: 38px;
    justify-content: center;
    position: relative;
    width: 38px;
}

.smartprice-floating-cart-icon svg {
    display: block;
    height: 22px;
    stroke-width: 1.8;
    width: 22px;
}

.smartprice-floating-cart-count {
    align-items: center;
    background: var(--sp-yellow-badge);
    border: 2px solid #fff;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-family: "Inter", "Poppins", Arial, sans-serif;
    font-size: 11px;
    font-weight: 800;
    height: 19px;
    justify-content: center;
    line-height: 1;
    min-width: 19px;
    padding: 0 5px;
    position: absolute;
    right: -6px;
    top: -7px;
}

.smartprice-floating-cart-copy {
    display: grid;
    gap: 1px;
    line-height: 1.1;
}

.smartprice-floating-cart-label {
    color: var(--sp-muted);
    font-family: "Inter", "Poppins", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
}

.smartprice-floating-cart-total {
    color: var(--sp-dark);
    font-family: "Inter", "Poppins", Arial, sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0;
    white-space: nowrap;
}

.smartprice-floating-cart-total .woocommerce-Price-amount {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

@media (max-width: 767px) {
    .smartprice-floating-cart-wrap {
        bottom: 18px;
        right: 16px;
    }

    .smartprice-floating-cart {
        min-height: 50px;
        padding: 7px 13px 7px 9px;
    }

    .smartprice-floating-cart-label {
        display: none;
    }

.smartprice-floating-cart-total {
        font-size: 15px;
    }
}

/* Cart and checkout redesign */
.woocommerce-cart #content,
.woocommerce-checkout #content {
    background: var(--sp-bg) !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    padding-bottom: 56px !important;
}

.woocommerce-cart .site-content > .container,
.woocommerce-checkout .site-content > .container,
.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content,
.woocommerce-cart main.site-main,
.woocommerce-checkout main.site-main {
    max-width: 1237px !important;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
    color: var(--sp-dark) !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
}

.woocommerce-cart .woocommerce-breadcrumb,
.woocommerce-checkout .woocommerce-breadcrumb {
    color: var(--sp-muted) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    margin: 0 0 18px !important;
}

.woocommerce-cart h1,
.woocommerce-cart h2,
.woocommerce-cart h3,
.woocommerce-checkout h1,
.woocommerce-checkout h2,
.woocommerce-checkout h3,
.woocommerce-checkout #order_review_heading {
    color: var(--sp-dark) !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-weight: 850 !important;
    letter-spacing: 0 !important;
}

.woocommerce-cart .woocommerce-cart-form,
.woocommerce-cart .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce-checkout .woocommerce-checkout-payment,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-error {
    background: #fff !important;
    border: 1px solid rgba(237, 240, 243, 0.96) !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.06) !important;
}

.woocommerce-cart .woocommerce {
    align-items: flex-start !important;
    display: grid !important;
    gap: 24px !important;
    grid-template-columns: minmax(0, 1fr) 430px !important;
    max-width: 1237px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.woocommerce-cart .woocommerce-notices-wrapper,
.woocommerce-cart .woocommerce-breadcrumb {
    grid-column: 1 / -1 !important;
}

.woocommerce-cart .woocommerce-cart-form {
    grid-column: 1 !important;
    overflow: hidden !important;
}

.woocommerce table.shop_table {
    background: #fff !important;
    border: 0 !important;
    border-collapse: separate !important;
    border-radius: 18px !important;
    border-spacing: 0 !important;
    color: var(--sp-dark) !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    margin: 0 !important;
    overflow: hidden !important;
}

.woocommerce table.shop_table thead th {
    background: #fffaf5 !important;
    border: 0 !important;
    border-bottom: 1px solid var(--sp-border) !important;
    color: var(--sp-dark) !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    padding: 16px 18px !important;
    text-transform: none !important;
}

.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
    border-color: var(--sp-border) !important;
}

.woocommerce table.shop_table tbody td {
    background: #fff !important;
    border-top: 1px solid var(--sp-border) !important;
    font-size: 14px !important;
    padding: 18px !important;
    vertical-align: middle !important;
}

.woocommerce-cart table.cart img {
    border-radius: 10px !important;
    height: 64px !important;
    object-fit: contain !important;
    width: 64px !important;
}

.woocommerce-cart table.cart .product-name a,
.woocommerce-checkout-review-order-table .product-name {
    color: var(--sp-dark) !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    text-decoration: none !important;
}

.woocommerce table.shop_table .amount,
.woocommerce table.shop_table .woocommerce-Price-amount {
    color: var(--sp-dark) !important;
    font-weight: 850 !important;
}

.woocommerce-cart table.cart .product-remove a.remove {
    align-items: center !important;
    background: #fff1f0 !important;
    border-radius: 999px !important;
    color: #ff3b30 !important;
    display: inline-flex !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    height: 30px !important;
    justify-content: center !important;
    line-height: 1 !important;
    text-decoration: none !important;
    width: 30px !important;
}

.woocommerce-cart table.cart .product-remove a.remove:hover {
    background: #ff3b30 !important;
    color: #fff !important;
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.woocommerce .select2-container .select2-selection--single {
    background: #fff !important;
    border: 1px solid #dfe4ea !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    color: var(--sp-dark) !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 14px !important;
    min-height: 42px !important;
    padding: 10px 12px !important;
}

.woocommerce textarea {
    min-height: 132px !important;
}

.woocommerce input.input-text:focus,
.woocommerce textarea:focus,
.woocommerce select:focus,
.woocommerce .select2-container--open .select2-selection--single {
    border-color: var(--sp-orange) !important;
    box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.1) !important;
    outline: 0 !important;
}

.woocommerce .quantity .qty {
    border-radius: 10px !important;
    height: 42px !important;
    min-height: 42px !important;
    text-align: center !important;
    width: 68px !important;
}

.woocommerce-cart table.cart td.actions {
    background: #fffaf5 !important;
    border-top: 1px solid var(--sp-border) !important;
    padding: 18px !important;
}

.woocommerce-cart table.cart td.actions .button[name="update_cart"] {
    float: right !important;
}

.woocommerce-cart table.cart td.actions .coupon {
    align-items: center !important;
    display: inline-flex !important;
    gap: 10px !important;
}

.woocommerce-cart table.cart td.actions .coupon label {
    color: var(--sp-dark) !important;
    font-size: 14px !important;
    font-weight: 750 !important;
    margin: 0 !important;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout #place_order {
    align-items: center !important;
    background: var(--sp-orange) !important;
    border: 0 !important;
    border-radius: 12px !important;
    /* box-shadow: 0 12px 26px rgba(255, 122, 26, 0.18) !important; */
    color: #fff !important;
    display: inline-flex !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    justify-content: center !important;
    line-height: 1 !important;
    min-height: 46px !important;
    padding: 14px 22px !important;
    text-decoration: none !important;
    transition: background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-checkout #place_order:hover {
    background: var(--sp-orange-dark) !important;
    box-shadow: 0 16px 30px rgba(232, 95, 0, 0.22) !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
}

.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce input.button:disabled,
.woocommerce input.button:disabled[disabled] {
    background: #ffd7b8 !important;
    color: #fff !important;
    opacity: 1 !important;
}

.woocommerce-cart .cart-collaterals {
    display: block !important;
    grid-column: 2 !important;
    margin-top: 0 !important;
}

.woocommerce-cart .cart-collaterals .cart_totals {
    float: none !important;
    padding: 22px !important;
    width: 100% !important;
}

.woocommerce-cart .cart_totals h2 {
    font-size: 22px !important;
    margin: 0 0 16px !important;
}

.woocommerce-cart .cart_totals table.shop_table {
    border: 1px solid var(--sp-border) !important;
    margin-bottom: 18px !important;
}

.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
    background: #fff !important;
    font-size: 14px !important;
    padding: 16px !important;
}

.woocommerce-cart .wc-proceed-to-checkout {
    padding: 0 !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    font-size: 15px !important;
    min-height: 54px !important;
    width: 100% !important;
}

.woocommerce-checkout form.checkout .col2-set {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 24px !important;
    justify-content: space-between !important;
    padding: 0 !important;
    width: 100% !important;
}

.woocommerce-checkout form.checkout .col2-set:before,
.woocommerce-checkout form.checkout .col2-set:after {
    content: none !important;
    display: none !important;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
    background: #fff !important;
    border: 1px solid rgba(237, 240, 243, 0.96) !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.06) !important;
    float: none !important;
    flex-basis: auto !important;
    flex-grow: 0 !important;
    flex-shrink: 1 !important;
    max-width: none !important;
    min-width: 0 !important;
    padding: 24px !important;
}

.woocommerce-checkout #customer_details .col-1 {
    flex: 1 1 auto !important;
    max-width: calc(100% - 454px) !important;
    order: 1 !important;
    width: 100% !important;
}

.woocommerce-checkout #customer_details .col-2 {
    align-self: start !important;
    flex: 0 0 430px !important;
    margin-top: 0 !important;
    max-width: 430px !important;
    order: 2 !important;
    width: 430px !important;
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3,
.woocommerce-checkout #order_review_heading {
    font-size: 22px !important;
    margin: 0 0 22px !important;
}

.woocommerce form .form-row {
    margin: 0 0 16px !important;
    padding: 0 !important;
}

.woocommerce form .form-row label {
    color: var(--sp-text) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    margin-bottom: 7px !important;
}

.woocommerce form .form-row .required {
    color: var(--sp-orange) !important;
}

.woocommerce-checkout #order_review_heading {
    margin-bottom: 22px !important;
}

.woocommerce-checkout #order_review {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table {
    border: 1px solid var(--sp-border) !important;
    margin-bottom: 20px !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td {
    font-size: 13px !important;
    padding: 14px !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total td {
    background: #fffaf5 !important;
    font-size: 15px !important;
    font-weight: 850 !important;
}

.woocommerce-checkout #payment {
    background: #fffaf5 !important;
    border: 1px solid var(--sp-border) !important;
    border-radius: 16px !important;
    margin-top: 18px !important;
    padding: 16px !important;
}

.woocommerce-checkout #payment ul.payment_methods {
    border: 0 !important;
    padding: 0 !important;
}

.woocommerce-checkout #payment div.payment_box {
    background: #fff !important;
    border: 1px solid var(--sp-border) !important;
    border-radius: 14px !important;
    color: var(--sp-text) !important;
    margin: 12px 0 !important;
    padding: 16px !important;
}

.woocommerce-checkout #payment div.payment_box:before {
    display: none !important;
}

.woocommerce-checkout #payment .place-order {
    padding: 16px 0 0 !important;
}

.woocommerce-checkout #place_order {
    font-size: 15px !important;
    min-height: 54px !important;
    width: 100% !important;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
    color: var(--sp-muted) !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper a {
    color: var(--sp-dark) !important;
    font-weight: 800 !important;
}

@media (max-width: 991px) {
    .woocommerce-cart .woocommerce {
        display: block !important;
    }

    .woocommerce-cart .cart-collaterals {
        margin-top: 22px !important;
    }

    .woocommerce-checkout form.checkout .col2-set {
        display: block !important;
    }

    .woocommerce-checkout #customer_details .col-2 {
        margin-top: 22px !important;
        max-width: none !important;
        width: 100% !important;
    }

    .woocommerce-checkout #customer_details .col-1 {
        max-width: none !important;
    }
}

@media (max-width: 767px) {
    .woocommerce-cart .woocommerce-cart-form,
    .woocommerce-cart .cart_totals,
    .woocommerce-checkout form.checkout .col2-set,
    .woocommerce-checkout #order_review {
        border-radius: 14px !important;
    }

    .woocommerce table.shop_table_responsive tr,
    .woocommerce-page table.shop_table_responsive tr {
        border-bottom: 1px solid var(--sp-border) !important;
        display: block !important;
        padding: 10px 0 !important;
    }

    .woocommerce table.shop_table_responsive tr td,
    .woocommerce-page table.shop_table_responsive tr td {
        align-items: center !important;
        border: 0 !important;
        display: flex !important;
        justify-content: space-between !important;
        padding: 10px 14px !important;
        text-align: right !important;
    }

    .woocommerce table.shop_table_responsive tr td.product-thumbnail,
    .woocommerce-page table.shop_table_responsive tr td.product-thumbnail,
    .woocommerce table.shop_table_responsive tr td.product-name,
    .woocommerce-page table.shop_table_responsive tr td.product-name {
        justify-content: flex-start !important;
        text-align: left !important;
    }

    .woocommerce-cart table.cart td.actions {
        display: block !important;
    }

    .woocommerce-cart table.cart td.actions .coupon {
        align-items: stretch !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        margin-bottom: 12px !important;
        width: 100% !important;
    }

    .woocommerce-cart table.cart td.actions .coupon .input-text,
    .woocommerce-cart table.cart td.actions .coupon .button,
    .woocommerce-cart table.cart td.actions > .button {
        width: 100% !important;
    }
}

/* Final archive product card parity with homepage */
.woocommerce-shop ul.products li.product .product-hover-style,
.tax-product_cat ul.products li.product .product-hover-style,
.post-type-archive-product ul.products li.product .product-hover-style,
.woocommerce-page ul.products li.product .product-hover-style {
    border-radius: 14px !important;
    min-height: 100% !important;
    padding: 12px 12px 14px !important;
}

.woocommerce-shop ul.products li.product .product_thumbnail,
.tax-product_cat ul.products li.product .product_thumbnail,
.post-type-archive-product ul.products li.product .product_thumbnail,
.woocommerce-page ul.products li.product .product_thumbnail {
    margin-bottom: 12px !important;
    min-height: 166px !important;
}

.woocommerce-shop ul.products li.product .product_thumbnail img,
.tax-product_cat ul.products li.product .product_thumbnail img,
.post-type-archive-product ul.products li.product .product_thumbnail img,
.woocommerce-page ul.products li.product .product_thumbnail img {
    max-height: 162px !important;
}

.woocommerce-shop ul.products li.product:has(.smartprice-loop-extra-badge) .product_thumbnail,
.tax-product_cat ul.products li.product:has(.smartprice-loop-extra-badge) .product_thumbnail,
.post-type-archive-product ul.products li.product:has(.smartprice-loop-extra-badge) .product_thumbnail,
.woocommerce-page ul.products li.product:has(.smartprice-loop-extra-badge) .product_thumbnail {
    min-height: 150px !important;
}

.woocommerce-shop ul.products li.product:has(.smartprice-loop-extra-badge) .product_thumbnail img,
.tax-product_cat ul.products li.product:has(.smartprice-loop-extra-badge) .product_thumbnail img,
.post-type-archive-product ul.products li.product:has(.smartprice-loop-extra-badge) .product_thumbnail img,
.woocommerce-page ul.products li.product:has(.smartprice-loop-extra-badge) .product_thumbnail img {
    max-height: 148px !important;
}

.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.36 !important;
    margin: 0 0 14px !important;
    min-height: 38px !important;
}

.woocommerce-shop ul.products li.product .price,
.tax-product_cat ul.products li.product .price,
.post-type-archive-product ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
    align-items: center !important;
    column-gap: 11px !important;
    display: grid !important;
    grid-template-columns: max-content max-content 1fr !important;
    margin-top: auto !important;
    min-height: 32px !important;
    padding: 0 56px 0 0 !important;
    width: auto !important;
}

.woocommerce-shop ul.products li.product .price ins,
.tax-product_cat ul.products li.product .price ins,
.post-type-archive-product ul.products li.product .price ins,
.woocommerce-page ul.products li.product .price ins,
.woocommerce-shop ul.products li.product .price ins .woocommerce-Price-amount.amount,
.tax-product_cat ul.products li.product .price ins .woocommerce-Price-amount.amount,
.post-type-archive-product ul.products li.product .price ins .woocommerce-Price-amount.amount,
.woocommerce-page ul.products li.product .price ins .woocommerce-Price-amount.amount {
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: inline-flex !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-decoration: none !important;
}

.woocommerce-shop ul.products li.product .price ins .woocommerce-Price-amount.amount bdi:before,
.tax-product_cat ul.products li.product .price ins .woocommerce-Price-amount.amount bdi:before,
.post-type-archive-product ul.products li.product .price ins .woocommerce-Price-amount.amount bdi:before,
.woocommerce-page ul.products li.product .price ins .woocommerce-Price-amount.amount bdi:before,
.woocommerce-shop ul.products li.product .price ins .woocommerce-Price-amount.amount bdi::before,
.tax-product_cat ul.products li.product .price ins .woocommerce-Price-amount.amount bdi::before,
.post-type-archive-product ul.products li.product .price ins .woocommerce-Price-amount.amount bdi::before,
.woocommerce-page ul.products li.product .price ins .woocommerce-Price-amount.amount bdi::before {
    content: none !important;
    display: none !important;
}

.woocommerce-shop ul.products li.product .price ins .woocommerce-Price-amount.amount bdi,
.tax-product_cat ul.products li.product .price ins .woocommerce-Price-amount.amount bdi,
.post-type-archive-product ul.products li.product .price ins .woocommerce-Price-amount.amount bdi,
.woocommerce-page ul.products li.product .price ins .woocommerce-Price-amount.amount bdi,
.woocommerce-shop ul.products li.product .price > .woocommerce-Price-amount.amount bdi,
.tax-product_cat ul.products li.product .price > .woocommerce-Price-amount.amount bdi,
.post-type-archive-product ul.products li.product .price > .woocommerce-Price-amount.amount bdi,
.woocommerce-page ul.products li.product .price > .woocommerce-Price-amount.amount bdi {
    color: var(--sp-dark) !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
}

.woocommerce-shop ul.products li.product .price del,
.tax-product_cat ul.products li.product .price del,
.post-type-archive-product ul.products li.product .price del,
.woocommerce-page ul.products li.product .price del,
.woocommerce-shop ul.products li.product .price del .woocommerce-Price-amount.amount,
.tax-product_cat ul.products li.product .price del .woocommerce-Price-amount.amount,
.post-type-archive-product ul.products li.product .price del .woocommerce-Price-amount.amount,
.woocommerce-page ul.products li.product .price del .woocommerce-Price-amount.amount,
.woocommerce-shop ul.products li.product .price del .woocommerce-Price-amount.amount bdi,
.tax-product_cat ul.products li.product .price del .woocommerce-Price-amount.amount bdi,
.post-type-archive-product ul.products li.product .price del .woocommerce-Price-amount.amount bdi,
.woocommerce-page ul.products li.product .price del .woocommerce-Price-amount.amount bdi {
    color: #9aa3b2 !important;
    font-size: 12px !important;
    font-weight: 650 !important;
    line-height: 1 !important;
}

.woocommerce-shop ul.products li.product .onsale,
.tax-product_cat ul.products li.product .onsale,
.post-type-archive-product ul.products li.product .onsale,
.woocommerce-page ul.products li.product .onsale {
    bottom: 14px !important;
    height: 28px !important;
    min-height: 28px !important;
    min-width: 48px !important;
    right: 12px !important;
}

.woocommerce-shop ul.products li.product .product-hover-style,
.tax-product_cat ul.products li.product .product-hover-style,
.post-type-archive-product ul.products li.product .product-hover-style,
.woocommerce-page ul.products li.product .product-hover-style {
    height: 100% !important;
}

.woocommerce-shop ul.products li.product .product-hover-style > a,
.tax-product_cat ul.products li.product .product-hover-style > a,
.post-type-archive-product ul.products li.product .product-hover-style > a,
.woocommerce-page ul.products li.product .product-hover-style > a {
    flex: 1 1 auto !important;
}

.woocommerce-shop ul.products li.product .price,
.tax-product_cat ul.products li.product .price,
.post-type-archive-product ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
    align-items: center !important;
    height: 30px !important;
    min-height: 30px !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}

.woocommerce-shop ul.products li.product .onsale,
.tax-product_cat ul.products li.product .onsale,
.post-type-archive-product ul.products li.product .onsale,
.woocommerce-page ul.products li.product .onsale {
    bottom: 14px !important;
    top: auto !important;
    transform: none !important;
}

.woocommerce-shop ul.products li.product .price ins,
.woocommerce-shop ul.products li.product .price ins *,
.tax-product_cat ul.products li.product .price ins,
.tax-product_cat ul.products li.product .price ins *,
.post-type-archive-product ul.products li.product .price ins,
.post-type-archive-product ul.products li.product .price ins *,
.woocommerce-page ul.products li.product .price ins,
.woocommerce-page ul.products li.product .price ins * {
    vertical-align: middle !important;
}

.woocommerce-shop ul.products li.product .price del,
.woocommerce-shop ul.products li.product .price del *,
.tax-product_cat ul.products li.product .price del,
.tax-product_cat ul.products li.product .price del *,
.post-type-archive-product ul.products li.product .price del,
.post-type-archive-product ul.products li.product .price del *,
.woocommerce-page ul.products li.product .price del,
.woocommerce-page ul.products li.product .price del * {
    text-decoration: none !important;
    text-decoration-color: transparent !important;
    text-decoration-line: none !important;
    text-decoration-style: solid !important;
    text-decoration-thickness: 0 !important;
}

.woocommerce-shop ul.products li.product .price del .woocommerce-Price-amount.amount,
.tax-product_cat ul.products li.product .price del .woocommerce-Price-amount.amount,
.post-type-archive-product ul.products li.product .price del .woocommerce-Price-amount.amount,
.woocommerce-page ul.products li.product .price del .woocommerce-Price-amount.amount {
    position: relative !important;
    text-decoration: none !important;
    text-decoration-line: none !important;
}

.woocommerce-shop ul.products li.product .price del .woocommerce-Price-amount.amount bdi,
.tax-product_cat ul.products li.product .price del .woocommerce-Price-amount.amount bdi,
.post-type-archive-product ul.products li.product .price del .woocommerce-Price-amount.amount bdi,
.woocommerce-page ul.products li.product .price del .woocommerce-Price-amount.amount bdi {
    text-decoration: none !important;
    text-decoration-line: none !important;
}

.woocommerce-shop ul.products li.product .price del .woocommerce-Price-amount.amount:after,
.tax-product_cat ul.products li.product .price del .woocommerce-Price-amount.amount:after,
.post-type-archive-product ul.products li.product .price del .woocommerce-Price-amount.amount:after,
.woocommerce-page ul.products li.product .price del .woocommerce-Price-amount.amount:after {
    background: #9aa3b2 !important;
    border-radius: 999px !important;
    content: "" !important;
    display: block !important;
    height: 1.5px !important;
    left: -1px !important;
    position: absolute !important;
    right: -1px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

/* Absolute final archive price correction */
.product-hover-style .price {
    column-gap: 7px !important;
    padding-right: 54px !important;
}

.product-hover-style .price ins,
.product-hover-style .price ins *,
.product-hover-style .price del,
.product-hover-style .price del *,
.product-hover-style .price .woocommerce-Price-amount,
.product-hover-style .price .woocommerce-Price-amount *,
.product-hover-style .price bdi {
    line-height: 1 !important;
    text-decoration: none !important;
    text-decoration-color: transparent !important;
    text-decoration-line: none !important;
    text-decoration-style: solid !important;
    text-decoration-thickness: 0 !important;
}

.product-hover-style .price ins .woocommerce-Price-amount.amount bdi,
.product-hover-style .price > .woocommerce-Price-amount.amount bdi {
    color: var(--sp-dark) !important;
    font-size: 16px !important;
    font-weight: 800 !important;
}

.product-hover-style .price del .woocommerce-Price-amount.amount,
.product-hover-style .price del .woocommerce-Price-amount.amount bdi {
    color: #9aa3b2 !important;
    font-size: 12px !important;
    font-weight: 650 !important;
}

.product-hover-style .price del .woocommerce-Price-amount.amount {
    position: relative !important;
}

.product-hover-style .price del .woocommerce-Price-amount.amount:before {
    content: none !important;
    display: none !important;
}

.product-hover-style .price del .woocommerce-Price-amount.amount:after {
    background: #9aa3b2 !important;
    border-radius: 999px !important;
    content: "" !important;
    display: block !important;
    height: 1.5px !important;
    left: -1px !important;
    position: absolute !important;
    right: -1px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.product-hover-style .onsale {
    bottom: 14px !important;
    font-size: 12px !important;
    height: 28px !important;
    min-height: 28px !important;
    min-width: 48px !important;
    padding: 0 9px !important;
    right: 12px !important;
    top: auto !important;
}

/* Archive product price lock: keep category cards identical to homepage cards. */
body.woocommerce-shop ul.products li.product .product-hover-style .price,
body.tax-product_cat ul.products li.product .product-hover-style .price,
body.post-type-archive-product ul.products li.product .product-hover-style .price,
body.woocommerce-page ul.products li.product .product-hover-style .price {
    align-items: center !important;
    column-gap: 7px !important;
    display: grid !important;
    grid-template-columns: max-content max-content 1fr !important;
    height: 30px !important;
    line-height: 1 !important;
    margin: auto 0 0 !important;
    min-height: 30px !important;
    padding: 0 54px 0 0 !important;
    white-space: nowrap !important;
}

body.woocommerce-shop ul.products li.product .product-hover-style .price ins,
body.tax-product_cat ul.products li.product .product-hover-style .price ins,
body.post-type-archive-product ul.products li.product .product-hover-style .price ins,
body.woocommerce-page ul.products li.product .product-hover-style .price ins,
body.woocommerce-shop ul.products li.product .product-hover-style .price ins *,
body.tax-product_cat ul.products li.product .product-hover-style .price ins *,
body.post-type-archive-product ul.products li.product .product-hover-style .price ins *,
body.woocommerce-page ul.products li.product .product-hover-style .price ins * {
    background: transparent !important;
    box-shadow: none !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-decoration: none !important;
    text-decoration-line: none !important;
}

body.woocommerce-shop ul.products li.product .product-hover-style .price ins .woocommerce-Price-amount.amount bdi,
body.tax-product_cat ul.products li.product .product-hover-style .price ins .woocommerce-Price-amount.amount bdi,
body.post-type-archive-product ul.products li.product .product-hover-style .price ins .woocommerce-Price-amount.amount bdi,
body.woocommerce-page ul.products li.product .product-hover-style .price ins .woocommerce-Price-amount.amount bdi,
body.woocommerce-shop ul.products li.product .product-hover-style .price > .woocommerce-Price-amount.amount bdi,
body.tax-product_cat ul.products li.product .product-hover-style .price > .woocommerce-Price-amount.amount bdi,
body.post-type-archive-product ul.products li.product .product-hover-style .price > .woocommerce-Price-amount.amount bdi,
body.woocommerce-page ul.products li.product .product-hover-style .price > .woocommerce-Price-amount.amount bdi {
    color: var(--sp-dark) !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
}

body.woocommerce-shop ul.products li.product .product-hover-style .price .woocommerce-Price-currencySymbol,
body.tax-product_cat ul.products li.product .product-hover-style .price .woocommerce-Price-currencySymbol,
body.post-type-archive-product ul.products li.product .product-hover-style .price .woocommerce-Price-currencySymbol,
body.woocommerce-page ul.products li.product .product-hover-style .price .woocommerce-Price-currencySymbol {
    display: inline !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    letter-spacing: 0 !important;
    line-height: inherit !important;
    position: relative !important;
    top: -0.01em !important;
    vertical-align: baseline !important;
}

body.woocommerce-shop ul.products li.product .product-hover-style .price del,
body.tax-product_cat ul.products li.product .product-hover-style .price del,
body.post-type-archive-product ul.products li.product .product-hover-style .price del,
body.woocommerce-page ul.products li.product .product-hover-style .price del {
    color: #9aa3b2 !important;
    display: inline-flex !important;
    line-height: 1 !important;
    margin: 0 !important;
    opacity: 1 !important;
    padding: 0 !important;
    position: relative !important;
    text-decoration: line-through !important;
    text-decoration-color: #9aa3b2 !important;
    text-decoration-line: line-through !important;
    text-decoration-thickness: 1.4px !important;
}

body.woocommerce-shop ul.products li.product .product-hover-style .price del *,
body.tax-product_cat ul.products li.product .product-hover-style .price del *,
body.post-type-archive-product ul.products li.product .product-hover-style .price del *,
body.woocommerce-page ul.products li.product .product-hover-style .price del * {
    line-height: 1 !important;
    text-decoration: inherit !important;
    text-decoration-color: inherit !important;
    text-decoration-thickness: inherit !important;
}

body.woocommerce-shop ul.products li.product .product-hover-style .price del .woocommerce-Price-amount.amount,
body.tax-product_cat ul.products li.product .product-hover-style .price del .woocommerce-Price-amount.amount,
body.post-type-archive-product ul.products li.product .product-hover-style .price del .woocommerce-Price-amount.amount,
body.woocommerce-page ul.products li.product .product-hover-style .price del .woocommerce-Price-amount.amount,
body.woocommerce-shop ul.products li.product .product-hover-style .price del .woocommerce-Price-amount.amount bdi,
body.tax-product_cat ul.products li.product .product-hover-style .price del .woocommerce-Price-amount.amount bdi,
body.post-type-archive-product ul.products li.product .product-hover-style .price del .woocommerce-Price-amount.amount bdi,
body.woocommerce-page ul.products li.product .product-hover-style .price del .woocommerce-Price-amount.amount bdi {
    color: #9aa3b2 !important;
    font-size: 12px !important;
    font-weight: 650 !important;
    line-height: 1 !important;
}

body.woocommerce-shop ul.products li.product .product-hover-style .price del::before,
body.tax-product_cat ul.products li.product .product-hover-style .price del::before,
body.post-type-archive-product ul.products li.product .product-hover-style .price del::before,
body.woocommerce-page ul.products li.product .product-hover-style .price del::before,
body.woocommerce-shop ul.products li.product .product-hover-style .price del::after,
body.tax-product_cat ul.products li.product .product-hover-style .price del::after,
body.post-type-archive-product ul.products li.product .product-hover-style .price del::after,
body.woocommerce-page ul.products li.product .product-hover-style .price del::after,
body.woocommerce-shop ul.products li.product .product-hover-style .price del .woocommerce-Price-amount.amount::before,
body.tax-product_cat ul.products li.product .product-hover-style .price del .woocommerce-Price-amount.amount::before,
body.post-type-archive-product ul.products li.product .product-hover-style .price del .woocommerce-Price-amount.amount::before,
body.woocommerce-page ul.products li.product .product-hover-style .price del .woocommerce-Price-amount.amount::before,
body.woocommerce-shop ul.products li.product .product-hover-style .price del .woocommerce-Price-amount.amount::after,
body.tax-product_cat ul.products li.product .product-hover-style .price del .woocommerce-Price-amount.amount::after,
body.post-type-archive-product ul.products li.product .product-hover-style .price del .woocommerce-Price-amount.amount::after,
body.woocommerce-page ul.products li.product .product-hover-style .price del .woocommerce-Price-amount.amount::after {
    content: none !important;
    display: none !important;
}

body.woocommerce-shop ul.products li.product .product-hover-style .onsale,
body.tax-product_cat ul.products li.product .product-hover-style .onsale,
body.post-type-archive-product ul.products li.product .product-hover-style .onsale,
body.woocommerce-page ul.products li.product .product-hover-style .onsale {
    align-items: center !important;
    background: #fff2ee !important;
    border-radius: 999px !important;
    bottom: 13px !important;
    color: #ff5a2a !important;
    display: inline-flex !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    height: 28px !important;
    justify-content: center !important;
    line-height: 1 !important;
    margin: 0 !important;
    min-height: 28px !important;
    min-width: 48px !important;
    padding: 0 9px !important;
    position: absolute !important;
    right: 12px !important;
    top: auto !important;
    transform: none !important;
}

/* Modern shop/category archive layout */
.smartprice-archive-page {
    background: #f5f6f8 !important;
    padding: 34px 0 48px !important;
}

.smartprice-archive-page > .container {
    max-width: 1269px !important;
}

.smartprice-archive-shell {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.smartprice-archive-page #primary,
.smartprice-archive-page #main,
.smartprice-archive-page .shop-content-border {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
    max-width: none !important;
    padding: 0 !important;
    width: 100% !important;
}

.smartprice-archive-header {
    align-items: flex-end !important;
    display: flex !important;
    gap: 18px !important;
    justify-content: space-between !important;
    margin: 0 0 10px !important;
    padding: 0 !important;
}

.smartprice-archive-heading {
    min-width: 0 !important;
}

.smartprice-archive-header .woocommerce-breadcrumb {
    color: #7b8494 !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    margin: 0 0 10px !important;
    padding: 0 !important;
}

.smartprice-archive-header .woocommerce-breadcrumb a {
    color: #7b8494 !important;
    text-decoration: none !important;
}

.smartprice-archive-header .page-title {
    color: var(--sp-dark) !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    line-height: 1.12 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.smartprice-archive-header .term-description,
.smartprice-archive-header .page-description {
    color: var(--sp-muted) !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    max-width: 620px !important;
}

.smartprice-archive-toolbar {
    align-items: center !important;
    display: flex !important;
    gap: 12px !important;
    justify-content: space-between !important;
    margin: 0 0 16px !important;
    min-height: 42px !important;
    position: relative !important;
    z-index: 90 !important;
}

.smartprice-archive-categories {
    display: inline-flex !important;
    position: relative !important;
    width: auto !important;
}

.smartprice-archive-category-btn {
    background: #fff !important;
    border: 1px solid rgba(237, 240, 243, 0.96) !important;
    border-radius: 11px !important;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.055) !important;
    color: var(--sp-dark) !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    gap: 9px !important;
    height: 40px !important;
    padding: 0 16px !important;
    width: auto !important;
}

.smartprice-archive-category-btn .smartprice-lucide {
    color: var(--sp-orange) !important;
    height: 19px !important;
    width: 19px !important;
}

.smartprice-archive-category-menu {
    top: calc(100% + 8px) !important;
    width: 280px !important;
}

.smartprice-filter-panel {
    position: relative !important;
}

.smartprice-filter-panel > summary {
    align-items: center !important;
    background: #fff !important;
    border: 1px solid rgba(237, 240, 243, 0.95) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.045) !important;
    color: var(--sp-dark) !important;
    cursor: pointer !important;
    display: inline-flex !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 750 !important;
    gap: 9px !important;
    height: 42px !important;
    line-height: 1 !important;
    list-style: none !important;
    padding: 0 16px !important;
    user-select: none !important;
}

.smartprice-filter-panel > summary::-webkit-details-marker {
    display: none !important;
}

.smartprice-filter-panel > summary .smartprice-lucide {
    color: var(--sp-orange) !important;
    height: 20px !important;
    width: 20px !important;
}

.smartprice-filter-content {
    background: #fff !important;
    border: 1px solid rgba(237, 240, 243, 0.95) !important;
    border-radius: 16px !important;
    box-shadow: 0 22px 58px rgba(17, 24, 39, 0.14) !important;
    left: 0 !important;
    min-width: 320px !important;
    padding: 18px !important;
    position: absolute !important;
    top: calc(100% + 10px) !important;
    width: min(420px, calc(100vw - 32px)) !important;
    z-index: 100 !important;
}

.smartprice-filter-panel:not([open]) .smartprice-filter-content {
    display: none !important;
}

.smartprice-filter-content #secondary,
.smartprice-filter-content .widget-area,
.smartprice-filter-content aside,
.smartprice-filter-content .widget {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    margin: 0 0 16px !important;
    padding: 0 !important;
    width: 100% !important;
}

.smartprice-filter-content .widget:last-child {
    margin-bottom: 0 !important;
}

.smartprice-filter-content .widget-title,
.smartprice-filter-content h2,
.smartprice-filter-content h3 {
    color: var(--sp-dark) !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    margin: 0 0 10px !important;
}

.smartprice-archive-loop-actions {
    align-items: center !important;
    display: flex !important;
    justify-content: flex-end !important;
    margin-left: auto !important;
}

.smartprice-archive-loop-actions .woocommerce-ordering {
    float: none !important;
    margin: 0 !important;
}

.smartprice-archive-loop-actions select,
.smartprice-archive-loop-actions .orderby {
    appearance: none !important;
    background: #fff !important;
    border: 1px solid rgba(237, 240, 243, 0.95) !important;
    border-radius: 11px !important;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.045) !important;
    color: var(--sp-dark) !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 650 !important;
    height: 40px !important;
    line-height: 40px !important;
    min-width: 176px !important;
    padding: 0 38px 0 14px !important;
}

.smartprice-archive-page .woocommerce-notices-wrapper {
    margin: 0 0 14px !important;
}

.smartprice-archive-page ul.products {
    gap: 18px !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

.smartprice-archive-page nav.woocommerce-pagination,
.smartprice-archive-page .woocommerce-pagination {
    align-items: center !important;
    display: none !important;
    justify-content: center !important;
    margin: 34px 0 0 !important;
    padding: 0 !important;
}

.smartprice-archive-page nav.woocommerce-pagination ul,
.smartprice-archive-page .woocommerce-pagination ul {
    align-items: center !important;
    background: #fff !important;
    border: 1px solid rgba(237, 240, 243, 0.96) !important;
    border-radius: 999px !important;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06) !important;
    display: inline-flex !important;
    gap: 6px !important;
    justify-content: center !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 8px !important;
}

.smartprice-archive-page nav.woocommerce-pagination li,
.smartprice-archive-page .woocommerce-pagination li {
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.smartprice-archive-page nav.woocommerce-pagination a,
.smartprice-archive-page nav.woocommerce-pagination span,
.smartprice-archive-page .woocommerce-pagination a,
.smartprice-archive-page .woocommerce-pagination span {
    align-items: center !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 999px !important;
    color: var(--sp-dark) !important;
    display: inline-flex !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 750 !important;
    height: 34px !important;
    justify-content: center !important;
    line-height: 1 !important;
    min-width: 34px !important;
    padding: 0 11px !important;
    text-decoration: none !important;
}

.smartprice-archive-page nav.woocommerce-pagination .current,
.smartprice-archive-page .woocommerce-pagination .current,
.smartprice-archive-page nav.woocommerce-pagination a:hover,
.smartprice-archive-page .woocommerce-pagination a:hover {
    background: var(--sp-orange) !important;
    color: #fff !important;
}

.smartprice-archive-page .yith-infs-loader,
.smartprice-archive-page .yith-infs-button-wrapper {
    margin: 28px auto 0 !important;
    text-align: center !important;
}

.smartprice-archive-page .smartprice-pagination-hidden {
    display: none !important;
}

.smartprice-infinite-sentinel {
    align-items: center !important;
    color: #667085 !important;
    display: flex !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    gap: 10px !important;
    justify-content: center !important;
    margin: 34px auto 0 !important;
    min-height: 44px !important;
    opacity: 1 !important;
    text-align: center !important;
    transition: opacity 0.22s ease, transform 0.22s ease !important;
}

.smartprice-infinite-sentinel.is-hidden {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(8px) !important;
}

.smartprice-infinite-spinner {
    animation: smartpriceSpinner 0.75s linear infinite !important;
    border: 2px solid rgba(255, 122, 26, 0.18) !important;
    border-radius: 999px !important;
    border-top-color: var(--sp-orange) !important;
    display: inline-flex !important;
    height: 22px !important;
    width: 22px !important;
}

.smartprice-infinite-sentinel.is-complete {
    color: #7b8494 !important;
}

.smartprice-infinite-sentinel.has-error button {
    align-items: center !important;
    background: var(--sp-orange) !important;
    border: 0 !important;
    border-radius: 999px !important;
    color: #fff !important;
    cursor: pointer !important;
    display: inline-flex !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    height: 42px !important;
    justify-content: center !important;
    padding: 0 22px !important;
}

.smartprice-infinite-product {
    opacity: 0 !important;
    transform: scale(0.985) !important;
    transition: opacity 0.28s ease, transform 0.28s ease !important;
}

.smartprice-infinite-product.is-visible {
    opacity: 1 !important;
    transform: scale(1) !important;
}

@keyframes smartpriceSpinner {
    to {
        transform: rotate(360deg);
    }
}

/* Modern single product layout */
.smartprice-single-product-page {
    background: #f5f6f8 !important;
    padding: 22px 0 54px !important;
}

.smartprice-single-product-page > .container {
    max-width: 1269px !important;
}

.smartprice-single-product-shell,
.smartprice-single-product-page #primary,
.smartprice-single-product-page #main {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
    max-width: none !important;
    padding: 0 !important;
    width: 100% !important;
}

.smartprice-single-product-page .woocommerce-breadcrumb {
    color: #7b8494 !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
    margin: 0 0 14px !important;
    padding: 0 !important;
}

.smartprice-single-product-page .woocommerce-breadcrumb a {
    color: #7b8494 !important;
    text-decoration: none !important;
}

.smartprice-single-product-page div.product {
    align-items: start !important;
    background: transparent !important;
    display: grid !important;
    gap: 22px !important;
    grid-template-columns: minmax(0, 55fr) minmax(360px, 45fr) !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
}

.smartprice-single-product-page div.product:before,
.smartprice-single-product-page div.product:after {
    content: none !important;
    display: none !important;
}

.smartprice-single-product-page div.product .woocommerce-product-gallery,
.smartprice-single-product-page div.product .summary.entry-summary {
    background: #fff !important;
    border-radius: 18px !important;

    float: none !important;
    margin: 0 !important;
    min-width: 0 !important;
    width: 100% !important;
}

.smartprice-single-product-page div.product .woocommerce-product-gallery {
    padding: 26px !important;
}

.smartprice-single-product-page div.product .summary.entry-summary {
    padding: 28px !important;
    position: sticky !important;
    top: 18px !important;
}

.smartprice-single-product-page div.product .woocommerce-product-gallery__wrapper {
    margin: 0 !important;
}

.smartprice-single-product-page div.product .woocommerce-product-gallery__image {
    align-items: center !important;
    background: #fff !important;
    border-radius: 16px !important;
    display: flex !important;
    justify-content: center !important;
    min-height: 510px !important;
    overflow: hidden !important;
}

.smartprice-single-product-page div.product .woocommerce-product-gallery__image img {
    display: block !important;
    height: auto !important;
    margin: 0 auto !important;
    max-height: 500px !important;
    object-fit: contain !important;
    width: auto !important;
}

.smartprice-single-product-page div.product .flex-control-thumbs,
.smartprice-single-product-page div.product .woocommerce-product-gallery .flex-control-thumbs {
    display: flex !important;
    gap: 12px !important;
    justify-content: center !important;
    margin: 22px 0 0 !important;
    padding: 0 !important;
}

.smartprice-single-product-page div.product .flex-control-thumbs li {
    border: 1px solid rgba(237, 240, 243, 0.96) !important;
    border-radius: 10px !important;
    float: none !important;
    height: 62px !important;
    list-style: none !important;
    overflow: hidden !important;
    padding: 4px !important;
    width: 62px !important;
}

.smartprice-single-product-page div.product .flex-control-thumbs img {
    height: 100% !important;
    object-fit: contain !important;
    width: 100% !important;
}

.smartprice-single-product-page div.product .onsale {
    align-items: center !important;
    background: #fff2ee !important;
    border: 0 !important;
    border-radius: 999px !important;
    box-shadow: 0 12px 28px rgba(255, 122, 26, 0.16) !important;
    color: #ff5a2a !important;
    display: inline-flex !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    height: 44px !important;
    justify-content: center !important;
    left: 22px !important;
    line-height: 1 !important;
    min-height: 44px !important;
    min-width: 62px !important;
    padding: 0 13px !important;
    position: absolute !important;
    top: 22px !important;
    z-index: 8 !important;
}

.smartprice-single-product-page div.product .product_title {
    color: var(--sp-dark) !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 28px !important;
    font-weight: 650 !important;
    letter-spacing: 0 !important;
    line-height: 1.16 !important;
    margin: 0 0 14px !important;
}

.smartprice-single-product-page div.product .summary .price {
    align-items: baseline !important;
    color: var(--sp-dark) !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    line-height: 1 !important;
    margin: 0 0 16px !important;
}

.smartprice-single-product-page div.product .summary .price ins {
    background: #fff2ee !important;
    border-radius: 9px !important;
    color: #ff3b30 !important;
    display: inline-flex !important;
    font-size: 22px !important;
    font-weight: 850 !important;
    line-height: 1 !important;
    padding: 6px 10px !important;
    text-decoration: none !important;
}

.smartprice-single-product-page div.product .summary .price del {
    color: #9aa3b2 !important;
    font-size: 15px !important;
    font-weight: 650 !important;
    line-height: 1 !important;
    opacity: 1 !important;
}

.smartprice-single-product-page div.product .summary .price .woocommerce-Price-currencySymbol {
    font-size: inherit !important;
    line-height: inherit !important;
    vertical-align: baseline !important;
}

.smartprice-single-product-page div.product form.cart {
    margin: 18px 0 !important;
}

.smartprice-single-product-page div.product .quantity {
    margin-right: 10px !important;
}

.smartprice-single-product-page div.product .single_add_to_cart_button {
    align-items: center !important;
    background: linear-gradient(135deg, #ff7a1a 0%, #ff6514 100%) !important;
    border: 0 !important;
    border-radius: 12px !important;
    /* box-shadow: 0 14px 28px rgba(255, 122, 26, 0.24) !important; */
    color: #fff !important;
    display: inline-flex !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 15px !important;
    font-weight: 850 !important;
    height: 50px !important;
    justify-content: center !important;
    min-width: 230px !important;
    padding: 0 26px !important;
    text-transform: none !important;
}

.smartprice-single-product-page div.product .product_meta,
.smartprice-single-product-page div.product .woocommerce-product-details__short-description,
.smartprice-single-product-page div.product .summary p {
    color: #4b5563 !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

.smartprice-single-product-page div.product .woocommerce-tabs,
.smartprice-single-product-page div.product .related,
.smartprice-single-product-page div.product .upsells {
    background: #fff !important;
    border: 1px solid rgba(237, 240, 243, 0.96) !important;
    border-radius: 18px !important;
    box-shadow: 0 16px 42px rgba(17, 24, 39, 0.045) !important;
    grid-column: 1 / -1 !important;
    margin: 22px 0 0 !important;
    padding: 26px !important;
}

.smartprice-single-product-page div.product .related ul.products,
.smartprice-single-product-page div.product .upsells ul.products {
    gap: 18px !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

@media (max-width: 1199px) {
    .smartprice-single-product-page div.product {
        grid-template-columns: none !important;
    }

    body.single-product .smartprice-single-top-grid {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr) !important;
    }

    .smartprice-single-product-page div.product .woocommerce-product-gallery__image {
        min-height: 440px !important;
    }
}

@media (max-width: 991px) {
    .smartprice-single-product-page div.product {
        grid-template-columns: 1fr !important;
    }

    body.single-product .smartprice-single-top-grid {
        grid-template-columns: 1fr !important;
    }

    .smartprice-single-product-page div.product .summary.entry-summary {
        position: static !important;
    }

    .smartprice-single-product-page div.product .related ul.products,
    .smartprice-single-product-page div.product .upsells ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 767px) {
    .smartprice-single-product-page {
        padding-top: 12px !important;
    }

    .smartprice-single-product-page div.product .woocommerce-product-gallery,
    .smartprice-single-product-page div.product .summary.entry-summary,
    .smartprice-single-product-page div.product .woocommerce-tabs,
    .smartprice-single-product-page div.product .related,
    .smartprice-single-product-page div.product .upsells {
        border-radius: 14px !important;
        padding: 18px !important;
    }

    .smartprice-single-product-page div.product .woocommerce-product-gallery__image {
        min-height: 320px !important;
    }

    .smartprice-single-product-page div.product .product_title {
        font-size: 22px !important;
    }

    .smartprice-single-product-page div.product .single_add_to_cart_button {
        width: 100% !important;
    }

    .smartprice-single-product-page div.product .related ul.products,
    .smartprice-single-product-page div.product .upsells ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* Single product refinements: compact top grid, archive-like price and related cards. */
body.single-product .smartprice-single-product-page div.product {
    background: transparent !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.single-product .smartprice-single-top-grid {
    align-items: start !important;
    display: grid !important;
    gap: 24px !important;
    grid-template-columns: minmax(0, 55fr) minmax(360px, 45fr) !important;
    margin: 0 0 24px !important;
    width: 100% !important;
}

body.single-product .smartprice-single-gallery-panel,
body.single-product .smartprice-single-info-panel {
    align-self: start !important;
    min-width: 0 !important;
}

body.single-product .smartprice-single-gallery-panel {
    order: 1 !important;
    position: relative !important;
}

body.single-product .smartprice-single-info-panel {
    order: 2 !important;
}

body.single-product .smartprice-single-product-page div.product .woocommerce-product-gallery {
    min-height: 0 !important;
    padding: 22px !important;
}

body.single-product .smartprice-single-product-page div.product .summary.entry-summary {
    padding: 0px !important;
}

body.single-product .smartprice-single-product-page div.product .woocommerce-product-gallery__image {
    min-height: 420px !important;
}

body.single-product .smartprice-single-product-page div.product .woocommerce-product-gallery__image img {
    max-height: 410px !important;
}

body.single-product .smartprice-single-product-page div.product .product_title {
    font-size: 26px !important;
    line-height: 1.12 !important;
    margin-bottom: 16px !important;
}

body.single-product .smartprice-single-product-page div.product .summary .price {
    align-items: center !important;
    display: grid !important;
    gap: 8px !important;
    grid-template-columns: max-content max-content !important;
    margin: 0 0 16px !important;
}

body.single-product .smartprice-single-product-page div.product .summary .price ins,
body.single-product .smartprice-single-product-page div.product .summary .price ins .woocommerce-Price-amount.amount {
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: var(--sp-dark) !important;
    display: inline-flex !important;
    font-size: 22px !important;
    font-weight: 850 !important;
    line-height: 1 !important;
    padding: 0 !important;
    text-decoration: none !important;
}

body.single-product .smartprice-single-product-page div.product .summary .price del,
body.single-product .smartprice-single-product-page div.product .summary .price del .woocommerce-Price-amount.amount,
body.single-product .smartprice-single-product-page div.product .summary .price del .woocommerce-Price-amount.amount bdi {
    color: #9aa3b2 !important;
    font-size: 14px !important;
    font-weight: 650 !important;
    line-height: 1 !important;
}

body.single-product .smartprice-single-product-page div.product .summary .price .woocommerce-Price-currencySymbol {
    display: inline !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
    top: -0.01em !important;
    vertical-align: baseline !important;
}

body.single-product .smartprice-single-product-page div.product .woocommerce-tabs {
    margin-top: 0 !important;
}

body.single-product .smartprice-single-product-page div.product .related,
body.single-product .smartprice-single-product-page div.product .upsells {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    margin-top: 0 !important;
    padding: 0 !important;
}

body.single-product .smartprice-single-product-page div.product .related > h2,
body.single-product .smartprice-single-product-page div.product .upsells > h2 {
    color: var(--sp-dark) !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 22px !important;
    font-weight: 850 !important;
    line-height: 1.2 !important;
    margin: 0 0 16px !important;
}

body.single-product .smartprice-single-product-page div.product .related ul.products,
body.single-product .smartprice-single-product-page div.product .upsells ul.products {
    display: grid !important;
    gap: 18px !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    margin: 0 !important;
}

body.single-product .smartprice-single-after {
    display: contents !important;
}

body.single-product .smartprice-single-product-page div.product .woocommerce-tabs {
    grid-column: 1 / 2 !important;
    grid-row: 2 !important;
    margin-top: 0 !important;
}

body.single-product .smartprice-single-product-page div.product .related,
body.single-product .smartprice-single-product-page div.product .upsells {
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
    margin-top: 6px !important;
    width: 100% !important;
}

body.single-product ul.products li.product {
    background: transparent !important;
    border: 0 !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
}

body.single-product ul.products li.product .product-hover-style {
    background: #fff !important;
    border: 1px solid rgba(237, 240, 243, 0.92) !important;
    border-radius: 14px !important;
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.055) !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 100% !important;
    overflow: hidden !important;
    padding: 12px 12px 14px !important;
    position: relative !important;
}

body.single-product ul.products li.product .product-hover-style:hover {
    border-color: rgba(255, 122, 26, 0.18) !important;
    box-shadow: 0 16px 34px rgba(17, 24, 39, 0.08) !important;
}

body.single-product ul.products li.product .product-hover-style > a {
    color: inherit !important;
    display: flex !important;
    flex: 1 1 auto !important;
    flex-direction: column !important;
    min-height: 100% !important;
    position: static !important;
    text-decoration: none !important;
}

body.single-product ul.products li.product .product_thumbnail {
    align-items: center !important;
    background: #fff !important;
    border: 0 !important;
    display: flex !important;
    justify-content: center !important;
    margin: 0 0 12px !important;
    min-height: 150px !important;
    overflow: visible !important;
    position: static !important;
}

body.single-product ul.products li.product .product_thumbnail img {
    height: auto !important;
    margin: 0 auto !important;
    max-height: 148px !important;
    object-fit: contain !important;
    width: auto !important;
}

body.single-product ul.products li.product .woocommerce-loop-product__title {
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    color: #111827 !important;
    display: -webkit-box !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.36 !important;
    margin: 0 0 14px !important;
    min-height: 38px !important;
    overflow: hidden !important;
    padding: 0 !important;
    text-overflow: ellipsis !important;
}

body.single-product ul.products li.product .button.add_to_cart_button,
body.single-product ul.products li.product .button.product_type_simple,
body.single-product ul.products li.product .button.product_type_variable {
    display: none !important;
}

body.single-product ul.products li.product .smartprice-product-actions {
    align-items: center !important;
    display: flex !important;
    gap: 8px !important;
    left: calc(50% - 46px) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    top: 82px !important;
    transform: none !important;
    transition: opacity 0.18s ease, transform 0.18s ease !important;
    visibility: hidden !important;
    z-index: 20 !important;
}

body.single-product ul.products li.product .product-hover-style:hover .smartprice-product-actions {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    visibility: visible !important;
}

body.single-product ul.products li.product .smartprice-product-actions .smart-cart-btn,
body.single-product ul.products li.product .smartprice-product-actions .smartprice-wishlist-btn {
    align-items: center !important;
    background: #fff !important;
    border: 1px solid rgba(237, 240, 243, 0.95) !important;
    border-radius: 999px !important;
    box-shadow: 0 12px 26px rgba(17, 24, 39, 0.12) !important;
    color: #111827 !important;
    display: inline-flex !important;
    height: 34px !important;
    justify-content: center !important;
    min-height: 34px !important;
    min-width: 34px !important;
    padding: 0 !important;
    text-decoration: none !important;
    width: 34px !important;
}

body.single-product ul.products li.product .price {
    align-items: center !important;
    column-gap: 7px !important;
    display: grid !important;
    grid-template-columns: max-content max-content 1fr !important;
    line-height: 1 !important;
    margin: auto 0 0 !important;
    min-height: 30px !important;
    padding: 0 54px 0 0 !important;
    white-space: nowrap !important;
}

body.single-product ul.products li.product .price ins,
body.single-product ul.products li.product .price ins * {
    background: transparent !important;
    box-shadow: none !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-decoration: none !important;
}

body.single-product ul.products li.product .price ins .woocommerce-Price-amount.amount bdi,
body.single-product ul.products li.product .price > .woocommerce-Price-amount.amount bdi {
    color: var(--sp-dark) !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
}

body.single-product ul.products li.product .price del,
body.single-product ul.products li.product .price del * {
    color: #9aa3b2 !important;
    font-size: 12px !important;
    font-weight: 650 !important;
    line-height: 1 !important;
}

body.single-product ul.products li.product .price del .woocommerce-Price-amount.amount::before,
body.single-product ul.products li.product .price del .woocommerce-Price-amount.amount::after {
    content: none !important;
    display: none !important;
}

body.single-product ul.products li.product .onsale {
    align-items: center !important;
    background: #fff2ee !important;
    border-radius: 999px !important;
    bottom: 13px !important;
    color: #ff5a2a !important;
    display: inline-flex !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    height: 28px !important;
    justify-content: center !important;
    line-height: 1 !important;
    min-height: 28px !important;
    min-width: 48px !important;
    padding: 0 9px !important;
    position: absolute !important;
    right: 12px !important;
    top: auto !important;
}

@media (max-width: 991px) {
    body.single-product .smartprice-single-product-page div.product .woocommerce-tabs {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
    }

    body.single-product .smartprice-single-product-page div.product .related,
    body.single-product .smartprice-single-product-page div.product .upsells {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
    }
}

@media (max-width: 767px) {
    body.single-product .smartprice-single-product-page div.product .summary.entry-summary {
        position: static !important;
    }

    body.single-product .smartprice-single-top-grid {
        gap: 16px !important;
    }

    body.single-product .smartprice-single-product-page div.product .flex-control-thumbs,
    body.single-product .smartprice-single-product-page div.product .woocommerce-product-gallery .flex-control-thumbs {
        justify-content: flex-start !important;
        overflow-x: auto !important;
        padding: 0 2px 8px !important;
        scroll-snap-type: x proximity !important;
        -webkit-overflow-scrolling: touch !important;
    }

    body.single-product .smartprice-single-product-page div.product .flex-control-thumbs li {
        flex: 0 0 62px !important;
        scroll-snap-align: start !important;
    }
}

@media (max-width: 1199px) {
    .smartprice-archive-page ul.products {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 991px) {
    .smartprice-archive-header {
        align-items: flex-start !important;
        flex-direction: column !important;
    }

    .smartprice-archive-page ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 767px) {
    .smartprice-archive-page {
        padding-top: 8px !important;
    }

    .smartprice-archive-toolbar {
        align-items: stretch !important;
        flex-direction: column !important;
    }

    .smartprice-filter-panel,
    .smartprice-filter-panel > summary,
    .smartprice-archive-categories,
    .smartprice-archive-category-btn,
    .smartprice-archive-loop-actions,
    .smartprice-archive-loop-actions .woocommerce-ordering,
    .smartprice-archive-loop-actions select,
    .smartprice-archive-loop-actions .orderby {
        width: 100% !important;
    }

    .smartprice-filter-content {
        min-width: 0 !important;
        position: static !important;
        width: 100% !important;
        margin-top: 10px !important;
    }

    .smartprice-archive-page ul.products {
        gap: 14px !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* ------------------------------------------------
   Single product: modern 3-column buy layout
------------------------------------------------ */
body.single-product .smartprice-single-product-page {
    background: #f4f6f8 !important;
    padding: 28px 0 72px !important;
}

body.single-product .smartprice-single-product-page .container {
    max-width: 1269px !important
    padding-left: 15px !important;
    padding-right: 15px !important;
}

body.single-product .smartprice-single-product-shell,
body.single-product .smartprice-single-product-page div.product {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.single-product .smartprice-single-product-page .woocommerce-breadcrumb {
    color: #778194 !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    margin: 0 0 16px !important;
}

body.single-product .smartprice-single-amazon-grid {
    align-items: start !important;
    display: grid !important;
    gap: 20px !important;
    grid-template-columns: minmax(420px, 1.34fr) minmax(300px, 0.9fr) minmax(286px, 0.76fr) !important;
    margin: 0 0 22px !important;
}

body.single-product .smartprice-single-gallery-panel,
body.single-product .smartprice-single-detail-panel,
body.single-product .smartprice-single-buy-box,
body.single-product .smartprice-single-after .woocommerce-tabs,
body.single-product .smartprice-single-after .sp-related-products {
    background: #fff !important;
    border: 1px solid rgba(237, 240, 243, 0.96) !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.055) !important;
}

body.single-product .smartprice-single-gallery-panel {
    min-width: 0 !important;
    padding: 22px !important;
    position: relative !important;
}

body.single-product .smartprice-single-detail-panel {
    min-width: 0 !important;
    padding: 24px !important;
}

body.single-product .smartprice-single-buy-box {
    min-width: 0 !important;
    padding: 22px !important;
    position: sticky !important;
    top: 18px !important;
}

body.single-product .smartprice-single-gallery-panel .sku-smart {
    display: none !important;
}

body.single-product .smartprice-single-gallery-panel .onsale {
    align-items: center !important;
    background: #fff2ee !important;
    border-radius: 999px !important;
    color: #ff5a2a !important;
    display: inline-flex !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    height: 34px !important;
    justify-content: center !important;
    left: 22px !important;
    min-width: 58px !important;
    padding: 0 12px !important;
    position: absolute !important;
    top: 22px !important;
    z-index: 5 !important;
}

body.single-product .smartprice-single-gallery-panel div.images,
body.single-product .smartprice-single-gallery-panel .woocommerce-product-gallery {
    float: none !important;
    margin: 0 !important;
    width: 100% !important;
}

body.single-product .smartprice-single-gallery-panel .woocommerce-product-gallery__wrapper {
    align-items: center !important;
    display: flex !important;
    justify-content: center !important;
    margin: 0 !important;
    min-height: 500px !important;
}

body.single-product .smartprice-single-gallery-panel .woocommerce-product-gallery__image,
body.single-product .smartprice-single-gallery-panel .woocommerce-product-gallery__image a {
    align-items: center !important;
    display: flex !important;
    justify-content: center !important;
}

body.single-product .smartprice-single-gallery-panel .woocommerce-product-gallery__image img {
    height: auto !important;
    max-height: 500px !important;
    object-fit: contain !important;
    width: auto !important;
}

body.single-product .smartprice-single-gallery-panel .flex-control-thumbs {
    align-items: center !important;
    display: flex !important;
    gap: 10px !important;
    justify-content: center !important;
    margin: 18px 0 0 !important;
    padding: 0 !important;
}

body.single-product .smartprice-single-gallery-panel .flex-control-thumbs li {
    background: #fff !important;
    border: 1px solid #edf0f3 !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    height: 58px !important;
    overflow: hidden !important;
    padding: 5px !important;
    width: 58px !important;
}

body.single-product .smartprice-single-gallery-panel .flex-control-thumbs img {
    height: 100% !important;
    object-fit: contain !important;
    opacity: 0.55 !important;
    width: 100% !important;
}

body.single-product .smartprice-single-gallery-panel .flex-control-thumbs img.flex-active,
body.single-product .smartprice-single-gallery-panel .flex-control-thumbs img:hover {
    opacity: 1 !important;
}

body.single-product .smartprice-single-detail-panel .product_title {
    color: #111827 !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: clamp(26px, 2.25vw, 38px) !important;
    font-weight: 850 !important;
    letter-spacing: 0 !important;
    line-height: 1.08 !important;
    margin: 0 0 14px !important;
}

body.single-product .smartprice-single-detail-panel .woocommerce-product-rating {
    margin: 0 0 14px !important;
}

body.single-product .smartprice-single-detail-content,
body.single-product .smartprice-single-detail-content p {
    color: #4b5563 !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}

body.single-product .smartprice-single-detail-content ul {
    display: grid !important;
    gap: 8px !important;
    margin: 14px 0 0 !important;
    padding: 0 !important;
}

body.single-product .smartprice-single-detail-content li {
    color: #374151 !important;
    list-style: none !important;
    padding-left: 22px !important;
    position: relative !important;
}

body.single-product .smartprice-single-detail-content li::before {
    color: var(--sp-orange, #ff7a1a) !important;
    content: "✓" !important;
    font-weight: 900 !important;
    left: 0 !important;
    position: absolute !important;
    top: 0 !important;
}

body.single-product .smartprice-single-buy-box .summary.entry-summary {
    display: flex !important;
    float: none !important;
    flex-direction: column !important;
    gap: 14px !important;
    margin: 0 !important;
    position: static !important;
    width: 100% !important;
}

body.single-product .smartprice-single-buy-box .price {
    align-items: baseline !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px 10px !important;
    margin: 0 !important;
}

body.single-product .smartprice-single-buy-box .price ins,
body.single-product .smartprice-single-buy-box .price ins * {
    background: #fff1ee !important;
    border-radius: 8px !important;
    color: #ff7a1a !important;
    font-size: 22px !important;
    font-weight: 850 !important;
    line-height: 1 !important;
    padding: 5px 8px !important;
    text-decoration: none !important;
}

body.single-product .smartprice-single-buy-box .price > .woocommerce-Price-amount,
body.single-product .smartprice-single-buy-box .price > .woocommerce-Price-amount * {
    color: #111827 !important;
    font-size: 24px !important;
    font-weight: 850 !important;
    line-height: 1 !important;
}

body.single-product .smartprice-single-buy-box .price del,
body.single-product .smartprice-single-buy-box .price del * {
    color: #9aa3b2 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-decoration: line-through !important;
    text-decoration-thickness: 1.5px !important;
}

body.single-product .smartprice-single-buy-box .price del .woocommerce-Price-amount.amount::before,
body.single-product .smartprice-single-buy-box .price del .woocommerce-Price-amount.amount::after {
    content: none !important;
    display: none !important;
}

body.single-product .smartprice-single-buy-box .price del {
    display: inline-flex !important;
    position: static !important;
}

body.single-product .smartprice-single-buy-box .price del::before,
body.single-product .smartprice-single-buy-box .price del::after,
body.single-product .smartprice-single-buy-box .price del bdi::before,
body.single-product .smartprice-single-buy-box .price del bdi::after,
body.single-product .smartprice-single-buy-box .price del span::before,
body.single-product .smartprice-single-buy-box .price del span::after {
    content: none !important;
    display: none !important;
}

body.single-product .smartprice-single-buy-box form.cart {
    margin: 0 !important;
}

body.single-product .smartprice-single-buy-box .single_add_to_cart_button,
body.single-product .smartprice-single-buy-box button.single_add_to_cart_button {
    align-items: center !important;
    background: var(--sp-orange, #ff7a1a) !important;
    border: 0 !important;
    border-radius: 12px !important;
    color: #fff !important;
    display: inline-flex !important;
    font-size: 15px !important;
    font-weight: 850 !important;
    height: 52px !important;
    justify-content: center !important;
    letter-spacing: 0 !important;
    margin: 0 !important;
    text-transform: uppercase !important;
    width: 100% !important;
}

body.single-product .smartprice-single-buy-box .quantity {
    margin: 0 0 10px !important;
    width: 100% !important;
}

body.single-product .smartprice-single-buy-box .quantity input.qty {
    border: 1px solid #d9dee7 !important;
    border-radius: 10px !important;
    height: 44px !important;
    max-width: 100% !important;
    width: 100% !important;
}

body.single-product .smartprice-single-buy-box .gf_image {
    height: auto !important;
    margin: 0 !important;
    max-width: 260px !important;
    width: 100% !important;
}

body.single-product .smartprice-single-buy-box .sku-smart-mob,
body.single-product .smartprice-single-buy-box .sku-smart {
    color: #111827 !important;
    display: block !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    margin: 0 !important;
}

body.single-product .smartprice-single-buy-box .in_stock_text,
body.single-product .smartprice-single-buy-box .sp-condition-trigger {
    background: #f7f8fa !important;
    border: 1px solid #edf0f3 !important;
    border-radius: 10px !important;
    color: #4b5563 !important;
    font-size: 13px !important;
    font-weight: 650 !important;
    margin: 0 !important;
    padding: 10px 12px !important;
}

body.single-product .smartprice-single-after {
    display: block !important;
    margin: 22px 0 0 !important;
    width: 100% !important;
}

body.single-product .smartprice-single-after .woocommerce-tabs {
    margin: 0 0 22px !important;
    padding: 28px !important;
}

body.single-product .smartprice-single-after .woocommerce-tabs ul.tabs {
    display: none !important;
}

body.single-product .smartprice-single-after .woocommerce-tabs .panel {
    background: #fff !important;
    box-shadow: none !important;
    color: #4b5563 !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.single-product .smartprice-single-after .woocommerce-tabs h2 {
    color: #111827 !important;
    font-size: 24px !important;
    font-weight: 850 !important;
    line-height: 1.2 !important;
    margin: 0 0 16px !important;
}

body.single-product .smartprice-single-after .sp-related-products {
    margin: 0 !important;
    padding: 24px !important;
}

body.single-product .sp-related-heading {
    align-items: center !important;
    display: flex !important;
    gap: 8px !important;
    margin: 0 0 16px !important;
}

body.single-product .sp-related-heading-icon {
    color: var(--sp-orange, #ff7a1a) !important;
    font-size: 17px !important;
    line-height: 1 !important;
}

body.single-product .sp-related-products h3 {
    color: #111827 !important;
    font-size: 20px !important;
    font-weight: 850 !important;
    line-height: 1.2 !important;
    margin: 0 !important;
}

body.single-product .smartprice-single-after .sp-related-products ul.products.sp-related-grid {
    display: grid !important;
    gap: 16px !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.single-product .smartprice-single-after .sp-related-products ul.products.sp-related-grid::before,
body.single-product .smartprice-single-after .sp-related-products ul.products.sp-related-grid::after {
    content: none !important;
    display: none !important;
}

body.single-product .smartprice-single-after .sp-related-products ul.products.sp-related-grid li.product {
    clear: none !important;
    float: none !important;
    margin: 0 !important;
    width: auto !important;
}

body.single-product .smartprice-single-after .sp-related-products ul.products li.product .product-hover-style {
    min-height: 100% !important;
}

body.single-product .smartprice-single-after .sp-related-products ul.products li.product .price {
    align-items: center !important;
    column-gap: 7px !important;
    display: grid !important;
    grid-template-columns: max-content max-content 1fr !important;
    margin-top: auto !important;
    min-height: 30px !important;
    padding-right: 50px !important;
    position: relative !important;
    white-space: nowrap !important;
}

body.single-product .smartprice-single-after .sp-related-products ul.products li.product .price ins,
body.single-product .smartprice-single-after .sp-related-products ul.products li.product .price ins * {
    background: transparent !important;
    box-shadow: none !important;
    color: #111827 !important;
    font-size: 16px !important;
    font-weight: 850 !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-decoration: none !important;
}

body.single-product .smartprice-single-after .sp-related-products ul.products li.product .price del,
body.single-product .smartprice-single-after .sp-related-products ul.products li.product .price del * {
    color: #a7afbd !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

body.single-product .smartprice-single-after .sp-related-products ul.products li.product .onsale {
    align-items: center !important;
    background: #fff2ee !important;
    border-radius: 999px !important;
    bottom: 12px !important;
    color: #ff5a2a !important;
    display: inline-flex !important;
    font-size: 12px !important;
    font-weight: 850 !important;
    height: 28px !important;
    justify-content: center !important;
    left: auto !important;
    line-height: 1 !important;
    min-height: 28px !important;
    min-width: 46px !important;
    padding: 0 9px !important;
    position: absolute !important;
    right: 12px !important;
    top: auto !important;
    width: auto !important;
    z-index: 4 !important;
}

/* Single buy box ordered layout. */
body.single-product .smartprice-single-buy-box .summary.entry-summary {
    gap: 12px !important;
}

body.single-product .smartprice-single-buy-box .price {
    order: 1 !important;
}

body.single-product .smartprice-single-buy-box p.stock {
    background: transparent !important;
    border: 0 !important;
    color: #4b5563 !important;
    display: block !important;
    font-size: 14px !important;
    font-weight: 750 !important;
    line-height: 1.35 !important;
    margin: -2px 0 0 !important;
    order: 2 !important;
    padding: 0 !important;
}

body.single-product .smartprice-single-buy-box .in_stock_text {
    background: transparent !important;
    border: 0 !important;
    color: #4b5563 !important;
    font-size: 14px !important;
    font-weight: 750 !important;
    order: 2 !important;
    padding: 0 !important;
}

body.single-product .smartprice-single-buy-box form.cart {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    order: 3 !important;
}

body.single-product .smartprice-single-buy-box form.cart .quantity {
    margin: 0 !important;
    position: relative !important;
}

body.single-product .smartprice-single-buy-box form.cart .quantity::before {
    color: #4b5563 !important;
    content: "Daudzums" !important;
    display: block !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin: 0 0 7px !important;
}

body.single-product .smartprice-single-buy-box .custom-shipping-info {
    align-items: center !important;
    background: transparent !important;
    border: 0 !important;
    color: #111827 !important;
    display: flex !important;
    font-size: 14px !important;
    font-weight: 750 !important;
    gap: 9px !important;
    line-height: 1.25 !important;
    margin: 2px 0 0 !important;
    order: 4 !important;
    padding: 0 !important;
}

body.single-product .smartprice-single-buy-box .custom-shipping-info::before {
    align-items: center !important;
    background: #fff3ea !important;
    border-radius: 999px !important;
    color: var(--sp-orange, #ff7a1a) !important;
    content: "✓" !important;
    display: inline-flex !important;
    flex: 0 0 22px !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    height: 22px !important;
    justify-content: center !important;
    width: 22px !important;
}

body.single-product .smartprice-single-buy-box .custom-shipping-info i {
    display: none !important;
}

body.single-product .smartprice-single-buy-box #shipping-progress-wrapper {
    display: contents !important;
}

body.single-product .smartprice-single-buy-box .sp-shipping-box {
    display: contents !important;
}

body.single-product .smartprice-single-buy-box .sp-shipping-progress {
    align-items: center !important;
    background: transparent !important;
    border: 0 !important;
    color: #111827 !important;
    display: flex !important;
    font-size: 14px !important;
    font-weight: 750 !important;
    gap: 9px !important;
    line-height: 1.25 !important;
    margin: 0 !important;
    order: 5 !important;
    padding: 0 !important;
}

body.single-product .smartprice-single-buy-box .sp-shipping-progress::before,
body.single-product .smartprice-single-buy-box .sp-secure-payment-line .sp-secure-check {
    align-items: center !important;
    background: #fff3ea !important;
    border-radius: 999px !important;
    color: var(--sp-orange, #ff7a1a) !important;
    content: "✓" !important;
    display: inline-flex !important;
    flex: 0 0 22px !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    height: 22px !important;
    justify-content: center !important;
    width: 22px !important;
}

body.single-product .smartprice-single-buy-box .sp-progress-text {
    color: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
}

body.single-product .smartprice-single-buy-box .sp-progress-text i,
body.single-product .smartprice-single-buy-box .sp-progress-bar {
    display: none !important;
}

body.single-product .smartprice-single-buy-box .sp-secure-payment-line {
    align-items: center !important;
    color: #111827 !important;
    display: flex !important;
    font-size: 14px !important;
    font-weight: 750 !important;
    gap: 9px !important;
    line-height: 1.25 !important;
    order: 6 !important;
}

body.single-product .smartprice-single-buy-box .sp-shipping-item {
    align-items: center !important;
    background: #f8fafc !important;
    border: 1px solid #edf0f3 !important;
    border-radius: 12px !important;
    display: grid !important;
    gap: 10px !important;
    grid-template-columns: 26px 1fr auto !important;
    margin: 0 !important;
    padding: 12px !important;
}

body.single-product .smartprice-single-buy-box .sp-shipping-omniva {
    order: 7 !important;
}

body.single-product .smartprice-single-buy-box .sp-shipping-unisend {
    order: 8 !important;
}

body.single-product .smartprice-single-buy-box .sp-shipping-item .sp-title {
    color: #111827 !important;
    font-size: 14px !important;
    font-weight: 650 !important;
    line-height: 1.2 !important;
}

body.single-product .smartprice-single-buy-box .sp-shipping-item .sp-date {
    color: #6b7280 !important;
    font-size: 12px !important;
    line-height: 1.25 !important;
    margin-top: 2px !important;
}

body.single-product .smartprice-single-buy-box .sp-free {
    color: #78be20 !important;
    font-size: 13px !important;
    font-weight: 850 !important;
}

body.single-product .smartprice-single-buy-box .alert {
    border: 0 !important;
    border-radius: 999px !important;
    color: #fff !important;
    display: block !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    line-height: 1.25 !important;
    margin: 4px 0 0 !important;
    order: 9 !important;
    padding: 11px 14px !important;
    text-align: left !important;
    width: 100% !important;
}

body.single-product .smartprice-single-buy-box .summary.entry-summary::after {
    color: #111827 !important;
    content: "Apmaksas veidi:";
    display: block !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    line-height: 1.2 !important;
    margin: 2px 0 -4px !important;
    order: 10 !important;
}

body.single-product .smartprice-single-buy-box .gf_image {
    display: block !important;
    height: auto !important;
    margin: 4px 0 0 !important;
    max-width: 300px !important;
    order: 11 !important;
    width: 100% !important;
}

body.single-product .smartprice-single-buy-box .gf_image::before {
    content: none !important;
}

body.single-product .smartprice-single-buy-box .sku-smart-mob,
body.single-product .smartprice-single-buy-box .sku-smart {
    background: transparent !important;
    border: 0 !important;
    color: #111827 !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    margin: 4px 0 0 !important;
    order: 12 !important;
    padding: 0 !important;
}

body.single-product .smartprice-single-buy-box .sp-condition-trigger {
    align-items: center !important;
    background: #f8fafc !important;
    border: 1px solid #edf0f3 !important;
    border-radius: 12px !important;
    color: #4b5563 !important;
    display: flex !important;
    font-size: 13px !important;
    font-weight: 750 !important;
    gap: 8px !important;
    margin: 0 !important;
    order: 13 !important;
    padding: 12px !important;
}

@media (max-width: 1199px) {
    body.single-product .smartprice-single-amazon-grid {
        grid-template-columns: 1fr !important;
    }

    body.single-product .smartprice-single-buy-box {
        position: static !important;
    }

    body.single-product .smartprice-single-after .sp-related-products ul.products.sp-related-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 767px) {
    body.single-product .smartprice-single-product-page {
        padding: 18px 0 52px !important;
    }

    body.single-product .smartprice-single-gallery-panel,
    body.single-product .smartprice-single-detail-panel,
    body.single-product .smartprice-single-buy-box,
    body.single-product .smartprice-single-after .woocommerce-tabs,
    body.single-product .smartprice-single-after .sp-related-products {
        border-radius: 16px !important;
        padding: 16px !important;
    }

    body.single-product .smartprice-single-gallery-panel .woocommerce-product-gallery__wrapper {
        min-height: 330px !important;
    }

    body.single-product .smartprice-single-gallery-panel .woocommerce-product-gallery__image img {
        max-height: 330px !important;
    }

    body.single-product .smartprice-single-gallery-panel .flex-control-thumbs {
        justify-content: flex-start !important;
        overflow-x: auto !important;
        padding-bottom: 6px !important;
        scroll-snap-type: x proximity !important;
        -webkit-overflow-scrolling: touch !important;
    }

    body.single-product .smartprice-single-gallery-panel .flex-control-thumbs li {
        flex: 0 0 54px !important;
        height: 54px !important;
        scroll-snap-align: start !important;
        width: 54px !important;
    }

    body.single-product .smartprice-single-detail-panel .product_title {
        font-size: 24px !important;
    }

    body.single-product .smartprice-single-after .sp-related-products ul.products.sp-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* Final single product column order override. Older single styles set order only
   on the gallery, so every top panel needs an explicit position. */
body.single-product .smartprice-single-amazon-grid > .smartprice-single-gallery-panel {
    grid-column: 1 !important;
    order: 1 !important;
}

body.single-product .smartprice-single-amazon-grid > .smartprice-single-detail-panel {
    grid-column: 2 !important;
    order: 2 !important;
}

body.single-product .smartprice-single-amazon-grid > .smartprice-single-buy-box {
    grid-column: 3 !important;
    order: 3 !important;
}

@media (max-width: 1199px) {
    body.single-product .smartprice-single-amazon-grid > .smartprice-single-gallery-panel,
    body.single-product .smartprice-single-amazon-grid > .smartprice-single-detail-panel,
    body.single-product .smartprice-single-amazon-grid > .smartprice-single-buy-box {
        grid-column: 1 !important;
    }
}

/* Single product final layout: 2 clean blocks, no empty middle column. */
body.single-product .smartprice-single-amazon-grid {
    align-items: start !important;
    display: grid !important;
    gap: 22px !important;
    grid-template-columns: minmax(0, 58fr) minmax(360px, 42fr) !important;
    margin-bottom: 22px !important;
}

body.single-product .smartprice-single-amazon-grid > .smartprice-single-gallery-panel {
    grid-column: 1 !important;
    order: 1 !important;
}

body.single-product .smartprice-single-amazon-grid > .smartprice-single-detail-panel {
    display: none !important;
}

body.single-product .smartprice-single-amazon-grid > .smartprice-single-buy-box {
    grid-column: 2 !important;
    order: 2 !important;
}

body.single-product .smartprice-single-buy-box {
    padding: 24px !important;
    position: sticky !important;
    top: 18px !important;
}

body.single-product .smartprice-single-buy-box .smartprice-single-title-block {
    border-bottom: 0 !important;
    margin: 0 0 10px !important;
    padding: 0 !important;
}

body.single-product .smartprice-single-buy-box .product_title {
    color: #111827 !important;
    font-family: "Inter", "Poppins", Arial, sans-serif !important;
    font-size: clamp(24px, 2vw, 34px) !important;
    font-weight: 750 !important;
    letter-spacing: 0 !important;
    line-height: 1.1 !important;
    margin: 0 !important;
}

body.single-product .smartprice-single-buy-box .woocommerce-product-rating {
    margin: 10px 0 0 !important;
}

body.single-product .smartprice-single-buy-box .smartprice-single-detail-content {
    border-bottom: 0 !important;
    color: #4b5563 !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    margin: 0 0 14px !important;
    padding: 0 0 14px !important;
}

body.single-product .smartprice-single-buy-box .smartprice-single-detail-content:empty {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.single-product .smartprice-single-buy-box .smartprice-single-detail-content p {
    color: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    margin: 0 !important;
}

body.single-product .smartprice-single-gallery-panel .woocommerce-product-gallery__wrapper {
    min-height: 430px !important;
}

body.single-product .smartprice-single-gallery-panel .woocommerce-product-gallery__image img {
    max-height: 430px !important;
}

body.single-product .smartprice-single-after {
    display: grid !important;
    gap: 22px !important;
    margin-top: 0 !important;
}

body.single-product .smartprice-single-after .woocommerce-tabs {
    margin: 0 !important;
    max-width: 760px !important;
    padding: 28px !important;
}

body.single-product .smartprice-single-after .woocommerce-tabs .panel,
body.single-product .smartprice-single-after .woocommerce-tabs .panel p {
    color: #4b5563 !important;
    font-size: 15px !important;
    line-height: 1.72 !important;
}

body.single-product .smartprice-single-after .woocommerce-tabs h2 {
    font-size: 22px !important;
}

body.single-product .smartprice-single-after .sp-related-products {
    max-width: none !important;
    width: 100% !important;
}

@media (max-width: 1199px) {
    body.single-product .smartprice-single-amazon-grid {
        grid-template-columns: 1fr !important;
    }

    body.single-product .smartprice-single-amazon-grid > .smartprice-single-gallery-panel,
    body.single-product .smartprice-single-amazon-grid > .smartprice-single-buy-box {
        grid-column: 1 !important;
    }

    body.single-product .smartprice-single-buy-box {
        position: static !important;
    }

    body.single-product .smartprice-single-after .woocommerce-tabs {
        max-width: none !important;
    }
}

@media (max-width: 767px) {
    body.single-product .smartprice-single-buy-box .product_title {
        font-size: 23px !important;
    }

    body.single-product .smartprice-single-gallery-panel .woocommerce-product-gallery__wrapper {
        min-height: 320px !important;
    }

    body.single-product .smartprice-single-gallery-panel .woocommerce-product-gallery__image img {
        max-height: 320px !important;
    }
}

/* Single product 2-column correction: gallery + description in the left column. */
body.single-product .smartprice-single-amazon-grid {
    align-items: start !important;
    grid-template-columns: minmax(0, 58fr) minmax(360px, 42fr) !important;
}

body.single-product .smartprice-single-amazon-grid > .smartprice-single-left-column {
    display: grid !important;
    gap: 22px !important;
    grid-column: 1 !important;
    min-width: 0 !important;
    order: 1 !important;
}

body.single-product .smartprice-single-amazon-grid > .smartprice-single-gallery-panel {
    display: none !important;
}

body.single-product .smartprice-single-amazon-grid > .smartprice-single-buy-box {
    grid-column: 2 !important;
    order: 2 !important;
}

body.single-product .smartprice-single-gallery-description {
    background: #fff !important;
    border: 1px solid rgba(237, 240, 243, 0.96) !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.055) !important;
    padding: 28px !important;
}

body.single-product .smartprice-single-gallery-description .woocommerce-tabs {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
    max-width: none !important;
    padding: 0 !important;
}

body.single-product .smartprice-single-gallery-description .woocommerce-tabs ul.tabs {
    display: none !important;
}

body.single-product .smartprice-single-gallery-description .woocommerce-tabs .panel {
    background: transparent !important;
    box-shadow: none !important;
    color: #4b5563 !important;
    font-size: 15px !important;
    line-height: 1.72 !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.single-product .smartprice-single-gallery-description .woocommerce-tabs .panel p {
    color: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
}

body.single-product .smartprice-single-gallery-description .woocommerce-tabs h2 {
    color: #111827 !important;
    font-size: 22px !important;
    font-weight: 850 !important;
    line-height: 1.2 !important;
    margin: 0 0 16px !important;
}

body.single-product .smartprice-single-left-column .smartprice-single-gallery-panel .woocommerce-product-gallery__wrapper {
    min-height: 430px !important;
}

body.single-product .smartprice-single-left-column .smartprice-single-gallery-panel .woocommerce-product-gallery__image,
body.single-product .smartprice-single-left-column .smartprice-single-gallery-panel .woocommerce-product-gallery__image a {
    align-items: center !important;
    display: flex !important;
    justify-content: center !important;
    min-height: 430px !important;
    text-align: center !important;
}

body.single-product .smartprice-single-left-column .smartprice-single-gallery-panel .woocommerce-product-gallery__image img {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-height: 430px !important;
    object-fit: contain !important;
}

body.single-product .smartprice-single-after .woocommerce-tabs {
    display: none !important;
}

@media (max-width: 1199px) {
    body.single-product .smartprice-single-amazon-grid {
        grid-template-columns: 1fr !important;
    }

    body.single-product .smartprice-single-amazon-grid > .smartprice-single-left-column,
    body.single-product .smartprice-single-amazon-grid > .smartprice-single-buy-box {
        grid-column: 1 !important;
    }
}

/* Keep single gallery above description and let Woo/Flexslider handle image switching. */
body.single-product .smartprice-single-left-column > .smartprice-single-gallery-panel {
    display: block !important;
    order: 1 !important;
}

body.single-product .smartprice-single-left-column > .smartprice-single-gallery-description {
    order: 2 !important;
}

body.single-product .smartprice-single-left-column .woocommerce-product-gallery,
body.single-product .smartprice-single-left-column .woocommerce-product-gallery .flex-viewport {
    opacity: 1 !important;
    overflow: hidden !important;
    width: 100% !important;
}

body.single-product .smartprice-single-left-column .woocommerce-product-gallery__wrapper {
    display: block !important;
    margin: 0 !important;
    text-align: initial !important;
}

body.single-product .smartprice-single-left-column .woocommerce-product-gallery__image,
body.single-product .smartprice-single-left-column .woocommerce-product-gallery__image a {
    align-items: center !important;
    display: flex !important;
    justify-content: center !important;
}

body.single-product .smartprice-single-left-column .woocommerce-product-gallery__image img {
    display: block !important;
    height: auto !important;
    margin: 0 auto !important;
    max-height: 430px !important;
    max-width: 100% !important;
    object-fit: contain !important;
    width: auto !important;
}

/* WooCommerce/Flexslider needs slide widths from JS; avoid forcing slides to 100%. */
body.single-product .smartprice-single-left-column .woocommerce-product-gallery .flex-viewport {
    min-height: 430px !important;
}

body.single-product .smartprice-single-left-column .woocommerce-product-gallery .flex-viewport .woocommerce-product-gallery__wrapper {
    align-items: stretch !important;
    display: block !important;
    justify-content: initial !important;
}

body.single-product .smartprice-single-left-column .woocommerce-product-gallery .flex-viewport .woocommerce-product-gallery__image {
    background: #fff !important;
    display: flex !important;
    float: left !important;
    min-height: 430px !important;
    overflow: hidden !important;
    width: auto;
}

body.single-product .smartprice-single-left-column .woocommerce-product-gallery .flex-viewport .woocommerce-product-gallery__image a {
    align-items: center !important;
    display: flex !important;
    justify-content: center !important;
    min-height: 430px !important;
    width: 100% !important;
}

body.single-product .smartprice-single-left-column .woocommerce-product-gallery .flex-viewport .woocommerce-product-gallery__image img {
    display: block !important;
    height: auto !important;
    margin: auto !important;
    max-height: 430px !important;
    max-width: 100% !important;
    object-fit: contain !important;
    width: auto !important;
}


@media (max-width: 767px) {
    body.single-product .smartprice-single-gallery-description {
        border-radius: 16px !important;
        padding: 18px !important;
    }

    body.single-product .smartprice-single-left-column .smartprice-single-gallery-panel .woocommerce-product-gallery__wrapper,
    body.single-product .smartprice-single-left-column .smartprice-single-gallery-panel .woocommerce-product-gallery__image,
    body.single-product .smartprice-single-left-column .smartprice-single-gallery-panel .woocommerce-product-gallery__image a {
        min-height: 320px !important;
    }

    body.single-product .smartprice-single-left-column .smartprice-single-gallery-panel .woocommerce-product-gallery__image img {
        max-height: 320px !important;
    }
}

/* Final buy box order polish: trust, shipping, condition, payment, ID. */
body.single-product .smartprice-single-buy-box .custom-shipping-info {
    order: 4 !important;
}

body.single-product .smartprice-single-buy-box .sp-secure-payment-line {
    order: 5 !important;
}

body.single-product .smartprice-single-buy-box .sp-shipping-progress {
    align-items: center !important;
    background: #fff7ed !important;
    border: 1px solid rgba(255, 122, 26, 0.22) !important;
    border-radius: 12px !important;
    color: #c65308 !important;
    display: grid !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    gap: 10px !important;
    grid-template-columns: 24px minmax(0, 1fr) !important;
    justify-content: start !important;
    line-height: 1.25 !important;
    margin: 4px 0 0 !important;
    order: 6 !important;
    padding: 12px !important;
    text-align: left !important;
}

body.single-product .smartprice-single-buy-box .sp-shipping-progress::before {
    align-items: center !important;
    background: #ffead8 !important;
    border-radius: 999px !important;
    color: #ff7a1a !important;
    content: "€" !important;
    display: inline-flex !important;
    flex: 0 0 24px !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    height: 24px !important;
    justify-content: center !important;
    width: 24px !important;
}

body.single-product .smartprice-single-buy-box .sp-shipping-progress.free {
    background: #f3faeb !important;
    border-color: rgba(120, 190, 32, 0.28) !important;
    color: #4f9f13 !important;
}

body.single-product .smartprice-single-buy-box .sp-shipping-progress.free::before {
    background: #e5f8d5 !important;
    color: #78be20 !important;
    content: "✓" !important;
}

body.single-product .smartprice-single-buy-box .sp-shipping-progress .sp-progress-text {
    align-items: center !important;
    display: flex !important;
    justify-content: flex-start !important;
    min-width: 0 !important;
    text-align: left !important;
}

body.single-product .smartprice-single-buy-box .sp-shipping-omniva {
    order: 7 !important;
}

body.single-product .smartprice-single-buy-box .sp-shipping-unisend {
    order: 8 !important;
}

body.single-product .smartprice-single-buy-box .sp-condition-trigger {
    align-items: center !important;
    display: flex !important;
    gap: 10px !important;
    justify-content: space-between !important;
    margin-top: 4px !important;
    order: 9 !important;
}

body.single-product .smartprice-single-buy-box .sp-condition-trigger strong {
    color: #111827 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
}

body.single-product .smartprice-single-buy-box .sp-condition-trigger span {
    color: #6b7280 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

body.single-product .smartprice-single-buy-box .alert {
    order: 10 !important;
}

body.single-product .smartprice-single-buy-box .summary.entry-summary::after {
    order: 11 !important;
}

body.single-product .smartprice-single-buy-box .gf_image {
    order: 12 !important;
}

body.single-product .smartprice-single-buy-box .sku-smart-mob,
body.single-product .smartprice-single-buy-box .sku-smart {
    order: 13 !important;
}

/* Product condition block: info, badges and defect gallery as one visual group. */
body.single-product .smartprice-single-buy-box .sp-condition-trigger {
    background: #f8fafc !important;
    border: 1px solid #edf0f3 !important;
    border-radius: 12px !important;
    color: #4b5563 !important;
    margin: 6px 0 0 !important;
    order: 9 !important;
}

body.single-product .smartprice-single-buy-box .alert {
    border: 0 !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    display: block !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    order: 10 !important;
    padding: 12px 14px !important;
    width: 100% !important;
}

body.single-product .smartprice-single-buy-box .alert + .alert {
    margin-top: -4px !important;
}

body.single-product .smartprice-single-buy-box .alert-success {
    background: #22a946 !important;
}

body.single-product .smartprice-single-buy-box .alert-info {
    background: #ff9800 !important;
}

body.single-product .smartprice-single-buy-box .alert-warning {
    background: #6b7280 !important;
}

body.single-product .smartprice-single-buy-box .alert-danger {
    background: #ef3b3b !important;
}

body.single-product .smartprice-single-buy-box .summary.entry-summary > .d-flex.justify-content-start {
    background: #fff !important;
    border: 1px solid #edf0f3 !important;
    border-radius: 12px !important;
    display: grid !important;
    gap: 10px !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    margin: -4px 0 0 !important;
    order: 11 !important;
    padding: 10px !important;
}

body.single-product .smartprice-single-buy-box .summary.entry-summary > .d-flex.justify-content-start::before {
    color: #4b5563 !important;
    content: "Defekta attēli";
    display: block !important;
    font-size: 12px !important;
    font-weight: 850 !important;
    grid-column: 1 / -1 !important;
    line-height: 1.2 !important;
}

body.single-product .smartprice-single-buy-box .defect {
    margin: 0 !important;
    max-width: none !important;
    min-width: 0 !important;
}

body.single-product .smartprice-single-buy-box .defect a {
    background: #f8fafc !important;
    border: 1px solid #edf0f3 !important;
    border-radius: 10px !important;
    display: block !important;
    overflow: hidden !important;
    padding: 4px !important;
}

body.single-product .smartprice-single-buy-box .defect-img {
    aspect-ratio: 1 / 1 !important;
    border-radius: 8px !important;
    display: block !important;
    height: auto !important;
    object-fit: cover !important;
    width: 100% !important;
}

body.single-product .smartprice-single-buy-box .defect p {
    color: #6b7280 !important;
    font-size: 11px !important;
    line-height: 1.25 !important;
    margin: 5px 0 0 !important;
}

body.single-product .smartprice-single-buy-box .summary.entry-summary::after {
    order: 12 !important;
}

body.single-product .smartprice-single-buy-box .gf_image {
    order: 13 !important;
}

body.single-product .smartprice-single-buy-box .sku-smart-mob,
body.single-product .smartprice-single-buy-box .sku-smart {
    order: 14 !important;
}

body.single-product .smartprice-single-product-page .summary.entry-summary > .yith-wcwl-add-to-wishlist,
body.single-product .smartprice-single-product-page .summary.entry-summary > .yith-add-to-wishlist-button-block,
body.single-product .smartprice-single-product-page .summary.entry-summary > .yith-wcwl-add-button,
body.single-product .smartprice-single-product-page .summary.entry-summary > .yith-wcwl-wishlistaddedbrowse,
body.single-product .smartprice-single-product-page .summary.entry-summary > .yith-wcwl-wishlistexistsbrowse {
    display: none !important;
}

/* Order confirmation page */
body.woocommerce-order-received .site-content,
body.woocommerce-order-received #content {
    background: #f7f8fa !important;
}

body.woocommerce-order-received .woocommerce {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1240px !important;
}

.smartprice-order-confirmation {
    color: #111827;
    margin: 22px auto 80px;
}

.smartprice-order-hero {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(237, 240, 243, 0.95);
    border-radius: 22px;
    box-shadow: 0 22px 60px rgba(17, 24, 39, 0.09);
    display: grid;
    gap: 22px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    margin: 0 0 18px;
    overflow: hidden;
    padding: 30px;
    position: relative;
}

.smartprice-order-hero::after {
    background: #ff6f17;
    bottom: 0;
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 6px;
}

.smartprice-order-hero--failed {
    background: #fff;
}

.smartprice-order-hero--failed::after {
    background: #ef3b3b;
}

.smartprice-order-status-icon {
    align-items: center;
    background: #ff6f17;
    border: 8px solid #fff;
    border-radius: 24px;
    color: #fff;
    display: flex;
    height: 76px;
    justify-content: center;
    width: 76px;
}

.smartprice-order-hero--failed .smartprice-order-status-icon {
    background: #ef3b3b;
    box-shadow: 0 14px 30px rgba(239, 59, 59, 0.2);
}

.smartprice-order-status-icon svg,
.smartprice-order-status-icon .smartprice-lucide {
    color: #fff !important;
    display: block !important;
    flex: 0 0 auto !important;
    height: 34px !important;
    stroke: #fff !important;
    stroke-width: 2.4 !important;
    width: 34px !important;
}

.smartprice-order-kicker {
    color: #ff6f17 !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
    margin: 0 0 8px !important;
    text-transform: uppercase;
}

.smartprice-order-hero-content h1 {
    color: #111827;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.05;
    margin: 0 0 10px;
}

.smartprice-order-hero-content p:not(.smartprice-order-kicker) {
    color: #4b5563 !important;
    font-size: 16px !important;
    line-height: 1.55 !important;
    margin: 0 !important;
    max-width: 690px;
}

.smartprice-order-actions {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.smartprice-order-btn {
    align-items: center;
    background: #fff;
    border: 1px solid #edf0f3;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
    color: #111827 !important;
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    justify-content: center;
    line-height: 1;
    min-height: 48px;
    padding: 0 18px;
    text-decoration: none !important;
    white-space: nowrap;
}

.smartprice-order-btn--primary {
    background: #ff6f17;
    border-color: transparent;
    color: #fff !important;
}

.smartprice-order-overview {
    display: grid;
    gap: 12px;
    grid-template-columns:
        minmax(145px, 0.85fr)
        minmax(155px, 0.9fr)
        minmax(290px, 1.55fr)
        minmax(175px, 0.82fr)
        minmax(260px, 1.35fr);
    margin: 0 0 18px;
}

.smartprice-order-overview-card {
    align-items: center;
    background: #fff;
    border: 1px solid #edf0f3;
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.05);
    display: flex;
    gap: 12px;
    min-width: 0;
    min-height: 108px;
    padding: 16px;
}

.smartprice-order-card-icon {
    align-items: center;
    background: #fff3ea;
    border-radius: 12px;
    color: #ff6f17;
    display: flex;
    flex: 0 0 36px;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.smartprice-order-card-icon svg,
.smartprice-order-card-icon .smartprice-lucide {
    color: currentColor !important;
    display: block !important;
    height: 18px !important;
    stroke: currentColor !important;
    width: 18px !important;
}

.smartprice-order-overview-card span {
    color: #6b7280;
    display: block;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1.2;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.smartprice-order-overview-card strong {
    color: #111827;
    display: block;
    font-size: 16px !important;
    font-weight: 900;
    line-height: 1.18;
    overflow-wrap: anywhere;
}

.smartprice-order-overview-card--email strong,
.smartprice-order-overview-card--payment strong {
    font-size: clamp(14px, 0.95vw, 16px) !important;
    line-height: 1.24 !important;
}

.smartprice-order-overview-card--email > div:last-child,
.smartprice-order-overview-card--payment > div:last-child,
.smartprice-order-overview-card--total > div:last-child {
    min-width: 0;
    width: 100%;
}

.smartprice-order-overview-card--email strong {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
}

.smartprice-order-overview-card--total strong {
    align-items: baseline;
    display: inline-flex !important;
    flex-wrap: nowrap;
    font-size: 22px !important;
    gap: 4px;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.smartprice-order-overview-card--total strong .woocommerce-Price-amount,
.smartprice-order-overview-card--total strong .woocommerce-Price-amount.amount,
.smartprice-order-overview-card--total strong bdi,
.smartprice-order-overview-card--total strong .woocommerce-Price-currencySymbol {
    display: inline-flex !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.smartprice-order-overview-card--total {
    background: #fff8f1;
    border-color: rgba(255, 112, 23, 0.24);
}

.smartprice-order-overview-card--total span,
.smartprice-order-overview-card--total strong {
    color: #111827;
}

.smartprice-order-overview-card--total .smartprice-order-card-icon {
    background: #ff6f17;
    color: #fff;
}

.smartprice-order-next-steps {
    background: #fff;
    border: 1px solid #edf0f3;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.05);
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 0 20px;
    overflow: hidden;
}

.smartprice-order-next-steps > div {
    align-items: center;
    color: #111827;
    display: flex;
    font-size: 14px;
    font-weight: 750;
    gap: 12px;
    min-height: 68px;
    padding: 16px 20px;
}

.smartprice-order-next-steps > div + div {
    border-left: 1px solid #edf0f3;
}

.smartprice-order-next-steps svg,
.smartprice-order-next-steps .smartprice-lucide {
    background: #fff3ea;
    border-radius: 999px;
    color: #ff6f17;
    flex: 0 0 38px;
    height: 38px;
    padding: 9px;
    stroke: #ff6f17 !important;
    width: 38px;
}

.smartprice-order-content {
    display: grid;
    gap: 20px;
}

.smartprice-order-content > section,
.smartprice-order-content > .woocommerce-order-details,
.smartprice-order-content > .woocommerce-customer-details,
.smartprice-order-content .woocommerce-bacs-bank-details {
    background: #fff;
    border: 1px solid #edf0f3;
    border-radius: 20px;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.07);
    overflow: hidden;
    padding: 0;
}

.smartprice-order-content h2,
.smartprice-order-content .woocommerce-order-details__title,
.smartprice-order-content .woocommerce-column__title,
.smartprice-order-content .wc-bacs-bank-details-heading,
.smartprice-order-content .woocommerce-bacs-bank-details h2 {
    background: #fff8f1;
    border-bottom: 1px solid #edf0f3;
    color: #111827;
    font-size: 22px !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    margin: 0 !important;
    padding: 20px 24px !important;
    text-transform: none !important;
}

.smartprice-order-content table.shop_table,
.smartprice-order-content table.woocommerce-table {
    border: 0 !important;
    border-collapse: collapse !important;
    border-radius: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

.smartprice-order-content table.shop_table thead th,
.smartprice-order-content table.woocommerce-table thead th {
    background: #f8fafc !important;
    border: 0 !important;
    border-bottom: 1px solid #edf0f3 !important;
    color: #6b7280 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    padding: 14px 24px !important;
    text-transform: uppercase !important;
}

.smartprice-order-content table.shop_table td,
.smartprice-order-content table.shop_table th,
.smartprice-order-content table.woocommerce-table td,
.smartprice-order-content table.woocommerce-table th {
    border: 0 !important;
    border-bottom: 1px solid #edf0f3 !important;
    color: #111827 !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
    padding: 18px 24px !important;
    vertical-align: middle !important;
}

.smartprice-order-content table.shop_table tbody tr:last-child td,
.smartprice-order-content table.woocommerce-table tbody tr:last-child td,
.smartprice-order-content table.shop_table tfoot tr:last-child th,
.smartprice-order-content table.shop_table tfoot tr:last-child td {
    border-bottom: 0 !important;
}

.smartprice-order-content table.shop_table td:last-child,
.smartprice-order-content table.shop_table th:last-child,
.smartprice-order-content table.woocommerce-table td:last-child,
.smartprice-order-content table.woocommerce-table th:last-child {
    text-align: right !important;
}

.smartprice-order-content table.shop_table tfoot th {
    color: #4b5563 !important;
    font-weight: 800 !important;
}

.smartprice-order-content table.shop_table tfoot td {
    font-weight: 900 !important;
}

.smartprice-order-content table.shop_table tfoot tr:last-child td,
.smartprice-order-content table.shop_table tfoot tr:last-child th {
    background: #fff8f1 !important;
    color: #111827 !important;
    font-size: 17px !important;
}

.smartprice-order-content address {
    background: #fff !important;
    border: 0 !important;
    color: #111827 !important;
    font-size: 15px !important;
    font-style: normal !important;
    line-height: 1.65 !important;
    margin: 0 !important;
    padding: 22px 24px !important;
}

.smartprice-order-content .woocommerce-customer-details .woocommerce-columns {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.smartprice-order-content .woocommerce-customer-details .woocommerce-column {
    border: 0 !important;
    float: none !important;
    margin: 0 !important;
    max-width: none !important;
    width: 100% !important;
}

.smartprice-order-content .woocommerce-customer-details .woocommerce-column + .woocommerce-column {
    border-left: 1px solid #edf0f3 !important;
}

.smartprice-order-confirmation .woocommerce-notice {
    margin: 0 !important;
}

@media (max-width: 767px) {
    body.single-product .smartprice-single-buy-box .summary.entry-summary > .d-flex.justify-content-start {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 991px) {
    .smartprice-order-hero {
        align-items: start;
        grid-template-columns: auto minmax(0, 1fr);
    }

    .smartprice-order-actions {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .smartprice-order-overview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .smartprice-order-next-steps {
        grid-template-columns: 1fr;
    }

    .smartprice-order-next-steps > div + div {
        border-left: 0;
        border-top: 1px solid #edf0f3;
    }
}

@media (max-width: 767px) {
    .smartprice-order-confirmation {
        margin: 8px auto 48px;
    }

    .smartprice-order-hero {
        border-radius: 18px;
        gap: 16px;
        padding: 20px;
    }

    .smartprice-order-status-icon {
        border-radius: 15px;
        height: 52px;
        width: 52px;
    }

    .smartprice-order-hero-content h1 {
        font-size: 28px;
    }

    .smartprice-order-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .smartprice-order-btn {
        width: 100%;
    }

    .smartprice-order-overview {
        grid-template-columns: 1fr;
    }

    .smartprice-order-content h2,
    .smartprice-order-content .woocommerce-order-details__title,
    .smartprice-order-content .woocommerce-column__title,
    .smartprice-order-content .wc-bacs-bank-details-heading,
    .smartprice-order-content .woocommerce-bacs-bank-details h2 {
        font-size: 18px !important;
        padding: 17px 18px !important;
    }

    .smartprice-order-content table.shop_table thead,
    .smartprice-order-content table.woocommerce-table thead {
        display: none !important;
    }

    .smartprice-order-content table.shop_table tr,
    .smartprice-order-content table.woocommerce-table tr {
        display: block !important;
        padding: 14px 18px !important;
    }

    .smartprice-order-content table.shop_table td,
    .smartprice-order-content table.shop_table th,
    .smartprice-order-content table.woocommerce-table td,
    .smartprice-order-content table.woocommerce-table th {
        display: flex !important;
        justify-content: space-between !important;
        padding: 8px 0 !important;
        text-align: left !important;
    }

    .smartprice-order-content table.shop_table td:last-child,
    .smartprice-order-content table.shop_table th:last-child,
    .smartprice-order-content table.woocommerce-table td:last-child,
    .smartprice-order-content table.woocommerce-table th:last-child {
        text-align: right !important;
    }

    .smartprice-order-content .woocommerce-customer-details .woocommerce-columns {
        grid-template-columns: 1fr;
    }

    .smartprice-order-content .woocommerce-customer-details .woocommerce-column + .woocommerce-column {
        border-left: 0 !important;
        border-top: 1px solid #edf0f3 !important;
    }
}

/* Final responsive homepage pass: header + hero only. */
@media (max-width: 991px) {
    body.home #masthead .smartprice-main-header {
        padding: 18px 20px 16px !important;
    }

    body.home .smartprice-bottom-header > .row {
        display: grid !important;
        gap: 18px !important;
        grid-template-columns: 1fr !important;
        margin: 0 !important;
    }

    body.home .smartprice-bottom-header > .row > [class*="col-"] {
        max-width: none !important;
        padding: 0 !important;
        width: 100% !important;
    }

    body.home .mobile-header {
        align-items: center !important;
        display: grid !important;
        gap: 14px !important;
        grid-template-columns: 44px minmax(0, 1fr) auto !important;
        width: 100% !important;
    }

    body.home #menu-button {
        background: transparent !important;
        border: 0 !important;
        color: #111827 !important;
        height: 44px !important;
        padding: 0 !important;
        width: 44px !important;
    }

    body.home .mobile-header .site-branding {
        align-items: center !important;
        display: flex !important;
        justify-content: flex-start !important;
    }

    body.home .mobile-header .logo {
        max-width: 188px !important;
        width: 44vw !important;
    }

    body.home .mobile-header-right {
        align-items: center !important;
        display: flex !important;
        gap: 16px !important;
        justify-content: flex-end !important;
    }

    body.home .smartprice-mobile-account,
    body.home .fixed-cart-mobile .cart,
    body.home .fixed-cart-mobile .header-cart-count {
        align-items: center !important;
        background: transparent !important;
        border: 0 !important;
        color: #111827 !important;
        display: inline-flex !important;
        height: 40px !important;
        justify-content: center !important;
        position: relative !important;
        width: 40px !important;
    }

    body.home .smartprice-mobile-account .smartprice-lucide,
    body.home .fixed-cart-mobile .smartprice-lucide {
        height: 27px !important;
        stroke-width: 1.8 !important;
        width: 27px !important;
    }

    body.home .fixed-cart-mobile .smartprice-cart-count-number {
        align-items: center !important;
        background: #ff7a1a !important;
        border: 2px solid #fff !important;
        border-radius: 999px !important;
        color: #fff !important;
        display: inline-flex !important;
        font-size: 11px !important;
        font-weight: 900 !important;
        height: 21px !important;
        justify-content: center !important;
        line-height: 1 !important;
        min-width: 21px !important;
        padding: 0 5px !important;
        position: absolute !important;
        right: -2px !important;
        top: -3px !important;
    }

    body.home .smartprice-bottom-header div.asl_w,
    body.home .smartprice-bottom-header #ajaxsearchlite1 {
        border-radius: 16px !important;
        box-shadow: 0 14px 32px rgba(17, 24, 39, 0.07) !important;
        height: 64px !important;
        max-width: none !important;
        width: 100% !important;
    }

    body.home .smartprice-bottom-header div.asl_w .probox,
    body.home .smartprice-bottom-header #ajaxsearchlite1 .probox {
        border-radius: 16px !important;
        height: 64px !important;
    }

    body.home .smartprice-bottom-header div.asl_w .probox .promagnifier {
        border-radius: 14px !important;
        height: 56px !important;
        margin: 4px !important;
        width: 56px !important;
    }

    body.home .smartprice-home > .container:first-child {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    body.home .smartprice-feature-nav {
        display: none !important;
    }

    body.home .smartprice-trust-row {
        background: transparent !important;
        box-shadow: none !important;
        display: grid !important;
        gap: 16px !important;
        grid-auto-columns: minmax(150px, 1fr) !important;
        grid-auto-flow: column !important;
        grid-template-columns: none !important;
        margin: 12px -20px 0 !important;
        order: 1 !important;
        overflow-x: auto !important;
        padding: 0 20px 4px !important;
        scrollbar-width: none !important;
    }

    body.home .smartprice-trust-row::-webkit-scrollbar {
        display: none !important;
    }

    body.home .smartprice-trust-row div {
        align-items: center !important;
        background: transparent !important;
        box-shadow: none !important;
        display: grid !important;
        gap: 3px 10px !important;
        grid-template-columns: 46px minmax(0, 1fr) !important;
        min-width: 150px !important;
        padding: 0 !important;
    }

    body.home .smartprice-trust-row .smartprice-lucide {
        background: #fff3ea !important;
        border-radius: 999px !important;
        color: #ff7a1a !important;
        grid-row: span 2 !important;
        height: 46px !important;
        padding: 12px !important;
        width: 46px !important;
    }

    body.home .smartprice-trust-row strong {
        color: #111827 !important;
        font-size: 13px !important;
        font-weight: 850 !important;
        line-height: 1.15 !important;
        margin: 0 !important;
        white-space: nowrap !important;
    }

    body.home .smartprice-trust-row span {
        color: #6b7280 !important;
        font-size: 12px !important;
        line-height: 1.25 !important;
        margin: 0 !important;
    }

    body.home .smartprice-home-hero-grid {
        display: grid !important;
        gap: 20px !important;
        grid-template-columns: 1fr !important;
        order: 2 !important;
    }

    body.home .smartprice-hero-main {
        border-radius: 20px !important;
        min-height: 470px !important;
        overflow: hidden !important;
        padding: 36px !important;
        position: relative !important;
    }

    body.home .smartprice-kicker {
        display: none !important;
    }

    body.home .smartprice-hero-copy {
        max-width: 48% !important;
        position: relative !important;
        width: 48% !important;
        z-index: 2 !important;
    }

    body.home .smartprice-hero-copy h1 {
        color: #111827 !important;
        font-size: 30px !important;
        font-weight: 850 !important;
        line-height: 1.12 !important;
        margin: 0 0 18px !important;
    }

    body.home .smartprice-hero-copy h1 span {
        display: block !important;
        font-size: 56px !important;
        line-height: 1 !important;
        margin-top: 8px !important;
        white-space: nowrap !important;
    }

    body.home .smartprice-hero-copy h1 span strong {
        color: #111827 !important;
        font-size: inherit !important;
        font-weight: 900 !important;
    }

    body.home .smartprice-hero-copy h1 span em {
        color: #ff5a1f !important;
        font-size: inherit !important;
        font-style: normal !important;
        font-weight: 900 !important;
    }

    body.home .smartprice-hero-copy p {
        color: #111827 !important;
        font-size: 18px !important;
        line-height: 1.45 !important;
        margin: 0 0 28px !important;
    }

    body.home .smartprice-hero-copy ul {
        gap: 13px !important;
        margin: 0 0 28px !important;
    }

    body.home .smartprice-hero-copy li {
        color: #111827 !important;
        font-size: 16px !important;
        font-weight: 750 !important;
        line-height: 1.35 !important;
    }

    body.home .smartprice-hero-main .smartprice-primary-btn {
        border-radius: 12px !important;
        font-size: 15px !important;
        height: 56px !important;
        padding: 0 22px !important;
    }

    body.home .smartprice-hero-visual {
        bottom: 8px !important;
        display: block !important;
        height: 78% !important;
        left: auto !important;
        margin: 0 !important;
        min-height: 0 !important;
        position: absolute !important;
        right: 0 !important;
        top: auto !important;
        width: 60% !important;
        z-index: 1 !important;
    }

    body.home .smartprice-hero-visual img {
        bottom: 0 !important;
        height: 100% !important;
        max-height: none !important;
        max-width: none !important;
        object-fit: contain !important;
        object-position: right bottom !important;
        position: absolute !important;
        right: -4% !important;
        width: 112% !important;
    }

    body.home .smartprice-promo-grid {
        display: grid !important;
        gap: 16px !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    body.home .smartprice-promo-card {
        border-radius: 16px !important;
        min-height: 184px !important;
        padding: 22px !important;
    }
}

@media (max-width: 575px) {
    body.home #masthead .smartprice-main-header {
        padding: 16px 14px 14px !important;
    }

    body.home .mobile-header {
        gap: 10px !important;
        grid-template-columns: 42px minmax(0, 1fr) auto !important;
    }

    body.home .mobile-header .logo {
        max-width: 150px !important;
        width: 42vw !important;
    }

    body.home .mobile-header-right {
        gap: 8px !important;
    }

    body.home .smartprice-mobile-account,
    body.home .fixed-cart-mobile .cart,
    body.home .fixed-cart-mobile .header-cart-count {
        height: 36px !important;
        width: 36px !important;
    }

    body.home .smartprice-mobile-account .smartprice-lucide,
    body.home .fixed-cart-mobile .smartprice-lucide {
        height: 25px !important;
        width: 25px !important;
    }

    body.home .smartprice-bottom-header div.asl_w,
    body.home .smartprice-bottom-header #ajaxsearchlite1,
    body.home .smartprice-bottom-header div.asl_w .probox,
    body.home .smartprice-bottom-header #ajaxsearchlite1 .probox {
        height: 52px !important;
    }

    body.home .smartprice-bottom-header div.asl_w .probox .promagnifier {
        height: 46px !important;
        width: 46px !important;
    }

    body.home .smartprice-home > .container:first-child {
        gap: 18px !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    body.home .smartprice-trust-row {
        gap: 12px !important;
        grid-auto-columns: minmax(138px, 1fr) !important;
        margin-left: -14px !important;
        margin-right: -14px !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    body.home .smartprice-hero-main {
        min-height: 632px !important;
        padding: 28px !important;
    }

    body.home .smartprice-hero-copy {
        max-width: 100% !important;
        width: 100% !important;
    }

    body.home .smartprice-hero-copy h1 {
        font-size: 21px !important;
        max-width: 310px !important;
    }

    body.home .smartprice-hero-copy h1 span {
        font-size: 42px !important;
    }

    body.home .smartprice-hero-copy p {
        font-size: 15px !important;
        max-width: 290px !important;
    }

    body.home .smartprice-hero-copy li {
        font-size: 14px !important;
    }

    body.home .smartprice-hero-main .smartprice-primary-btn {
        height: 46px !important;
        max-width: 226px !important;
        width: 100% !important;
    }

    body.home .smartprice-hero-visual {
        bottom: 18px !important;
        height: 34% !important;
        right: 18px !important;
        width: 76% !important;
    }

    body.home .smartprice-hero-visual img {
        right: 0 !important;
        width: 100% !important;
    }

    body.home .smartprice-promo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    body.home .smartprice-promo-card {
        min-height: 160px !important;
        padding: 18px !important;
    }
}

/* Mobile product action hard override. Must stay at the end of this file. */
@media (max-width: 767px) {
    body.smartprice-home .product_home .smartprice-product-actions,
    body.smartprice-home .product_home:hover .smartprice-product-actions,
    body.smartprice-home .product_home:active .smartprice-product-actions,
    body.smartprice-home .product_home:focus .smartprice-product-actions,
    body.smartprice-home .product_home:focus-within .smartprice-product-actions,
    body.smartprice-home .product_home:not(:hover) .smartprice-product-actions,
    body.smartprice-home .product_home:focus-within:not(:hover) .smartprice-product-actions,
    body.woocommerce-page ul.products li.product .smartprice-product-actions,
    body.woocommerce-page ul.products li.product:hover .smartprice-product-actions,
    body.woocommerce-page ul.products li.product:active .smartprice-product-actions,
    body.woocommerce-page ul.products li.product:focus-within .smartprice-product-actions,
    body ul.products li.product .smartprice-product-actions,
    body ul.products li.product:hover .smartprice-product-actions,
    body ul.products li.product:active .smartprice-product-actions,
    body ul.products li.product:focus-within .smartprice-product-actions {
        align-items: center !important;
        bottom: auto !important;
        display: flex !important;
        gap: 8px !important;
        justify-content: center !important;
        left: calc(50% - 46px) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        position: absolute !important;
        right: auto !important;
        top: 128px !important;
        transform: none !important;
        transition: none !important;
        visibility: visible !important;
        z-index: 300 !important;
    }

    body .smartprice-product-actions .smart-cart-btn,
    body .smartprice-product-actions .smart-cart-btn:hover,
    body .smartprice-product-actions .smart-cart-btn:focus,
    body .smartprice-product-actions .smart-cart-btn:active,
    body .smartprice-product-actions .smartprice-wishlist-btn,
    body .smartprice-product-actions .smartprice-wishlist-btn:hover,
    body .smartprice-product-actions .smartprice-wishlist-btn:focus,
    body .smartprice-product-actions .smartprice-wishlist-btn:active,
    body .smartprice-product-actions .yith-wcwl-add-button a,
    body .smartprice-product-actions .yith-wcwl-add-button a:hover,
    body .smartprice-product-actions .yith-wcwl-add-button a:focus,
    body .smartprice-product-actions .yith-wcwl-add-button a:active,
    body .smartprice-product-actions .yith-add-to-wishlist-button-block button,
    body .smartprice-product-actions .yith-add-to-wishlist-button-block button:hover,
    body .smartprice-product-actions .yith-add-to-wishlist-button-block button:focus,
    body .smartprice-product-actions .yith-add-to-wishlist-button-block button:active {
        bottom: auto !important;
        left: auto !important;
        margin: 0 !important;
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
    }

    body .smartprice-product-actions .added_to_cart:not(.smart-cart-btn),
    body .smartprice-product-actions .wc-forward:not(.smart-cart-btn) {
        display: none !important;
    }
}

/* EOF desktop homepage action fix: only homepage desktop cards. */
@media (min-width: 768px) {
    .smartprice-home .product_home .smartprice-product-actions,
    .smartprice-home .product_home:hover .smartprice-product-actions,
    .smartprice-home .product_home:active .smartprice-product-actions,
    .smartprice-home .product_home:focus-within .smartprice-product-actions,
    body.smartprice-home .product_home .smartprice-product-actions,
    body.smartprice-home .product_home:hover .smartprice-product-actions,
    body.smartprice-home .product_home:active .smartprice-product-actions,
    body.smartprice-home .product_home:focus-within .smartprice-product-actions {
        align-items: center !important;
        display: flex !important;
        gap: 8px !important;
        justify-content: center !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: max-content !important;
    }

    .smartprice-home .product_home .smartprice-product-actions > a.added_to_cart:not(.smart-cart-btn),
    .smartprice-home .product_home .smartprice-product-actions > a.wc-forward:not(.smart-cart-btn),
    .smartprice-home .product_home .smartprice-product-actions .added_to_cart:not(.smart-cart-btn),
    .smartprice-home .product_home .smartprice-product-actions .wc-forward:not(.smart-cart-btn),
    .smartprice-home .product_home .smartprice-product-actions + a.added_to_cart:not(.smart-cart-btn),
    .smartprice-home .product_home .smartprice-product-actions + a.wc-forward:not(.smart-cart-btn),
    .smartprice-home .product_home a.added_to_cart.wc-forward:not(.smart-cart-btn),
    body.smartprice-home .product_home .smartprice-product-actions > a.added_to_cart:not(.smart-cart-btn),
    body.smartprice-home .product_home .smartprice-product-actions > a.wc-forward:not(.smart-cart-btn),
    body.smartprice-home .product_home .smartprice-product-actions .added_to_cart:not(.smart-cart-btn),
    body.smartprice-home .product_home .smartprice-product-actions .wc-forward:not(.smart-cart-btn),
    body.smartprice-home .product_home .smartprice-product-actions + a.added_to_cart:not(.smart-cart-btn),
    body.smartprice-home .product_home .smartprice-product-actions + a.wc-forward:not(.smart-cart-btn),
    body.smartprice-home .product_home a.added_to_cart.wc-forward:not(.smart-cart-btn) {
        display: none !important;
        flex: 0 0 0 !important;
        height: 0 !important;
        min-height: 0 !important;
        min-width: 0 !important;
        opacity: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important;
        visibility: hidden !important;
        width: 0 !important;
    }
}

/* Final desktop homepage cart icon: keep the real SVG visible after loading. */
@media (min-width: 768px) {
    .smartprice-home .product_home .smart-cart-btn:not(.loading):not(.smartprice-is-loading),
    body.smartprice-home .product_home .smart-cart-btn:not(.loading):not(.smartprice-is-loading) {
        font-size: 0 !important;
        line-height: 1 !important;
    }

    .smartprice-home .product_home .smart-cart-btn:not(.loading):not(.smartprice-is-loading)::before,
    .smartprice-home .product_home .smart-cart-btn:not(.loading):not(.smartprice-is-loading)::after,
    body.smartprice-home .product_home .smart-cart-btn:not(.loading):not(.smartprice-is-loading)::before,
    body.smartprice-home .product_home .smart-cart-btn:not(.loading):not(.smartprice-is-loading)::after {
        content: none !important;
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .smartprice-home .product_home .smart-cart-btn:not(.loading):not(.smartprice-is-loading) > svg,
    .smartprice-home .product_home .smart-cart-btn:not(.loading):not(.smartprice-is-loading) > .smartprice-lucide,
    body.smartprice-home .product_home .smart-cart-btn:not(.loading):not(.smartprice-is-loading) > svg,
    body.smartprice-home .product_home .smart-cart-btn:not(.loading):not(.smartprice-is-loading) > .smartprice-lucide {
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        display: block !important;
        height: 18px !important;
        margin: 0 !important;
        opacity: 1 !important;
        padding: 0 !important;
        position: static !important;
        stroke: currentColor !important;
        transform: none !important;
        visibility: visible !important;
        width: 18px !important;
        z-index: 2 !important;
    }
}

/* New isolated desktop homepage cart button. */
@keyframes smartpriceHomeCartSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (min-width: 768px) {
    .smartprice-home .product_home .smartprice-home-cart-control,
    body.smartprice-home .product_home .smartprice-home-cart-control {
        align-items: center !important;
        appearance: none !important;
        -webkit-appearance: none !important;
        background: #fff !important;
        border: 1px solid rgba(237, 240, 243, 0.95) !important;
        border-radius: 999px !important;
        box-shadow: 0 12px 26px rgba(17, 24, 39, 0.12) !important;
        color: #111827 !important;
        cursor: pointer !important;
        display: inline-flex !important;
        flex: 0 0 34px !important;
        height: 34px !important;
        justify-content: center !important;
        line-height: 1 !important;
        margin: 0 !important;
        min-height: 34px !important;
        min-width: 34px !important;
        overflow: hidden !important;
        padding: 0 !important;
        position: relative !important;
        text-decoration: none !important;
        transform: none !important;
        transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease !important;
        width: 34px !important;
    }

    .smartprice-home .product_home .smartprice-home-cart-control:hover,
    body.smartprice-home .product_home .smartprice-home-cart-control:hover {
        background: var(--sp-orange, #ff7a1a) !important;
        border-color: var(--sp-orange, #ff7a1a) !important;
        color: #fff !important;
        transform: translateY(-1px) !important;
    }

    .smartprice-home .product_home .smartprice-home-cart-control::before,
    .smartprice-home .product_home .smartprice-home-cart-control::after,
    body.smartprice-home .product_home .smartprice-home-cart-control::before,
    body.smartprice-home .product_home .smartprice-home-cart-control::after {
        content: none !important;
        display: none !important;
    }

    .smartprice-home .product_home .smartprice-home-cart-icon,
    body.smartprice-home .product_home .smartprice-home-cart-icon {
        align-items: center !important;
        display: inline-flex !important;
        height: 18px !important;
        justify-content: center !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 18px !important;
    }

    .smartprice-home .product_home .smartprice-home-cart-icon svg,
    body.smartprice-home .product_home .smartprice-home-cart-icon svg {
        display: block !important;
        height: 18px !important;
        opacity: 1 !important;
        stroke: currentColor !important;
        visibility: visible !important;
        width: 18px !important;
    }

    .smartprice-home .product_home .smartprice-home-cart-spinner,
    body.smartprice-home .product_home .smartprice-home-cart-spinner {
        animation: smartpriceHomeCartSpin 0.72s linear infinite !important;
        border: 2px solid currentColor !important;
        border-radius: 999px !important;
        border-right-color: transparent !important;
        display: none !important;
        height: 18px !important;
        left: 50% !important;
        margin: -9px 0 0 -9px !important;
        opacity: 0 !important;
        position: absolute !important;
        top: 50% !important;
        visibility: hidden !important;
        width: 18px !important;
    }

    .smartprice-home .product_home .smartprice-home-cart-control.smartprice-is-loading,
    body.smartprice-home .product_home .smartprice-home-cart-control.smartprice-is-loading {
        background: var(--sp-orange, #ff7a1a) !important;
        border-color: var(--sp-orange, #ff7a1a) !important;
        color: #fff !important;
        pointer-events: none !important;
    }

    .smartprice-home .product_home .smartprice-home-cart-control.smartprice-is-loading .smartprice-home-cart-icon,
    body.smartprice-home .product_home .smartprice-home-cart-control.smartprice-is-loading .smartprice-home-cart-icon {
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .smartprice-home .product_home .smartprice-home-cart-control.smartprice-is-loading .smartprice-home-cart-spinner,
    body.smartprice-home .product_home .smartprice-home-cart-control.smartprice-is-loading .smartprice-home-cart-spinner {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* Global isolated product-card cart button. */
.smartprice-product-actions .smartprice-home-cart-control {
    align-items: center !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    background: #fff !important;
    border: 1px solid rgba(237, 240, 243, 0.95) !important;
    border-radius: 999px !important;
    box-shadow: 0 12px 26px rgba(17, 24, 39, 0.12) !important;
    color: #111827 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    flex: 0 0 34px !important;
    height: 34px !important;
    justify-content: center !important;
    line-height: 1 !important;
    margin: 0 !important;
    min-height: 34px !important;
    min-width: 34px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: relative !important;
    text-decoration: none !important;
    transform: none !important;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease !important;
    width: 34px !important;
}

.smartprice-product-actions .smartprice-home-cart-control:hover {
    background: var(--sp-orange, #ff7a1a) !important;
    border-color: var(--sp-orange, #ff7a1a) !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
}

.smartprice-product-actions .smartprice-home-cart-control::before,
.smartprice-product-actions .smartprice-home-cart-control::after {
    content: none !important;
    display: none !important;
}

.smartprice-product-actions .smartprice-home-cart-icon {
    align-items: center !important;
    display: inline-flex !important;
    height: 18px !important;
    justify-content: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 18px !important;
}

.smartprice-product-actions .smartprice-home-cart-icon svg {
    display: block !important;
    height: 18px !important;
    opacity: 1 !important;
    stroke: currentColor !important;
    visibility: visible !important;
    width: 18px !important;
}

.smartprice-product-actions .smartprice-home-cart-spinner {
    animation: smartpriceHomeCartSpin 0.72s linear infinite !important;
    border: 2px solid currentColor !important;
    border-radius: 999px !important;
    border-right-color: transparent !important;
    display: none !important;
    height: 18px !important;
    left: 50% !important;
    margin: -9px 0 0 -9px !important;
    opacity: 0 !important;
    position: absolute !important;
    top: 50% !important;
    visibility: hidden !important;
    width: 18px !important;
}

.smartprice-product-actions .smartprice-home-cart-control.smartprice-is-loading {
    background: var(--sp-orange, #ff7a1a) !important;
    border-color: var(--sp-orange, #ff7a1a) !important;
    color: #fff !important;
    pointer-events: none !important;
}

.smartprice-product-actions .smartprice-home-cart-control.smartprice-is-loading .smartprice-home-cart-icon {
    opacity: 0 !important;
    visibility: hidden !important;
}

.smartprice-product-actions .smartprice-home-cart-control.smartprice-is-loading .smartprice-home-cart-spinner {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

@media (max-width: 767px) {
    .smartprice-product-actions .smartprice-home-cart-control {
        flex-basis: 42px !important;
        height: 42px !important;
        min-height: 42px !important;
        min-width: 42px !important;
        width: 42px !important;
    }
}

/* Desktop homepage actions should appear like archive cards: no slide-in motion. */
@media (min-width: 768px) {
    .smartprice-home .product_home .smartprice-product-actions,
    body.smartprice-home .product_home .smartprice-product-actions {
        align-items: center !important;
        display: flex !important;
        gap: 8px !important;
        justify-content: center !important;
        left: 50% !important;
        opacity: 0 !important;
        pointer-events: none !important;
        position: absolute !important;
        right: auto !important;
        top: 82px !important;
        transform: translateX(-50%) !important;
        transition: opacity 0.18s ease, visibility 0.18s ease !important;
        visibility: hidden !important;
        width: max-content !important;
        z-index: 40 !important;
    }

    .smartprice-home .product_home:hover .smartprice-product-actions,
    .smartprice-home .product_home:focus-within .smartprice-product-actions,
    body.smartprice-home .product_home:hover .smartprice-product-actions,
    body.smartprice-home .product_home:focus-within .smartprice-product-actions {
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateX(-50%) !important;
        visibility: visible !important;
    }

    .smartprice-home .product_home:not(:hover):not(:focus-within) .smartprice-product-actions,
    body.smartprice-home .product_home:not(:hover):not(:focus-within) .smartprice-product-actions {
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateX(-50%) !important;
        visibility: hidden !important;
    }
}

/* Mobile product-card actions: center the icon group horizontally everywhere. */
@media (max-width: 767px) {
    body .smartprice-product-actions,
    body ul.products li.product .smartprice-product-actions,
    body .product_home .smartprice-product-actions,
    body .product-hover-style .smartprice-product-actions,
    body.smartprice-home .product_home .smartprice-product-actions,
    body.woocommerce-page ul.products li.product .smartprice-product-actions {
        align-items: center !important;
        display: flex !important;
        gap: 8px !important;
        justify-content: center !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: max-content !important;
    }

    body .smartprice-product-actions:hover,
    body ul.products li.product:hover .smartprice-product-actions,
    body .product_home:hover .smartprice-product-actions,
    body .product-hover-style:hover .smartprice-product-actions,
    body .product_home:focus-within .smartprice-product-actions,
    body .product-hover-style:focus-within .smartprice-product-actions {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}
