.single-product .sp-hero,
.single-product .single-product__wrapper.sp-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas: "gallery buy";
    gap: 24px;
    align-items: start;
    margin-top: 8px;
    width: 100%;
    box-sizing: border-box;
}

.single-product .sp-hero__product-title--mobile {
    display: none;
}

.single-product .sp-buybox .sp-hero__product-title--desktop {
    margin: 0 0 8px;
    word-break: break-word;
}

.single-product .sp-hero > .sp-hero__col {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.single-product .sp-hero__col--gallery {
    grid-area: gallery;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: clip;
}

.single-product .sp-hero__col--buy {
    grid-area: buy;
    overflow: visible;
}

.single-product .sp-under-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 100%;
    align-items: stretch;
    box-sizing: border-box;
}

.single-product .sp-under-gallery__card,
.single-product .sp-under-gallery__actions {
    min-width: 0;
    height: 100%;
    box-sizing: border-box;
}

.single-product .sp-under-gallery__card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    padding: 18px 20px;
}

.single-product .sp-under-gallery .sp-chars {
    margin: 0;
}

.single-product .sp-under-gallery__card--full {
    grid-column: 1 / -1;
    width: 100%;
}

.single-product .sp-buybox__notice {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 16px;
    padding: 14px 16px;
    background: #f8fafc;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-sizing: border-box;
}

.single-product .sp-buybox__notice .sp-notice__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-top: 0;
    border-radius: 10px;
    background: rgba(26, 111, 212, 0.1);
    color: #1a6fd4;
}

.single-product .sp-buybox__notice .sp-notice__icon svg {
    display: block;
}

.single-product .sp-buybox__notice .sp-notice__text p {
    margin: 0 0 8px;
    font-size: 13px;
    line-height: 1.45;
    color: #334155;
    font-weight: 400;
    text-align: left;
}

.single-product .sp-buybox__notice .sp-notice__text p:last-child {
    margin-bottom: 0;
}

