/* Single product — layout from design mockup */

.css-sp-thumbs::-webkit-scrollbar {
    height: 6px;
}

.css-sp-thumbs::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 999px;
}

.css-sp-crumb::-webkit-scrollbar {
    height: 4px;
}

.css-sp-crumb::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 999px;
}

.css-sp-tabs::-webkit-scrollbar,
.css-sp-variation-group--strip .css-sp-variation-track::-webkit-scrollbar {
    display: none;
}

/* --- Main --- */
.css-sp-main {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 16px 0 80px;
    background: #f3f3f3;
    overflow-x: hidden;
}

.css-sp-crumb {
    grid-column: 1 / -1;
    min-width: 0;
    margin: -8px 0 4px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0eef1;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.css-sp-crumb .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px 0;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    list-style: none;
}

.css-sp-crumb .breadcrumb-item {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    font-size: 13px;
    font-weight: 500;
    color: #6b686e;
    white-space: nowrap;
}

.css-sp-crumb .breadcrumb-item + .breadcrumb-item::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 9px;
    color: #c5c2c6;
    padding: 0 8px;
}

.css-sp-crumb .breadcrumb-item a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #454247;
    text-decoration: none;
    transition: color 0.15s ease;
}

.css-sp-crumb .breadcrumb-item a:hover {
    color: #ee1a19;
    text-decoration: none;
}

.css-sp-crumb .breadcrumb-item a .fa-home,
.css-sp-crumb .breadcrumb-item a .fas.fa-home {
    color: #ee1a19;
    font-size: 13px;
}

.css-sp-crumb .breadcrumb-item.active {
    max-width: min(420px, 100%);
    overflow: hidden;
    text-overflow: ellipsis;
    color: #1a1a1a;
    font-weight: 700;
}

.css-sp-rating-add,
.css-sp-rich-content a {
    color: #ee1a19;
    text-decoration: none;
}

.css-sp-rating-add:hover,
.css-sp-rich-content a:hover {
    text-decoration: underline;
}

/* --- Product grid --- */
.css-sp-top {
    display: grid;
    grid-template-columns: minmax(360px, 1.02fr) minmax(420px, 0.98fr);
    gap: 22px 24px;
    align-items: start;
    width: 100%;
    min-width: 0;
    padding: 24px;
    border: 1px solid #ecebed;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(42, 37, 43, 0.04);
}

.css-sp-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 18px;
    align-items: start;
    width: 100%;
    min-width: 0;
}

/* --- Gallery --- */
.css-sp-gallery-side {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 16px;
    min-width: 0;
}

.css-sp-gallery-inner {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.css-sp-gallery-photo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 430px;
    padding: 24px;
    border: 1px solid #f0eff1;
    border-radius: 18px;
    background: #fff;
}

.css-sp-gallery-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-decoration: none;
    cursor: zoom-in;
}

.css-sp-gallery-photo img {
    max-width: 100%;
    max-height: 370px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.css-sp-gallery-photo:hover img {
    transform: scale(1.04);
}

.css-sp-gallery-photo::after {
    content: '\f00e';
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 6px 16px rgba(42, 37, 43, 0.12);
    color: #68656a;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 13px;
    pointer-events: none;
}

.css-sp-gallery-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 38px;
    height: 38px;
    margin-top: -19px;
    padding: 0;
    border: 1px solid #ecebed;
    border-radius: 50%;
    background: #fff;
    color: #454247;
    cursor: pointer;
    font-size: 12px;
    box-shadow: 0 6px 16px rgba(42, 37, 43, 0.1);
}

.css-sp-gallery-arrow:hover,
.css-sp-carousel-btn:hover:not(:disabled) {
    border-color: #ee1a19;
    color: #ee1a19;
}

.css-sp-gallery-arrow-prev {
    left: 12px;
}

.css-sp-gallery-arrow-next {
    right: 12px;
}

.css-sp-photo-badges {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    gap: 6px;
    pointer-events: none;
}

.css-sp-thumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    overflow-x: auto;
    padding: 12px 0 0;
    scrollbar-width: thin;
}

.css-sp-thumb {
    flex: 0 0 58px;
    height: 58px;
    border: 1px solid #ecebed;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    padding: 5px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.css-sp-thumb:hover {
    border-color: #f5a5a5;
}

.css-sp-thumb.is-active {
    border-color: #ee1a19;
    box-shadow: 0 0 0 3px #fff1f1;
}

.css-sp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* --- Info --- */
.css-sp-info-side {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 8px;
}

.css-sp-info-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(148px, 168px);
    gap: 14px 16px;
    align-items: start;
    width: 100%;
    min-width: 0;
}

.css-sp-info-main {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 8px;
}

.css-sp-variations,
.css-sp-buy {
    width: 100%;
    min-width: 0;
    flex-shrink: 0;
}

.css-sp-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #8c898e;
}

.css-sp-meta-sep {
    width: 1px;
    height: 12px;
    background: #e2e0e3;
}

.css-sp-stock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f7f6f7;
    font-size: 12px;
    font-weight: 700;
}

.css-sp-stock-on {
    background: #ecfdf5;
    color: #16a34a;
}

.css-sp-stock-on .css-sp-stock-dot {
    background: #16a34a;
}

.css-sp-stock-off {
    background: #fef2f2;
    color: #b91c1c;
}

.css-sp-stock-off .css-sp-stock-dot {
    background: #b91c1c;
}

.css-sp-stock-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
}

.css-sp-meta-brand em,
.css-sp-meta-model em {
    font-style: normal;
    font-weight: 700;
    color: #ee1a19;
}

.css-sp-title {
    margin: 2px 0 0;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.4px;
    color: #302d32;
}

.css-sp-summary {
    margin: 4px 0 0;
    color: #68656a;
    font-size: 13px;
    line-height: 1.7;
}

.css-sp-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.css-sp-rating-count {
    font-size: 13px;
    color: #8c898e;
}

.css-sp-rating-avg {
    font-weight: 700;
    color: #302d32;
}

.css-sp-rating-avg:empty {
    display: none;
}

.css-sp-rating-add {
    font-size: 12px;
    font-weight: 600;
}

.css-sp-btn-buy:focus-visible,
.css-sp-btn-oneclick:focus-visible,
.css-sp-var:focus-visible,
.css-sp-gallery-arrow:focus-visible,
.css-sp-carousel-btn:focus-visible,
.css-sp-tabs .nav-link:focus-visible {
    outline: 2px solid #ee1a19;
    outline-offset: 2px;
}

.product-stars-container {
    display: inline-flex;
    gap: 2px;
    cursor: pointer;
}

.product-star {
    font-size: 16px;
    color: #ddd;
    cursor: pointer;
    user-select: none;
}

.product-star.active,
.product-star.hover,
.product-star.rated {
    color: #f5b301;
}

/* --- Variations --- */
.css-sp-variations {
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid #e7e5e9;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(42, 37, 43, 0.04);
}

.css-sp-variation-box-title {
    gap: 8px;
    color: #38353a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.css-sp-variation-box-title i {
    color: #ee1a19;
}

.css-sp-variation-group {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
}

.css-sp-variation-head-label {
    font-size: 12px;
    font-weight: 600;
    color: #454247;
}

.css-sp-variation-body {
    gap: 8px;
    min-width: 0;
}

.css-sp-variation-track {
    flex: 1;
    min-width: 0;
}