.single-product .sp-under-gallery__actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.single-product .sp-under-gallery__actions .sp-action-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 12px 16px;
    border: 1px solid #0d5c36;
    border-radius: 10px;
    background: linear-gradient(180deg, #0f7044 0%, #0b5a36 100%);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    color: #fff;
    text-align: left;
    cursor: pointer;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(11, 90, 54, 0.25);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.single-product .sp-under-gallery__actions .sp-action-btn:hover {
    border-color: #0a4d2e;
    background: linear-gradient(180deg, #12824f 0%, #0d6b42 100%);
    box-shadow: 0 4px 14px rgba(11, 90, 54, 0.35);
    transform: translateY(-1px);
}

.single-product .sp-under-gallery__actions .sp-action-btn__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.single-product .sp-under-gallery__actions .sp-action-btn__icon svg {
    display: block;
}

.single-product .sp-under-gallery__actions .sp-action-btn__text {
    flex: 1;
    min-width: 0;
}

.single-product .sp-quick-order {
    display: flex;
    flex-direction: column;
}

.single-product .sp-quick-order__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: #0f172a;
    text-transform: none;
    margin: 0 0 16px;
    padding: 0;
}

.single-product .sp-quick-order__title-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(145deg, #fff0e6 0%, #ffd9bf 100%);
    color: #e86a22;
    box-shadow: 0 1px 4px rgba(255, 122, 47, 0.2);
}

.single-product .sp-quick-order__title-icon svg {
    display: block;
}

.single-product .sp-quick-order .wpcf7 {
    margin: 0;
    padding: 0;
}

.single-product .sp-quick-order .wpcf7-form {
    margin: 0;
}

.single-product .sp-quick-order .single-product__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.single-product .sp-quick-order .single-product__form .phone,
.single-product .sp-quick-order .single-product__form .submit {
    margin: 0;
}

.single-product .sp-quick-order .wpcf7-form p {
    margin: 0;
}

.single-product .sp-quick-order .wpcf7-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.single-product .sp-quick-order .wpcf7-form input[type="text"],
.single-product .sp-quick-order .wpcf7-form input[type="tel"],
.single-product .sp-quick-order .wpcf7-form input[type="email"] {
    width: 100%;
    box-sizing: border-box;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    color: #333;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.single-product .sp-quick-order .wpcf7-form input[type="text"]:focus,
.single-product .sp-quick-order .wpcf7-form input[type="tel"]:focus,
.single-product .sp-quick-order .wpcf7-form input[type="email"]:focus {
    outline: none;
    border-color: #1a6fd4;
    background: #fff;
}

.single-product .sp-quick-order .wpcf7-form-control.wpcf7-not-valid {
    border-color: #dc2626;
    background: #fff5f5;
}

.single-product .sp-quick-order .wpcf7-not-valid-tip {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.35;
    color: #dc2626;
    font-weight: 500;
}

.single-product .sp-quick-order .wpcf7-form input[type="submit"],
.single-product .sp-quick-order .wpcf7-submit {
    width: 100%;
    border: none;
    border-radius: 10px;
    background: #1a6fd4;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    height: 44px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.single-product .sp-quick-order .wpcf7-form input[type="submit"]:hover,
.single-product .sp-quick-order .wpcf7-submit:hover {
    background: #1558a8;
}

.single-product .sp-quick-order .wpcf7-spinner {
    display: none;
}

.single-product .sp-quick-order .wpcf7-response-output {
    margin: 14px 0 0;
    padding: 12px 14px;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 500;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    background: #f8fafc;
    color: #334155;
}

.single-product .sp-quick-order .wpcf7 form.sent .wpcf7-response-output,
.single-product .sp-quick-order .wpcf7-response-output.wpcf7-mail-sent-ok {
    background: #ecfdf5;
    border-color: #6ee7b7;
    color: #065f46;
}

.single-product .sp-quick-order .wpcf7 form.invalid .wpcf7-response-output,
.single-product .sp-quick-order .wpcf7 form.failed .wpcf7-response-output,
.single-product .sp-quick-order .wpcf7 form.aborted .wpcf7-response-output,
.single-product .sp-quick-order .wpcf7-response-output.wpcf7-validation-errors,
.single-product .sp-quick-order .wpcf7-response-output.wpcf7-mail-sent-ng,
.single-product .sp-quick-order .wpcf7-response-output.wpcf7-spam-blocked {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #991b1b;
}

.single-product .sp-quick-order .screen-reader-response {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.single-product .sp-quick-order .hidden-fields-container,
.single-product .sp-quick-order #altEmail_container,
.single-product .sp-quick-order .wpa_hidden_field {
    display: none !important;
}

.single-product .sp-quick-order input[type="submit"]:not(:first-of-type),
.single-product .sp-quick-order .submit .wpcf7-submit ~ .wpcf7-submit,
.single-product .sp-quick-order button.wpcf7-submit {
    display: none !important;
}

.single-product .sp-quick-order .submit input.wpcf7-submit {
    display: block !important;
}

.single-product h1.product_title {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 700;
    line-height: 1.25;
    color: #0f172a;
    text-transform: none;
    margin: 0 0 4px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.single-product .sp-gallery,
.single-product .single-product__image {
    width: 100%;
    max-width: 100%;
    margin: 0 0 0;
    order: unset;
    float: none;
    box-sizing: border-box;
}

.single-product .sp-gallery {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 20px;
    position: relative;
    isolation: isolate;
}

.single-product .sp-gallery__toolbar {
    position: absolute;
    top: 35px;
    right: 35px;
    z-index: 10;
    display: flex;
    gap: 8px;
}

.single-product .sp-gallery__layout {
    display: flex;
    gap: 16px;
    align-items: stretch;
    min-width: 0;
    max-width: 100%;
}

.single-product .swiper-container,
.single-product .swiper {
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.single-product .sp-gallery__thumbs {
    flex: 0 0 76px;
    min-width: 76px;
}

.single-product .thumb-slider {
    height: 420px;
    max-height: 55vh;
    overflow: hidden;
}

.single-product .thumb-slider .swiper-slide {
    width: 76px;
    height: 76px;
    max-width: 76px;
    max-height: 76px;
    border-radius: 10px;
    border: 2px solid transparent;
    background: #f8fafc;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.single-product .thumb-slider .swiper-slide-thumb-active {
    border-color: #1a6fd4;
    box-shadow: 0 0 0 1px #1a6fd4;
}

.single-product .thumb-slider img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
    box-sizing: border-box;
}

.single-product .sp-gallery__stage {
    flex: 1;
    min-width: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.single-product .sp-gallery__nav {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

.single-product .sp-gallery__nav .swiper-button-prev,
.single-product .sp-gallery__nav .swiper-button-next {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    pointer-events: auto;
}

.single-product .sp-gallery__nav .swiper-button-prev {
    left: 8px;
}

.single-product .sp-gallery__nav .swiper-button-next {
    right: 8px;
}

.single-product .sp-gallery__stage .main-slider {
    flex: 1;
    width: 100%;
}

.single-product .main-slider {
    background: #f5f5f5;
    border-radius: 20px;
    overflow: hidden;
    min-height: 380px;
}

.single-product .main-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    background: transparent;
    border-radius: 0;
    min-height: 380px;
    box-sizing: border-box;
}

.single-product .main-slider img {
    max-height: 340px;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.single-product .sp-gallery__nav .swiper-button-prev,
.single-product .sp-gallery__nav .swiper-button-next {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    color: #0f172a;
}

.single-product .sp-gallery__nav .swiper-button-prev::after,
.single-product .sp-gallery__nav .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
}

.single-product .sp-buybox,
.single-product .single-product__summary {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    order: unset;
    box-sizing: border-box;
}

.single-product .sp-hero__col--buy {
    position: sticky;
    top: 96px;
    align-self: start;
    z-index: 2;
}

.single-product .sp-buybox__card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 24px;
    position: static;
}

.single-product .sp-buybox__card .grouped-products-selector {
    margin-bottom: 12px;
}

.single-product .sp-meta {
    display: block;
    margin-bottom: 12px;
}

.single-product .sp-meta__sku {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    max-width: 100%;
    padding: 5px 12px;
    background: #f5f5f5;
    border-radius: 8px;
    border: 1px solid #e4e4e4;
    font-size: 13px;
    line-height: 1.2;
}

.single-product .sp-meta__label {
    color: #6b7280;
    font-weight: 600;
}

.single-product .sp-meta__sku .sku {
    color: #111;
    font-weight: 700;
}

.single-product .sp-purchase {
    margin: 16px 0 20px;
    padding: 20px 0 0;
    border-top: 1px solid #e5e5e5;
}

.single-product .sp-purchase .single-product-price {
    margin-top: 0;
}

.single-product .sp-purchase .custom_cart {
    display: block;
    margin-top: 4px;
}

.single-product .sp-purchase .quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.single-product .sp-purchase .single_add_to_cart_button {
    width: 100%;
}

.single-product .sp-gallery {
    overflow: hidden;
}

.single-product .sp-buybox__card {
    overflow: visible;
}

.single-product .grouped-products-selector {
    margin: 0 0 16px;
    padding: 0;
    max-width: 100%;
    overflow: visible;
}

.single-product .grouped-products-selector__title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 10px;
}

.single-product .grouped-products-selector__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 4px;
    margin: -4px;
}

.single-product .grouped-products-selector__item {
    display: block;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    min-width: 36px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 50%;
    background: #e8e8e8;
    overflow: hidden;
    box-sizing: border-box;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.single-product .grouped-products-selector__item:hover {
    border-color: #1a6fd4;
    transform: none;
    box-shadow: none;
}

.single-product .grouped-products-selector__item--active {
    border-color: #111;
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #111;
}

.single-product .grouped-products-selector__item--active::after {
    display: none;
}

.single-product .grouped-products-selector__item-content {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.single-product .grouped-products-selector__item-image,
.single-product .grouped-products-selector__item-color {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    overflow: hidden;
    line-height: 0;
}

.single-product .grouped-products-selector__item-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.single-product .grouped-products-selector__item-color {
    box-sizing: border-box;
}

.single-product .grouped-products-selector__item-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    color: #555;
    text-align: center;
    border-radius: 50%;
    background: #f0f0f0;
}

.single-product .sp-chars {
    margin-bottom: 8px;
}

.single-product .sp-chars__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px;
}

.single-product .sp-chars__title-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(145deg, #e8f2fc 0%, #d4e8f9 100%);
    color: #1a6fd4;
    box-shadow: 0 1px 4px rgba(26, 111, 212, 0.12);
}

.single-product .sp-chars__title-icon svg {
    display: block;
}

.single-product .sp-chars__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.single-product .sp-chars__row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px dotted #e5e5e5;
}

.single-product .sp-chars__row:last-child {
    border-bottom: none;
}

.single-product .sp-chars__name {
    color: #6b7280;
    flex: 1;
}

.single-product .sp-chars__value {
    color: #0f172a;
    font-weight: 500;
    text-align: right;
    max-width: 55%;
}

.single-product .sp-btn-article {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #1a6fd4;
    background: rgba(26, 111, 212, 0.08);
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s;
}

.single-product .sp-btn-article:hover {
    background: rgba(26, 111, 212, 0.15);
    color: #1257a8;
}

.single-product .single-product__pricenactions,
.single-product__pricenactions {
    width: 100%;
    max-width: 100%;
    margin: 0;
    margin-left: 0;
    order: unset;
    box-sizing: border-box;
    margin-top: 20px;
}

.single-product__pricenactions-wrapper {
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    background: transparent;
}

.single-product .single-product-price {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 8px;
}

.single-product .single-product-price .woocommerce-Price-amount {
    color: inherit;
}

.single-product .quantity-wrapper {
    margin-bottom: 14px;
}

.single-product .quantity {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 12px;
    padding: 8px 12px;
    border: 1px solid #e5e5e5;
}

.single-product .quantity .qty-minus,
.single-product .quantity .qty-plus {
    width: 32px;
    height: 32px;
    border: none;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.single-product .quantity .qty-minus {
    background-image: url(../images/icons/qnty-minus.svg);
}

.single-product .quantity .qty-plus {
    background-image: url(../images/icons/qnty-plus.svg);
}

.single-product .quantity input {
    background: transparent;
    font-size: 16px;
    font-weight: 700;
    width: 48px;
    border: none;
    text-align: center;
}

.single-product .action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    text-align: left;
    padding: 12px 0;
    margin: 0;
    background: none;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 0;
    color: #1a6fd4;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}

.single-product .action-btn img {
    flex-shrink: 0;
    opacity: 0.85;
}

.single-product .action-btn:last-of-type {
    border-bottom: none;
}

.single-product__pricenactions .wpcf7-form input[type="text"],
.single-product__pricenactions .wpcf7-form input[type="tel"],
.single-product__pricenactions .wpcf7-form input[type="email"] {
    width: 100%;
    box-sizing: border-box;
    background: #f1f5f9;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    margin-bottom: 10px;
}

.single-product__pricenactions .wpcf7-form input[type="submit"],
.single-product__pricenactions .wpcf7-submit {
    width: 100%;
    border: none;
    border-radius: 10px;
    background: #1a6fd4;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    height: 44px;
    cursor: pointer;
}

.single-product__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 32px 0 40px;
    padding: 0;
}

.single-product .sp-service-card {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items: start;
    background: #fff;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e5e5;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.single-product .sp-service-card:hover {
    border-color: #ffc9a8;
    box-shadow: 0 8px 24px rgba(255, 122, 47, 0.15);
    transform: translateY(-2px);
}

.single-product .sp-service-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-product .sp-service-card__icon--blue {
    background: rgba(26, 111, 212, 0.12);
}

.single-product .sp-service-card__icon--orange {
    background: rgba(255, 122, 47, 0.12);
}

.single-product .sp-service-card__icon--green {
    background: rgba(34, 160, 107, 0.12);
}

.single-product .sp-service-card__icon--violet {
    background: rgba(139, 92, 246, 0.12);
}

.single-product .sp-service-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.single-product .sp-service-card__body h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px;
    padding: 0;
}

.single-product .sp-service-card__body p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.single-product .sp-service-card__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    padding: 9px 18px;
    border: none;
    border-radius: 64px;
    background: #ff7a2f;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    box-shadow: 0 2px 10px rgba(255, 122, 47, 0.35);
}