.css-sp-variation-group--strip .css-sp-variation-track {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.css-sp-var-list {
    flex-wrap: wrap;
    gap: 10px;
}

.css-sp-variation-group--strip .css-sp-var-list {
    flex-wrap: nowrap;
    width: max-content;
}

.css-sp-var {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    cursor: pointer;
    text-decoration: none;
}

.css-sp-var-media {
    position: relative;
    width: 48px;
    height: 48px;
    border: 2px solid #e3e6ea;
    border-radius: 9px;
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.css-sp-var-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3px;
}

.css-sp-var:hover .css-sp-var-media {
    border-color: #f0aaaa;
    box-shadow: 0 6px 14px rgba(42, 37, 43, 0.1);
    transform: translateY(-1px);
}

.css-sp-var.is-active .css-sp-var-media {
    border-color: #ee1a19;
}

.css-sp-var.is-disabled .css-sp-var-media,
.css-sp-var.is-out:hover .css-sp-var-media {
    transform: none;
}

.css-sp-var.is-out {
    opacity: 0.65;
}

.css-sp-var.is-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.css-sp-var-tip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    z-index: 5;
    display: none;
    width: 160px;
    padding: 6px 10px;
    border-radius: 8px;
    background: #302d32;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 8px 18px rgba(42, 37, 43, 0.18);
}

.css-sp-var-tip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border: 5px solid transparent;
    border-top-color: #302d32;
}

.css-sp-var:hover .css-sp-var-tip {
    display: block;
}

.css-sp-var-strike {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top left, transparent calc(50% - 1px), #bbb, transparent calc(50% + 1px));
    pointer-events: none;
}

.css-sp-variation-nav {
    flex-shrink: 0;
}

/* --- Price / buy --- */
.css-sp-buy {
    gap: 14px;
    width: 100%;
    margin-top: 4px;
    padding: 20px 22px;
    border: 1px solid #e7e5e9;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(42, 37, 43, 0.05);
    overflow: hidden;
    flex-shrink: 0;
}

.css-sp-price-line {
    gap: 4px;
    align-items: flex-start;
}

.css-sp-price-line .css-price-dual {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
}

.css-sp-price-line > .css-price-dual .css-price-dual-main,
.css-sp-mob-price > .css-price-dual .css-price-dual-main {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.9px;
    color: #ee1a19;
    line-height: 1.05;
}

.css-sp-price-line .css-price-dual-alt,
.css-sp-mob-price .css-price-dual-alt {
    font-size: 15px;
    font-weight: 600;
    color: #6b6b6b;
    display: inline;
    margin-left: 0;
}

.css-sp-price-old {
    position: relative;
    display: inline-block;
    margin: 0;
    line-height: 1.2;
}

.css-sp-price-line .css-sp-price-old small,
.css-sp-mob-price .css-sp-price-old small {
    font-weight: 700;
}

.css-sp-rel-old {
    color: #9a9a9a;
}

.css-sp-rel-old,
.css-sp-rel-old .css-price-dual,
.css-sp-rel-old .css-price-dual-main,
.css-sp-rel-old .css-price-dual-alt {
    text-decoration: line-through;
}

.css-sp-rel-old .css-price-dual-main {
    font-size: 15px;
    font-weight: 500;
    color: #9a9a9a;
    letter-spacing: 0;
    line-height: 1.2;
    text-decoration: line-through;
}

.css-sp-price-save {
    align-self: flex-start;
    margin-top: 8px;
    padding: 5px 11px;
    border: 1px solid #d5f2e3;
    border-radius: 999px;
    background: #ecfdf5;
    color: #15803d;
    font-size: 12px;
    font-weight: 700;
}

.css-sp-buy-head {
    display: grid;
    grid-template-columns: minmax(160px, 0.85fr) minmax(220px, 1.15fr);
    gap: 18px;
    align-items: center;
}

.css-sp-price-block {
    min-width: 0;
    flex-shrink: 0;
}

.css-sp-buy-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-width: 0;
}

.css-sp-buy-row .cart-qty-wrapper {
    flex: 0 0 auto;
}

.css-sp-buy-row .css-sp-btn-buy {
    flex: 1 1 auto;
    width: auto;
    min-width: 120px;
}

.css-sp-buy-actions {
    gap: 10px;
    min-width: 0;
    width: 100%;
}

.css-sp-main .cart-qty-wrapper {
    border: 1px solid #e2e0e3;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
}

.css-sp-main .cart-qty-btn {
    width: 36px !important;
    height: 48px !important;
    min-width: 36px;
    border: none;
    background: transparent;
    color: #333;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    padding: 0;
    z-index: 1;
}

.css-sp-main .cart-qty-btn:hover {
    background: #ee1a19;
    color: #fff;
}

.css-sp-main .cart-qty-btn:hover i {
    color: #fff;
}

.css-sp-main .cart-qty-input {
    width: 38px;
    height: 48px;
    border: none;
    border-left: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    background: #fff;
    outline: none;
    padding: 0;
}

.css-sp-btn-buy,
.css-sp-btn-oneclick,
.css-sp-rel-btn,
.css-sp-fast-order-submit {
    gap: 8px;
    border-radius: 9px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.css-sp-btn-buy,
.css-sp-fast-order-submit,
.css-sp-main #btn-add-cart-single {
    border: none;
    background: #ee1a19;
    background-image: none;
    color: #fff;
}

.css-sp-btn-buy {
    height: 48px;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 700;
    flex: 0 0 auto;
    min-width: 0;
    box-shadow: 0 8px 18px rgba(229, 35, 41, 0.18);
    transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.css-sp-btn-buy:hover {
    box-shadow: 0 10px 22px rgba(229, 35, 41, 0.26);
    transform: translateY(-1px);
}

.css-sp-btn-buy:active {
    transform: translateY(0);
}

.css-sp-btn-buy:hover,
.css-sp-fast-order-submit:hover,
.css-sp-main #btn-add-cart-single:hover {
    background: #d61413;
    background-image: none;
    color: #fff;
    text-decoration: none;
}

.css-sp-btn-buy:disabled,
.css-sp-btn-buy.is-disabled {
    width: 100%;
    background: #ccc;
    color: #666;
    cursor: not-allowed;
    box-shadow: none;
}

.css-sp-btn-oneclick {
    height: 44px;
    border: 1px solid #ee1a19;
    background: #fff;
    color: #ee1a19;
    font-size: 15px;
    font-weight: 700;
    transition: background 0.15s ease;
}

.css-sp-btn-oneclick:hover {
    background: #fff5f5;
}

.css-sp-buy-extra {
    gap: 10px 16px;
    font-size: 12px;
    padding: 12px 0 0;
    border-top: 1px solid #eeecef;
}

.css-sp-buy-extra--wish-only {
    justify-content: flex-end !important;
}

.css-sp-delivery-hint {
    gap: 6px;
    font-weight: 600;
    color: #68656a;
}

.css-sp-delivery-hint i {
    color: #ee1a19;
}

.css-sp-main .css-sp-buy-extra .css-sp-wish-link.wishlist-btn,
.css-sp-wish-link {
    position: static;
    gap: 6px;
    width: auto;
    height: auto;
    min-width: 0;
    border: none;
    border-radius: 0;
    background: none;
    box-shadow: none;
    padding: 0;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    cursor: pointer;
    transform: none;
}

.css-sp-main .css-sp-buy-extra .css-sp-wish-link.wishlist-btn:hover,
.css-sp-wish-link:hover {
    background: none;
    box-shadow: none;
    color: #ee1a19;
    transform: none;
}

.css-sp-main .css-sp-buy-extra .css-sp-wish-link.wishlist-btn i,
.css-sp-wish-link i {
    color: #ee1a19;
    font-size: 14px;
}

.css-sp-wish-link.active i {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.css-sp-fast-order {
    display: none;
    padding: 16px 18px;
    border: 1px solid #f2d6d6;
    border-radius: 14px;
    background: #fffafa;
    box-shadow: 0 8px 20px rgba(238, 26, 25, 0.06);
}

.css-sp-fast-order-head {
    gap: 10px;
    margin-bottom: 12px;
}

.css-sp-fast-order-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #ee1a19;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
}