.single-product .sp-service-card__more:hover {
    background: #e86a22;
    box-shadow: 0 4px 14px rgba(255, 122, 47, 0.45);
    transform: translateY(-1px);
}

.single-product__tabs.sp-tabs {
    margin: 0 0 40px;
    padding: 20px 20px 24px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

.single-product .tabs-nav.sp-tabs__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.single-product .tabs-nav .tab-link {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 64px;
    margin: 0;
    padding: 12px 14px;
    border: 1px solid transparent;
    border-radius: 14px;
    background: #f8fafc;
    color: #64748b;
    text-align: left;
    cursor: pointer;
    box-sizing: border-box;
    transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.single-product .tabs-nav .tab-link:hover {
    color: #334155;
}

.single-product .tabs-nav .tab-link.active {
    background: #fff;
    border: 1px solid rgba(26, 111, 212, 0.28);
    color: #0f172a;
    box-shadow: 0 4px 14px rgba(26, 111, 212, 0.1);
}

.single-product .sp-tabs__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    color: #64748b;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.single-product .sp-tabs__icon--specs {
    background: linear-gradient(145deg, rgba(26, 111, 212, 0.14) 0%, rgba(26, 111, 212, 0.06) 100%);
    color: #1a6fd4;
}

.single-product .sp-tabs__icon--info {
    background: linear-gradient(145deg, rgba(255, 122, 47, 0.16) 0%, rgba(255, 122, 47, 0.06) 100%);
    color: #e86a22;
}

.single-product .tabs-nav .tab-link.active .sp-tabs__icon--specs {
    background: linear-gradient(145deg, #1a6fd4 0%, #3d8ee8 100%);
    color: #fff;
    box-shadow: 0 6px 16px rgba(26, 111, 212, 0.35);
}

.single-product .tabs-nav .tab-link.active .sp-tabs__icon--info {
    background: linear-gradient(145deg, #ff7a2f 0%, #ff9a5c 100%);
    color: #fff;
    box-shadow: 0 6px 16px rgba(255, 122, 47, 0.35);
}

.single-product .sp-tabs__icon svg {
    display: block;
}

.single-product .sp-tabs__label {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.single-product .sp-tabs__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    color: inherit;
}

.single-product .sp-tabs__desc {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    color: #94a3b8;
}

.single-product .tabs-nav .tab-link.active .sp-tabs__desc {
    color: #64748b;
}

.single-product .sp-tabs__body {
    padding: 0;
    box-sizing: border-box;
}

.single-product .tabs-content .tab.sp-tabs__panel {
    display: none;
    animation: sp-tabs-fade 0.35s ease;
}

.single-product .tabs-content .tab.sp-tabs__panel.active {
    display: block;
}

@keyframes sp-tabs-fade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.single-product .tab-columns.sp-tabs__attrs {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 0;
}

.single-product .tab-columns .tab-column {
    flex: 1 1 280px;
    min-width: 0;
    padding: 4px 0;
}

.single-product .tab-columns h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #1a6fd4;
    margin: 0 0 14px;
    padding: 0 0 10px;
    background: none;
    border: none;
    border-bottom: 2px solid rgba(26, 111, 212, 0.15);
    border-radius: 0;
    box-sizing: border-box;
}

.single-product .tab-columns h3::before {
    content: "";
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a6fd4, #3d8ee8);
    box-shadow: 0 0 0 3px rgba(26, 111, 212, 0.15);
}

.single-product .tab-columns h3:not(:first-child) {
    margin-top: 32px;
}

.single-product .tab-columns .attribute {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: baseline;
    gap: 8px 12px;
    width: 100%;
    font-size: 14px;
    line-height: 1.45;
    padding: 11px 14px;
    margin: 0 0 2px;
    border: none;
    border-radius: 10px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.65);
    transition: background 0.15s ease;
}

.single-product .tab-columns .attribute:hover {
    background: rgba(26, 111, 212, 0.06);
}

.single-product .tab-columns .attribute::after {
    content: "";
    grid-column: 2;
    min-width: 24px;
    border-bottom: 1px dotted #cbd5e1;
    transform: translateY(-0.35em);
}

.single-product .tab-columns .attribute-name {
    grid-column: 1;
    flex: none;
    width: auto;
    max-width: none;
    padding: 0;
    color: #64748b;
}

.single-product .tab-columns .attribute-value {
    grid-column: 3;
    flex: none;
    width: auto;
    max-width: none;
    padding: 0;
    text-align: right;
    color: #0f172a;
    font-weight: 600;
}

.single-product .tab2-columns.sp-tabs__info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    box-sizing: border-box;
}