.css-sp-fast-order-title {
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1.2;
}

.css-sp-fast-order-sub {
    line-height: 1.3;
}

.css-sp-fast-order-field {
    margin-bottom: 10px;
}

.css-sp-fast-order-addon {
    width: 40px;
    justify-content: center;
    border: 1px solid #ecdada;
    border-right: none;
    border-radius: 9px 0 0 9px;
    background: #fff;
    color: #ee1a19;
    font-size: 13px;
}

.css-sp-fast-order-input {
    height: 44px;
    border: 1px solid #ecdada;
    border-radius: 0 9px 9px 0;
    padding: 0 12px;
    font-size: 14px;
    background: #fff;
}

.css-sp-fast-order-input:focus {
    border-color: #ee1a19;
    box-shadow: none;
}

.css-sp-fast-order-submit {
    height: 46px;
    font-size: 15px;
    box-shadow: 0 8px 18px rgba(229, 35, 41, 0.18);
}

.css-sp-fast-order-note {
    gap: 6px;
    margin-top: 10px;
}

.css-sp-fast-order-note i {
    color: #9a9a9a;
}

/* --- Trust beside product --- */
.css-sp-trust-side {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
    padding-left: 14px;
    border-left: 1px solid #ecebed;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    align-items: stretch;
}

.css-sp-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.css-sp-trust-ico {
    flex-shrink: 0;
    width: auto;
    height: auto;
    margin-top: 2px;
    border-radius: 0;
    background: transparent;
    color: #ee1a19;
    font-size: 13px;
    line-height: 1;
    text-align: left;
}

.css-sp-trust-copy {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.css-sp-trust-copy strong {
    font-size: 12px;
    font-weight: 700;
    color: #2a272c;
    line-height: 1.3;
    letter-spacing: 0;
}

.css-sp-trust-copy em {
    font-style: normal;
    font-size: 11px;
    font-weight: 500;
    color: #8a868c;
    line-height: 1.3;
}

/* --- Bottom / tabs --- */
.css-sp-details {
    min-width: 0;
}

.css-sp-tabs {
    display: flex;
    gap: 8px;
    margin: 0 0 18px;
    padding: 10px;
    list-style: none;
    border: 1px solid #ecebed;
    border-radius: 14px;
    background: #fff;
    overflow-x: auto;
    scrollbar-width: none;
}

.css-sp-tabs .nav-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding: 9px 14px;
    margin: 0;
    border: none;
    border-radius: 9px;
    background: transparent;
    color: #68656a;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.css-sp-tabs .nav-link:hover {
    background: #f7f6f7;
    color: #302d32;
    text-decoration: none;
}

.css-sp-tabs .nav-link.active,
.css-sp-tabs .nav-link.active:hover {
    background: #fff1f1;
    color: #ee1a19;
}

.css-sp-tab-content {
    border: 1px solid #ecebed;
    border-radius: 14px;
    background: #fff;
    padding: 28px;
}

.css-sp-tab-body {
    padding: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #444;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.css-sp-mobile-tab {
    display: none;
}

.css-sp-section-heading span {
    display: block;
    margin-bottom: 5px;
    color: #ee1a19;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.css-sp-section-heading h2 {
    color: #302d32;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.35px;
    line-height: 1.25;
}

.css-sp-section-heading .css-sp-section-eyebrow {
    display: block;
    margin: 0 0 5px;
    padding: 0;
    border: none;
    background: none;
    color: #ee1a19;
    font-family: inherit;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.11em;
    line-height: 1.3;
    text-transform: uppercase;
}

.css-sp-section-heading--inline {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
}

.css-sp-section-heading--inline .css-sp-section-eyebrow {
    display: inline;
    margin: 0;
}

.css-sp-overview {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 38px;
    align-items: start;
}

.css-sp-overview > .css-sp-desc-body:only-child {
    grid-column: 1 / -1;
}

.css-sp-benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.css-sp-benefit-card {
    min-height: 88px;
    padding: 14px;
    border-radius: 11px;
    background: #f7f6f7;
}

.css-sp-benefit-card i {
    margin-bottom: 10px;
    color: #ee1a19;
    font-size: 15px;
}

.css-sp-benefit-card strong {
    color: #454247;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.css-sp-desc-body {
    font-size: 15px;
    line-height: 1.8;
    color: #68656a;
}

.css-sp-rich-content p {
    margin: 0 0 14px;
}

.css-sp-rich-content p:last-child {
    margin-bottom: 0;
}

.css-sp-rich-content h1,
.css-sp-rich-content h2,
.css-sp-rich-content h3,
.css-sp-rich-content h4 {
    margin: 20px 0 10px;
    font-weight: 700;
    line-height: 1.35;
    color: #1a1a1a;
}

.css-sp-rich-content h1:first-child,
.css-sp-rich-content h2:first-child,
.css-sp-rich-content h3:first-child,
.css-sp-rich-content h4:first-child {
    margin-top: 0;
}

.css-sp-rich-content h1 {
    font-size: 22px;
}

.css-sp-rich-content h2 {
    font-size: 18px;
}

.css-sp-rich-content h3,
.css-sp-rich-content h4 {
    font-size: 16px;
}

.css-sp-rich-content strong,
.css-sp-rich-content b {
    font-weight: 700;
    color: #1a1a1a;
}

.css-sp-rich-content ul,
.css-sp-rich-content ol {
    margin: 8px 0 16px;
}

.css-sp-rich-content ul {
    padding: 0;
    list-style: none;
}

.css-sp-rich-content ol {
    padding: 0 0 0 22px;
}

.css-sp-rich-content li {
    position: relative;
    margin-bottom: 8px;
}

.css-sp-rich-content ul li {
    padding-left: 22px;
}

.css-sp-rich-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: #ee1a19;
    font-size: 12px;
}

.css-sp-rich-content hr {
    margin: 20px 0;
    border: none;
    border-top: 1px solid #e8e8e8;
}

.css-sp-tab-body img,
.css-sp-tab-body video,
.css-sp-tab-body iframe,
.css-sp-rich-content img,
.css-sp-rich-content video,
.css-sp-rich-content iframe {
    max-width: 100% !important;
    height: auto !important;
}

.css-sp-tab-body table {
    width: 100% !important;
    max-width: 100%;
}

.css-sp-chars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
}

.css-sp-chars-row {
    display: grid;
    grid-template-columns: 43% 1fr;
    gap: 0;
    padding: 0;
    font-size: 14px;
    color: #777479;
    border-radius: 8px;
}

.css-sp-chars-row:nth-child(odd) {
    background: #faf9fa;
}

.css-sp-chars-label {
    padding: 12px 18px 12px 14px;
    border-right: 1px solid #e6e3e7;
    color: #454247;
}

.css-sp-chars-value {
    padding: 12px 14px 12px 18px;
    color: #68656a;
}



/* --- Reviews --- */
.css-sp-reviews {
    gap: 22px;
}

.css-sp-reviews-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.css-sp-reviews-summary {
    gap: 24px;
    min-width: 0;
    padding: 20px;
    border-radius: 12px;
    background: #f7f6f7;
}

.css-sp-reviews-bars {
    min-width: 0;
}

.css-sp-reviews-avg strong {
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1.5px;
    color: #302d32;
}

.css-sp-reviews-avg span,
.css-sp-reviews-total {
    margin: 8px 0 0;
    font-size: 12px;
    color: #8f8c91;
}

.css-sp-reviews-bar-row {
    display: grid;
    grid-template-columns: 78px 1fr 36px;
    gap: 8px;
    align-items: center;
    margin: 0 0 8px;
    padding: 0;
    font-size: 12px;
    color: #8c898e;
    cursor: pointer;
}