.single-product .tab2-columns .tab2-column {
    flex: 1 1 280px;
    min-width: 0;
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    box-sizing: border-box;
}

.single-product .tab2-columns p {
    font-size: 14px;
    line-height: 1.6;
    color: #334155;
    margin: 0 0 16px;
}

.single-product .tab2-columns p strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    color: #0f172a;
    font-weight: bold;
}

.single-product .tab2-columns li {
    font-size: 14px;
    line-height: 1.55;
    color: #475569;
}

.single-product .tab2-columns ul {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.single-product .tab2-columns ul li {
    position: relative;
    padding: 0 0 10px 22px;
    margin: 0;
}

.single-product .tab2-columns ul li::before {
    display: block;
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7a2f, #ffb07a);
    content: "";
    box-shadow: 0 0 0 3px rgba(255, 122, 47, 0.15);
}

.single-product__description--content {
    display: block;
    margin-bottom: 40px;
}

.single-product .topsell {
    margin-bottom: 56px;
    padding-top: 8px;
}

.top_recommendations_slides {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.top_recommendations_slides .products {
    grid-template-columns: 1fr !important;
}

.top_recommendations_slides .product {
    width: 100% !important;
}

@media (max-width: 1240px) {
    .single-product .sp-hero,
    .single-product .single-product__wrapper.sp-hero {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 24px;
    }

    .top_recommendations_slides {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .single-product .sp-hero,
    .single-product .single-product__wrapper.sp-hero {
        grid-template-columns: 1fr;
        grid-template-areas:
            "gallery"
            "buy";
    }

    .single-product .sp-hero__col--buy {
        position: static;
    }

    .single-product__features {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {
    .single-product .sp-hero,
    .single-product .single-product__wrapper.sp-hero {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .single-product .sp-hero__col--gallery,
    .single-product .sp-hero__col--buy {
        display: contents;
    }

    .single-product .sp-hero__product-title--mobile {
        display: block;
        order: 1;
    }

    .single-product .sp-hero__product-title--desktop {
        display: none;
    }

    .single-product .sp-hero__col--gallery .sp-gallery {
        order: 2;
        box-shadow: none;
    }

    .single-product .sp-buybox__card.single-product__pricenactions {
        order: 3;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-top: 0;
        padding-top: 0;
        border-radius:0 0 20px 20px;
        box-shadow: none;
    }

    .single-product .sp-under-gallery {
        order: 4;
    }

    .single-product > .container {
        display: flex;
        flex-direction: column;
    }

    .single-product > .container > #breadcrumbs {
        order: 0;
    }

    .single-product .sp-hero {
        order: 1;
    }

    .single-product__tabs.sp-tabs {
        order: 2;
        margin-top: 20px;
        margin-bottom: 24px;
    }

    .single-product__features {
        order: 3;
        margin-top: 0;
    }

    .single-product__description--materials {
        order: 4;
    }

    .single-product__care {
        order: 5;
    }

    .single-product__description--content {
        order: 6;
    }

    .single-product .topsell {
        order: 7;
    }

    .single-product .sp-under-gallery__card.sp-chars,
    .single-product .single-product__characters {
        display: none;
    }

    .single-product .sp-under-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
        box-shadow: none;
    }

    .single-product .sp-gallery__layout {
        flex-direction: column-reverse;
    }

    .single-product .sp-gallery__thumbs {
        flex: none;
        width: 100%;
    }

    .single-product .thumb-slider {
        height: auto;
        max-height: none;
    }

    .single-product .thumb-slider .swiper-wrapper {
        flex-direction: row !important;
    }

    .single-product .main-slider,
    .single-product .main-slider .swiper-slide {
        min-height: 280px;
    }

    .single-product .main-slider img {
        max-height: 240px;
    }

    .single-product .sp-hero__product-title,
    .single-product h1.product_title {
        font-size: 20px;
        line-height: 1.25;
    }

    .single-product__features {
        grid-template-columns: 1fr;
    }

    .single-product__tabs.sp-tabs {
        padding: 16px;
    }

    .single-product .tabs-nav.sp-tabs__nav {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 16px;
    }

    .single-product .tabs-nav .tab-link {
        min-height: 56px;
        padding: 10px 12px;
        gap: 10px;
    }

    .single-product .sp-tabs__icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .single-product .sp-tabs__title {
        font-size: 14px;
    }

    .single-product .sp-tabs__desc {
        font-size: 11px;
    }



    .single-product .tab-columns .attribute {
        grid-template-columns: 1.5fr 0.5fr;
        gap: 4px;
        padding: 10px 12px;
        font-size:12px;
    }

    .single-product .tab-columns .attribute::after {
        display: none;
    }

    .single-product .tab-columns .attribute-value {
        text-align: left;
        font-weight: 500;
    }

    .top_recommendations_slides {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .top_recommendations_slides {
        grid-template-columns: 1fr;
    }
}

.sp-materials {
    width: 100%;
    margin-bottom: 56px;
    padding: 32px 28px 36px;
    border-radius: 20px;
    background: linear-gradient(145deg, #f8fafc 0%, #fff 42%, #fff8f4 100%);
    border: 1px solid #e8ecf0;
    box-sizing: border-box;
}

.single-product__description--materials {
    display: block;
    width: 100%;
}

.sp-materials__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.sp-materials__card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5eaf0;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(26, 111, 212, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.sp-materials__card:hover {
    border-color: rgba(232, 106, 34, 0.45);
    box-shadow: 0 14px 36px rgba(232, 106, 34, 0.14);
    transform: translateY(-4px);
}

.sp-materials__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 5 / 4;
    background: #eef2f7;
}

.sp-materials__media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 40%;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 111, 212, 0.08) 100%);
    pointer-events: none;
}

.sp-materials__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.sp-materials__card:hover .sp-materials__img {
    transform: scale(1.04);
}

.sp-materials__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    padding: 18px 16px 20px;
    border-top: 3px solid #e86a22;
    background: #fff;
}

.sp-materials__title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-align: left;
    text-transform: uppercase;
    color: #e86a22;
}

.sp-materials__text {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
    color: #334155;
}

@media (max-width: 1600px) {
    .sp-materials__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1280px) {
    .sp-materials {
        padding: 28px 20px 32px;
    }

    .sp-materials__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .sp-materials__title {
        font-size: 14px;
    }

    .sp-materials__text {
        font-size: 14px;
    }
}

@media (max-width: 900px) and (min-width: 641px) {
    .sp-materials__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sp-materials__body {
        padding: 16px 14px 18px;
    }
}

.single-product__care--block {
    display: block;
    width: 100%;
    margin-bottom: 56px;
}

.sp-care {
    width: 100%;
    padding: 32px 28px 36px;
    border-radius: 20px;
    background: linear-gradient(145deg, #f8fafc 0%, #fff 42%, #fff8f4 100%);
    border: 1px solid #e8ecf0;
    box-sizing: border-box;
}

.sp-care__title {
    margin: 0 0 28px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #1a1a1a;
}

.sp-care__title::after {
    content: "";
    display: block;
    width: 72px;
    height: 4px;
    margin-top: 14px;
    border-radius: 2px;
    background: #e86a22;
}

.sp-care__layout {
    display: grid;
    grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.sp-care__media {
    overflow: hidden;
    border: 1px solid #e5eaf0;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(26, 111, 212, 0.1);
}

.sp-care__img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.sp-care__body {
    font-size: 16px;
    line-height: 1.65;
    color: #334155;
}

.sp-care__body p {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.65;
    color: #334155;
}

.sp-care__list {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sp-care__list li {
    position: relative;
    padding-left: 24px;
    font-size: 16px;
    line-height: 1.65;
    color: #334155;
}

.sp-care__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #e86a22;
    box-shadow: 0 0 0 3px rgba(232, 106, 34, 0.15);
}

.sp-care__muted {
    font-size: 15px !important;
    color: #64748b !important;
}

.sp-care__subtitle {
    margin: 22px 0 10px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #e86a22;
}

.sp-care__highlight {
    margin-top: 18px !important;
    margin-bottom: 0 !important;
    padding: 14px 16px;
    border-radius: 12px;
    border-left: 4px solid #e86a22;
    background: rgba(232, 106, 34, 0.08);
    font-size: 16px !important;
    color: #1a1a1a !important;
}

.sp-care__highlight strong {
    font-weight: 700;
    color: #e86a22;
}

@media (max-width: 900px) {
    .sp-care__layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sp-care__media {
        max-width: 420px;
    }
}

@media (max-width: 640px) {
    .sp-care {
        padding: 20px 14px 24px;
        border-radius: 16px;
    }

    .sp-care__title {
        margin-bottom: 20px;
        font-size: 22px;
    }

    .sp-care__media {
        max-width: none;
    }

    .sp-care__body p,
    .sp-care__list li {
        font-size: 15px;
    }

    .sp-care__highlight {
        font-size: 15px !important;
    }
}

@media (max-width: 640px) {
    .sp-materials {
        padding: 18px 12px 22px;
        border-radius: 16px;
    }

    .sp-materials__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .sp-materials__card {
        flex-direction: column;
    }

    .sp-materials__media {
        flex: none;
        max-width: none;
        width: 100%;
        aspect-ratio: 16 / 10;
        min-height: 0;
    }

    .sp-materials__body {
        border-top: 3px solid #e86a22;
        border-left: none;
        padding: 16px 14px 18px;
    }

    .sp-materials__title {
        font-size: 15px;
    }

    .sp-materials__text {
        font-size: 15px;
        line-height: 1.6;
    }
}