.css-sp-reviews-bar-row:last-child {
    margin-bottom: 0;
}

.css-sp-reviews-bar-row:hover {
    color: #302d32;
}

.css-sp-reviews-bar {
    height: 7px;
    background: #e7e5e8;
    border-radius: 999px;
}

.css-sp-reviews-bar-fill {
    height: 100%;
    background: #f2ae18;
}

.css-sp-reviews-bar-row em {
    font-style: normal;
    text-align: right;
    color: #8c898e;
}

.css-sp-reviews-vote {
    gap: 5px;
    padding: 20px;
    border: 1px solid #ecebed;
    border-radius: 12px;
    background: #fff;
}

.css-sp-reviews-vote strong {
    font-size: 15px;
    color: #302d32;
}

.css-sp-reviews-vote-stars {
    gap: 6px;
}

.css-sp-reviews-vote-stars .product-star {
    font-size: 28px;
}

.css-sp-reviews-toolbar {
    gap: 10px;
}

.css-sp-reviews-select {
    height: 38px;
    padding: 0 12px;
    border: 1px solid #ecebed;
    border-radius: 9px;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
    color: #454247;
}

.css-sp-review-item {
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid #efedef;
}

.css-sp-review-item:first-child {
    border-top: none;
    padding-top: 0;
}

.css-sp-review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff1f1;
    color: #ee1a19;
    font-size: 14px;
    font-weight: 700;
}

.css-sp-review-main {
    min-width: 0;
}

.css-sp-review-meta {
    gap: 8px 12px;
}

.css-sp-review-meta strong {
    font-size: 13px;
    color: #454247;
}

.css-sp-review-meta span {
    font-size: 12px;
    color: #969398;
}

.css-sp-review-title {
    font-size: 15px;
    color: #38353a;
}

.css-sp-review-stars {
    gap: 2px;
    color: #f2ae18;
    font-size: 14px;
}

.css-sp-is-hidden {
    display: none;
}

/* --- Related --- */
.css-sp-related {
    border: 1px solid #ecebed;
    border-radius: 14px;
    padding: 28px;
    min-width: 0;
}

.css-sp-related-head {
    gap: 16px;
}

.css-sp-related-label {
    gap: 8px;
    color: #ee1a19;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.25;
}

.css-sp-related-label i {
    font-size: 16px;
}

.css-sp-carousel-nav {
    gap: 6px;
}

.css-sp-carousel-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ecebed;
    border-radius: 50%;
    background: #fff;
    color: #454247;
    cursor: pointer;
    font-size: 11px;
    padding: 0;
}

.css-sp-carousel-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.css-sp-related-slider-wrap {
    min-width: 0;
}

.css-sp-related-slider {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
}

.css-rel-carousel .css-sp-related-slider {
    display: block;
}

.css-rel-carousel .css-sp-related-slider .slick-list {
    overflow: hidden;
    margin: 0 -5px;
}

.css-rel-carousel .css-sp-related-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.css-rel-carousel .css-sp-related-slider .slick-slide {
    padding: 0 5px;
    height: auto;
}

.css-rel-carousel .css-sp-related-slider .slick-slide > div {
    height: 100%;
}

.css-rel-carousel .css-sp-related-slider .slick-arrow {
    display: none !important;
}

.css-sp-rel-item {
    padding: 14px 12px;
    border: 1px solid #ecebed;
    border-radius: 12px;
    background: #fff;
    min-width: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.css-sp-rel-item:hover {
    border-color: #f3bcbc;
    box-shadow: 0 12px 26px rgba(42, 37, 43, 0.1);
    transform: translateY(-3px);
}

.css-sp-rel-link {
    color: #1a1a1a;
}

.css-sp-rel-media {
    height: 118px;
    margin-bottom: 12px;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

.css-sp-rel-item img {
    max-width: 100%;
    max-height: 118px;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.css-sp-rel-item:hover img {
    transform: scale(1.06);
}

.css-sp-rel-name {
    min-height: 36px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.css-sp-rel-item:hover .css-sp-rel-name {
    color: #ee1a19;
}

.css-sp-rel-price-row {
    min-height: 26px;
    gap: 8px;
    margin-bottom: 12px;
    color: #ee1a19;
    font-weight: 800;
    font-size: 16px;
}

.css-sp-rel-price-row > .css-price-dual .css-price-dual-main {
    font-size: 16px;
    font-weight: 800;
    color: #ee1a19;
}

.css-sp-rel-out {
    padding: 3px 9px;
    border-radius: 999px;
    background: #f7f6f7;
}

.css-sp-rel-btn {
    height: 38px;
    font-size: 12px;
    border: 1px solid #ee1a19;
    border-radius: 9px;
    background: #fff;
    color: #ee1a19;
}

.css-sp-rel-item:hover .css-sp-rel-btn,
.css-sp-rel-btn:hover {
    background: #ee1a19;
    color: #fff;
    text-decoration: none;
}

.css-sp-rel-badges {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    gap: 4px;
    pointer-events: none;
}

.css-sp-rel-badges .badge {
    font-size: 11px;
}

/* --- Delivery tab --- */
.css-sp-delivery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    min-width: 0;
    align-items: start;
}

.css-sp-delivery-col-title {
    gap: 8px;
    font-size: 15px;
    color: #302d32;
}

.css-sp-delivery-col-title i {
    color: #ee1a19;
    font-size: 15px;
}

.css-sp-delivery-row {
    gap: 12px;
    padding: 12px 0;
}

.css-sp-delivery-row + .css-sp-delivery-row {
    border-top: 1px solid #efedef;
}

.css-sp-delivery-icon {
    flex: 0 0 27px;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: #fff1f1;
    color: #ee1a19;
    font-size: 12px;
}

.css-sp-delivery-row-copy {
    gap: 3px;
    min-width: 0;
}

.css-sp-delivery-row-copy strong {
    font-size: 13px;
    font-weight: 700;
    color: #4a474c;
    line-height: 1.35;
}

.css-sp-delivery-row-copy em {
    font-style: normal;
    font-size: 12px;
    font-weight: 400;
    color: #8c898e;
    line-height: 1.5;
}

.css-sp-delivery-pays {
    gap: 8px;
    margin-top: 6px;
    font-size: 22px;
    color: #1a1a1a;
}

.css-sp-delivery-col-aside {
    background: #f7f6f7;
    border-radius: 12px;
    padding: 16px 16px 8px;
}

.css-sp-delivery-col-aside .css-sp-delivery-row {
    padding: 10px 0;
}

.css-sp-delivery-col-aside .css-sp-delivery-row + .css-sp-delivery-row {
    border-top: none;
}

/* --- Mobile bar --- */
.css-sp-mob-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px 12px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #e8e8e8;
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.1);
    gap: 12px;
    z-index: 10050;
}

.css-sp-mob-price {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 44%;
}

.css-sp-mob-bar .css-sp-mob-price > .css-price-dual {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 6px;
}

.css-sp-mob-bar .css-sp-mob-price > .css-price-dual .css-price-dual-main {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.4px;
    line-height: 1.1;
    color: #ee1a19;
}

.css-sp-mob-bar .css-sp-mob-price > .css-price-dual .css-price-dual-alt {
    font-size: 11px;
    font-weight: 600;
    color: #6b6b6b;
    display: inline;
}

.css-sp-mob-bar .css-sp-price-old {
    font-size: 13px;
    line-height: 1.1;
}

.css-sp-mob-bar .css-sp-btn-buy {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    height: 46px;
    padding: 0 14px;
    font-size: 14px;
    box-shadow: none;
    transform: none;
}

.css-sp-mob-bar .css-sp-btn-buy:hover,
.css-sp-mob-bar .css-sp-btn-buy:active {
    transform: none;
    box-shadow: none;
}
