:root {
    --sp-font-body: "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    --sp-letter-spacing: 0;
    --sp-text-xs: 12px;
    --sp-text-sm: 14px;
    --sp-text-md: 16px;
    --sp-text-lg: 18px;
    --sp-text-xl: 20px;
    --sp-text-2xl: 24px;
    --sp-text-3xl: 30px;
    --sp-text-display: 48px;
    --sp-leading-xs: 16px;
    --sp-leading-sm: 20px;
    --sp-leading-md: 24px;
    --sp-leading-lg: 28px;
    --sp-leading-xl: 30px;
    --sp-leading-2xl: 38px;
    --sp-leading-display: 60px;
    --sp-green-600: #007d40;
    --sp-green-500: #2cb162;
    --sp-red-600: #d32e31;
    --sp-orange-500: #ff8a00;
    --sp-gray-950: #111111;
    --sp-gray-900: #18181b;
    --sp-gray-800: #27272a;
    --sp-gray-700: #3f3f46;
    --sp-gray-600: #52525b;
    --sp-gray-500: #71717a;
    --sp-gray-400: #a1a1aa;
    --sp-gray-300: #d4d4d8;
    --sp-gray-200: #e4e4e7;
    --sp-gray-100: #f4f4f5;
    --sp-gray-50: #fafafa;
    --sp-white: #ffffff;
}

.sp-container {
    width: min(1168px, calc(100% - 32px));
    margin-right: auto;
    margin-left: auto;
}

/* Sporter shared UI — breadcrumbs: .sp-breadcrumbs + legacy product/catalog aliases */
.sp-breadcrumbs,
.sp-product__breadcrumbs,
.sp-catalog__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    min-height: 48px;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--sp-gray-400);
    font-size: var(--sp-text-sm);
    line-height: var(--sp-leading-sm);
    list-style: none;
}

.sp-breadcrumbs a,
.sp-breadcrumbs__link,
.sp-product__breadcrumbs a,
.sp-product__breadcrumb-link,
.sp-catalog__breadcrumbs a {
    display: inline-flex;
    align-items: center;
    color: var(--sp-gray-400);
    text-decoration: none;
    transition: color 0.15s ease;
}

.sp-breadcrumbs a:hover,
.sp-breadcrumbs a:focus,
.sp-breadcrumbs__link:hover,
.sp-breadcrumbs__link:focus,
.sp-product__breadcrumbs a:hover,
.sp-product__breadcrumbs a:focus,
.sp-product__breadcrumb-link:hover,
.sp-product__breadcrumb-link:focus,
.sp-catalog__breadcrumbs a:hover,
.sp-catalog__breadcrumbs a:focus {
    color: var(--sp-gray-600);
    text-decoration: none;
}

.sp-breadcrumbs__current,
.sp-product__breadcrumb-current,
.sp-catalog__breadcrumb-current {
    color: var(--sp-gray-600);
    font-weight: 500;
}

.sp-breadcrumbs__separator,
.sp-product__breadcrumb-separator,
.sp-catalog__breadcrumb-separator {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: var(--sp-gray-300);
    font-size: 16px;
    line-height: 1;
}

.sp-breadcrumbs__separator .fa,
.sp-product__breadcrumb-separator .fa {
    font-size: 16px;
    line-height: 1;
}

@media (max-width: 767px) {
    .sp-breadcrumbs,
    .sp-product__breadcrumbs,
    .sp-catalog__breadcrumbs {
        gap: 12px;
        min-height: 40px;
        font-size: var(--sp-text-xs);
        line-height: var(--sp-leading-xs);
    }

    .sp-breadcrumbs__separator,
    .sp-product__breadcrumb-separator,
    .sp-catalog__breadcrumb-separator {
        width: 14px;
        height: 14px;
        font-size: 14px;
    }

    .sp-breadcrumbs__separator .fa,
    .sp-product__breadcrumb-separator .fa {
        font-size: 14px;
    }
}

.container > .sp-breadcrumbs {
    margin-bottom: 20px;
}

.sp-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sp-header {
    position: relative;
    z-index: 20;
    background: var(--sp-white);
    color: var(--sp-gray-900);
    font-family: var(--sp-font-body);
}

.sp-header a,
.sp-header button {
    letter-spacing: 0;
}

.sp-header__promo {
    display: flex;
    align-items: center;
    min-height: 32px;
    background: var(--sp-green-500);
    color: var(--sp-white);
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
}

.sp-header__promo .sp-container {
    display: flex;
    justify-content: center;
}

.sp-header__promo-mobile {
    display: none;
}

.sp-header__main {
    background: var(--sp-white);
    border-bottom: 1px solid var(--sp-gray-100);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.01);
}

.sp-header__bar {
    display: grid;
    grid-template-columns: 200px auto minmax(320px, 1fr) auto;
    gap: 24px;
    align-items: center;
    min-height: 80px;
}

.sp-header__brand {
    display: flex;
    align-items: center;
    min-width: 0;
}

.sp-header__menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--sp-gray-950);
}

.sp-header__menu-toggle span {
    position: absolute;
    width: 16px;
    height: 1.5px;
    border-radius: 1px;
    background: currentColor;
}

.sp-header__menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
}

.sp-header__menu-toggle span:nth-child(3) {
    transform: translateY(6px);
}

.sp-header__menu-toggle.is-open span:nth-child(1) {
    transform: rotate(45deg);
}

.sp-header__menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.sp-header__menu-toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg);
}

.sp-header__logo {
    width: 208px;
    height: 44px;
    margin: 0;
}

.sp-header #logo {
    margin: 0;
}

.sp-header__logo a,
.sp-header__logo img {
    display: block;
    width: 100%;
    height: 100%;
}

.sp-header__logo img {
    object-fit: contain;
}

.sp-header__logo-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 10px;
    background: var(--sp-green-600);
    color: var(--sp-white);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.sp-header__logo-text:hover,
.sp-header__logo-text:focus {
    color: var(--sp-white);
    text-decoration: none;
}

.sp-header__nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.sp-header__nav-item {
    position: relative;
}

.sp-header__nav-item--categories {
    position: static;
}

.sp-header__nav-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--sp-gray-900);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    white-space: nowrap;
}

.sp-header__nav-link:hover,
.sp-header__nav-link:focus,
.sp-header__nav-item.open > .sp-header__nav-link {
    color: var(--sp-green-600);
}

.sp-header__nav-item:hover > .dropdown-menu,
.sp-header__nav-item:focus-within > .dropdown-menu,
.sp-header__nav-item.open > .dropdown-menu {
    display: block;
}

.sp-header__dropdown,
.sp-header__account-menu {
    min-width: 220px;
    padding: 8px;
    border: 1px solid var(--sp-gray-200);
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(17, 17, 17, 0.08);
}

/* Account menu sizes to its content so short items don't leave empty space on the right */
.sp-header__account-menu {
    min-width: 168px;
    width: max-content;
}

/* Success page (checkout success / account success) — common/success.twig */
.sp-success {
    display: flex;
    justify-content: center;
    padding: 56px 16px 80px;
    background: #ffffff;
}

.sp-success__card {
    width: min(640px, 100%);
    text-align: center;
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: 0 10px 40px rgba(17, 17, 17, 0.06);
}

.sp-success__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 999px;
    background: #e8f6ee;
    color: #007d40;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.sp-success__title {
    margin: 0 0 16px;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 600;
    color: #111111;
}

.sp-success__message {
    font-size: 15px;
    line-height: 24px;
    color: #52525b;
    margin-bottom: 28px;
}

.sp-success__message a {
    color: #007d40;
    text-decoration: underline;
}

.sp-success__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    border-radius: 10px;
    background: #007d40;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease;
}

.sp-success__btn:hover {
    background: #00692f;
}

@media (max-width: 575px) {
    .sp-success__card {
        padding: 36px 20px;
    }
    .sp-success__title {
        font-size: 22px;
    }
}

/* Order complete card (checkout success) — checkout/success.twig */
.sp-order-success {
    display: flex;
    justify-content: center;
    padding: 80px 16px;
    background: #ffffff;
}

.sp-order-success__card {
    display: flex;
    width: min(738px, 100%);
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 80px 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 32px 48px -48px rgba(18, 18, 18, 0.1);
}

.sp-order-success__title {
    display: flex;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.sp-order-success__eyebrow {
    margin: 0;
    color: #6c7275;
    font-size: 20px;
    line-height: 30px;
}

.sp-order-success__heading {
    margin: 0;
    color: #23262f;
    font-size: 40px;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: -0.01em;
}

.sp-order-success__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.sp-order-success__item {
    position: relative;
    width: 108px;
    height: 108px;
    border-radius: 8px;
    overflow: visible;
    background: var(--sp-gray-200, #e4e4e7);
}

.sp-order-success__item-image {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.sp-order-success__item-qty {
    position: absolute;
    top: -10px;
    right: -10px;
    display: flex;
    min-width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--sp-gray-900, #18181b);
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.sp-order-success__detail {
    display: flex;
    width: 100%;
    max-width: 548px;
    justify-content: center;
    gap: 32px;
}

.sp-order-success__detail-labels,
.sp-order-success__detail-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sp-order-success__detail-labels p {
    margin: 0;
    color: var(--sp-gray-500, #71717a);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    white-space: nowrap;
}

.sp-order-success__detail-values p {
    margin: 0;
    color: #141718;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.sp-order-success__message {
    max-width: 546px;
    color: var(--sp-gray-600, #52525b);
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

.sp-order-success__message a {
    color: var(--sp-green-600, #007d40);
}

.sp-order-success__btn {
    display: flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--sp-green-600, #007d40);
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s ease;
}

.sp-order-success__btn:hover {
    background: var(--sp-green-500, #2cb162);
    color: #ffffff;
}

@media (max-width: 575px) {
    .sp-order-success__card {
        padding: 48px 20px;
        gap: 28px;
    }
    .sp-order-success__heading {
        font-size: 28px;
        line-height: 34px;
    }
    .sp-order-success__detail {
        gap: 16px;
    }
}

/* 404 / error page — error/not_found.twig */
.sp-error {
    display: flex;
    justify-content: center;
    padding: 64px 16px 88px;
    background: #ffffff;
}

.sp-error__card {
    width: min(600px, 100%);
    text-align: center;
}

.sp-error__code {
    font-size: 96px;
    line-height: 1;
    font-weight: 800;
    color: #007d40;
    letter-spacing: -0.02em;
}

.sp-error__title {
    margin: 16px 0 12px;
    font-size: 26px;
    font-weight: 600;
    color: #111111;
}

.sp-error__text {
    margin: 0 0 28px;
    font-size: 15px;
    line-height: 24px;
    color: #71717a;
}

.sp-error__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    border-radius: 10px;
    background: #007d40;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease;
}

.sp-error__btn:hover {
    background: #00692f;
}

.sp-header__dropdown-link,
.sp-header__account-menu > li > a {
    display: block;
    padding: 9px 10px;
    border-radius: 7px;
    color: var(--sp-gray-900);
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
}

.sp-header__dropdown-link:hover,
.sp-header__dropdown-link:focus,
.sp-header__account-menu > li > a:hover,
.sp-header__account-menu > li > a:focus {
    background: var(--sp-gray-50);
    color: var(--sp-green-600);
    text-decoration: none;
}

.sp-header__dropdown-children {
    display: grid;
    gap: 2px;
    padding: 0 0 8px 12px;
}

.sp-header__dropdown-children a {
    display: block;
    padding: 5px 10px;
    color: var(--sp-gray-600);
    font-size: 13px;
    line-height: 18px;
    text-decoration: none;
}

.sp-header__dropdown-children a:hover,
.sp-header__dropdown-children a:focus {
    color: var(--sp-green-600);
}

.sp-header__mega-menu {
    top: calc(100% + 8px);
    left: 50%;
    width: min(1136px, calc(100vw - 64px));
    max-height: calc(100vh - 132px);
    min-width: 0;
    margin: 0;
    padding: 32px 36px;
    overflow: auto;
    transform: translateX(-50%);
    border: 1px solid rgba(44, 177, 98, 0.2);
    border-radius: 18px;
    background: #edfff1;
    box-shadow: 2px 2px 16px rgba(112, 112, 112, 0.07);
}

.sp-header__mega-menu-inner {
    display: grid;
    gap: 28px;
}

.sp-header__mega-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 56px;
    row-gap: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(44, 177, 98, 0.4);
}

.sp-header__mega-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.sp-header__mega-group {
    display: grid;
    align-content: start;
    gap: 8px;
    min-width: 0;
}

.sp-header__mega-title {
    display: block;
    overflow: hidden;
    color: var(--sp-gray-950);
    font-size: 13px;
    font-weight: 600;
    line-height: 16px;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sp-header__mega-title:hover,
.sp-header__mega-title:focus {
    color: var(--sp-green-600);
    text-decoration: none;
}

.sp-header__mega-title--static,
.sp-header__mega-title--static:hover,
.sp-header__mega-title--static:focus {
    color: var(--sp-gray-950);
    cursor: default;
    text-decoration: none;
}

.sp-header__mega-links {
    display: grid;
    justify-items: start;
    gap: 2px;
    min-width: 0;
}

.sp-header__mega-link {
    display: block;
    max-width: 100%;
    overflow: hidden;
    color: var(--sp-gray-800);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sp-header__mega-link:hover,
.sp-header__mega-link:focus {
    color: var(--sp-gray-900);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.sp-header__mega-link--static,
.sp-header__mega-link--static:hover,
.sp-header__mega-link--static:focus {
    color: var(--sp-gray-500);
    cursor: default;
    text-decoration: none;
}

.sp-header__search {
    min-width: 0;
}

.sp-header__search #search {
    display: flex;
    align-items: center;
    width: 100%;
    height: 48px;
    margin: 0;
    border: 1px solid var(--sp-gray-200);
    border-radius: 10px;
    background: var(--sp-white);
    overflow: hidden;
}

.sp-header__search #search .form-control {
    height: 46px;
    padding: 12px 16px;
    border: 0;
    box-shadow: none;
    color: var(--sp-gray-700);
    font-size: 14px;
    line-height: 20px;
}

.sp-header__search #search .form-control::placeholder {
    color: var(--sp-gray-700);
    opacity: 1;
}

.sp-header__search #search .input-group-btn {
    width: 56px;
}

.sp-header__search #search .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 46px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: var(--sp-green-500);
    font-size: 22px;
    text-shadow: none;
}

.sp-header__actions {
    display: flex;
    gap: 16px;
    align-items: center;
    height: 46px;
}

.sp-header__language .sp-language,
.sp-header__language #form-language,
.sp-header__language .btn-group {
    display: flex;
    align-items: center;
    margin: 0;
}

.sp-header__language .btn-link {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    padding: 0;
    border: 0;
    color: var(--sp-gray-900);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
}

.sp-header__language img,
.sp-header__language .sp-language__flag {
    display: block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
}

.sp-header__language .dropdown-menu {
    min-width: 148px;
    padding: 8px;
    border: 1px solid var(--sp-gray-200);
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(17, 17, 17, 0.08);
}

.sp-header__language .dropdown-menu .btn-link {
    width: 100%;
    justify-content: flex-start;
    padding: 8px;
    color: var(--sp-gray-900);
    text-align: left;
}

.sp-header__icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--sp-gray-950);
    font-size: 22px;
    text-decoration: none;
}

.sp-header__icon-link:hover,
.sp-header__icon-link:focus {
    color: var(--sp-green-600);
    text-decoration: none;
}

/* Figma Solar «Linear» header icons (heart / user / cart / search) — 24px, inherit colour. */
.sp-ico {
    display: block;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.sp-ico-chevron {
    display: inline-block;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.sp-header__mobile-divider {
    display: none;
}

.sp-header__cart {
    width: auto;
}

.sp-header__cart #cart {
    width: auto;
    margin: 0;
}

.sp-header__cart #cart > .btn {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    min-width: 128px;
    min-height: 46px;
    padding: 10px 16px;
    border: 0;
    border-radius: 10px;
    background: var(--sp-green-600);
    box-shadow: none;
    color: var(--sp-white);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-shadow: none;
}

.sp-header__cart #cart.open > .btn,
.sp-header__cart #cart > .btn:hover,
.sp-header__cart #cart > .btn:focus {
    background: var(--sp-green-600);
    color: var(--sp-white);
}

.sp-header-cart__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 20px;
}

.sp-header-cart__badge {
    position: absolute;
    top: -8px;
    right: -8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--sp-white);
    color: var(--sp-green-600);
    font-size: 10px;
    font-weight: 600;
    line-height: 14px;
}

.sp-header__cart #cart-total i {
    display: none;
}

.sp-header__cart #cart .dropdown-menu {
    right: 0;
    left: auto;
    min-width: 380px;
    padding: 12px;
    border: 1px solid var(--sp-gray-200);
    border-radius: 10px;
    background: var(--sp-white);
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.12);
}

.sp-header__cart #cart .dropdown-menu li > div {
    min-width: 0;
    padding: 0;
}

.sp-header__cart #cart .dropdown-menu table {
    margin-bottom: 10px;
}

.sp-header__mobile-panel {
    display: none;
    border-top: 1px solid var(--sp-gray-100);
    background: var(--sp-white);
}

.sp-header__mobile-panel.is-open {
    display: block;
}

.sp-header__mobile-panel-inner {
    display: grid;
    gap: 20px;
    padding-top: 16px;
    padding-bottom: 20px;
}

.sp-header__mobile-group {
    display: grid;
    gap: 8px;
}

.sp-header__mobile-group p {
    margin: 0;
    color: var(--sp-gray-500);
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    text-transform: uppercase;
}

.sp-header__mobile-group a {
    display: block;
    padding: 8px 0;
    color: var(--sp-gray-900);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
}

.sp-header__mobile-group span {
    display: block;
    padding: 8px 0;
    color: var(--sp-gray-500);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.sp-header__mobile-service {
    border-top: 1px solid var(--sp-gray-100);
    padding-top: 12px;
}

.sp-header__mobile-service .pull-left {
    float: none !important;
}

.sp-header__mobile-service #form-currency,
.sp-header__mobile-service #form-currency .btn-group {
    display: block;
    width: 100%;
}

.sp-header__mobile-service #form-currency .btn-link {
    padding: 8px 0;
    color: var(--sp-gray-900);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    text-decoration: none;
}

.sp-product-card {
    position: relative;
    overflow: visible;
    background: var(--sp-white);
    color: var(--sp-gray-950);
    font-family: var(--sp-font-body);
}

.sp-product-card a {
    color: inherit;
    text-decoration: none;
}

.sp-product-card__media {
    position: relative;
    overflow: hidden;
    background: var(--sp-gray-50);
}

.sp-product-card__image-link {
    display: block;
    height: 100%;
}

.sp-product-card__media img {
    display: block;
    width: 100%;
    height: auto;
}

.sp-product-card__badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 5px 12px;
    border-radius: 99px;
    background: var(--sp-gray-950);
    color: var(--sp-white);
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    text-transform: uppercase;
    white-space: nowrap;
}

.sp-product-card__badge--promo,
.sp-product-card__badge--discount {
    background: var(--sp-red-600);
}

.sp-product-card__badge--new,
.sp-product-card__badge--hit {
    background: var(--sp-green-500);
}

.sp-product-card__badge.sp-product-card__badge--recommended {
    background: #f8a53e;
    text-transform: none;
}

.sp-product-badge--discount {
    background-color: var(--sp-red-600);
}

.sp-product-card__wishlist {
    position: absolute;
    z-index: 3;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid var(--sp-gray-50);
    border-radius: 50%;
    background: var(--sp-white);
    color: var(--sp-gray-950);
    transition:
        color 0.15s ease,
        border-color 0.15s ease,
        background 0.15s ease;
}

.sp-product-card__wishlist:hover,
.sp-product-card__wishlist:focus {
    color: var(--sp-green-600);
}

.sp-product-card__wishlist--active {
    border-color: var(--sp-green-500);
    color: var(--sp-green-600);
}

.sp-product-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}

.sp-product-card__name {
    display: -webkit-box;
    min-height: 40px;
    overflow: hidden;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sp-product-card__short,
.sp-product-card__unit,
.sp-product-card__reviews {
    color: var(--sp-gray-500);
    font-size: 14px;
    line-height: 20px;
}

.sp-product-card__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 16px;
    color: var(--sp-gray-600);
    font-size: 12px;
    line-height: 16px;
}

.sp-product-card__stars {
    position: relative;
    display: inline-block;
    width: 72px;
    height: 14px;
    line-height: 1;
}

.sp-product-card__stars-base,
.sp-product-card__stars-fill {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    font-family: FontAwesome;
    font-size: 13px;
    letter-spacing: 2px;
    line-height: 14px;
}

.sp-product-card__stars-base {
    width: 100%;
    color: var(--sp-gray-300);
}

.sp-product-card__stars-fill {
    width: var(--sp-rating, 0%);
    color: var(--sp-orange-500);
}

.sp-product-card__stars-base::before,
.sp-product-card__stars-fill::before {
    content: "\f005\f005\f005\f005\f005";
}

.sp-product-card__rating-value {
    color: var(--sp-gray-950);
    font-weight: 600;
}

.sp-product-card__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    margin-top: 0;
}

.sp-product-card__price-current {
    color: var(--sp-gray-950);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
}

.sp-product-card__price--special .sp-product-card__price-current {
    color: var(--sp-red-600);
}

.sp-product-card__price-old {
    color: var(--sp-gray-500);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: line-through;
}

.sp-product-card__unit {
    margin-top: -8px;
}

.sp-product-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    padding: 8px 20px;
    border: 0;
    border-radius: 999px;
    background: var(--sp-green-600);
    color: var(--sp-white);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.sp-product-card__button:hover,
.sp-product-card__button:focus {
    background: var(--sp-green-500);
}

.sp-product-card--grid {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    overflow: hidden;
    border-radius: 16px;
    background: transparent;
}

.sp-product-card--grid .sp-product-card__media {
    flex: 0 0 280px;
    height: 280px;
    border-radius: 0;
    background: transparent;
}

.sp-product-card--grid .sp-product-card__image-link {
    height: 100%;
    background: transparent;
}

.sp-product-card--grid .sp-product-card__media img {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
}

.sp-product-card--grid .sp-product-card__body {
    flex: 1;
    min-height: 224px;
    padding: 16px;
}

.sp-product-card--grid .sp-product-card__price {
    min-height: 28px;
}

.sp-product-card--grid .sp-product-card__button {
    margin-top: auto;
}

.sp-product-card--grid .sp-product-card__rating + .sp-product-card__price,
.sp-product-card--grid
    .sp-product-card__rating
    + .sp-product-card__price--special {
    padding-top: 10px;
    border-top: 1px solid var(--sp-gray-200);
}

.sp-product-card--hero {
    height: 480px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--sp-gray-950);
    color: var(--sp-white);
}

.sp-product-card--hero .sp-product-card__media,
.sp-product-card--hero .sp-product-card__image-link,
.sp-product-card--hero .sp-product-card__media img {
    height: 100%;
}

.sp-product-card--hero .sp-product-card__media img {
    object-fit: cover;
}

.sp-product-card--hero .sp-product-card__body {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding: 0;
}

.sp-product-card--hero .sp-product-card__name {
    min-height: 0;
    color: var(--sp-white);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}

.sp-product-card--hero .sp-product-card__label,
.sp-product-card--hero .sp-product-card__subtitle,
.sp-product-card--hero .sp-product-card__unit {
    color: rgba(255, 255, 255, 0.82);
}

.sp-product-card--hero .sp-product-card__button {
    align-self: flex-start;
    width: auto;
    min-width: 152px;
    background: var(--sp-white);
    color: var(--sp-gray-950);
}

body.sp-cart-modal-open {
    overflow: hidden;
}

@keyframes sp-cart-modal-item-enter {
    0% {
        opacity: 0;
        transform: translate3d(0, 12px, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes sp-cart-modal-media-enter {
    0% {
        opacity: 0;
        transform: translate3d(-14px, 18px, 0) scale(0.92);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

.sp-cart-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    font-family: var(--sp-font-body);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.sp-cart-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.sp-cart-modal.is-closing {
    opacity: 0;
    pointer-events: none;
    transition-duration: 180ms;
}

.sp-cart-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(113, 113, 122, 0.2);
    opacity: 0;
    transition: opacity 300ms ease;
}

.sp-cart-modal.is-open .sp-cart-modal__backdrop {
    opacity: 1;
}

.sp-cart-modal.is-closing .sp-cart-modal__backdrop {
    opacity: 0;
}

.sp-cart-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(878px, 100%);
    max-height: calc(100vh - 48px);
    overflow: hidden;
    border-radius: 24px;
    background: var(--sp-white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.96);
    filter: blur(10px);
    transition:
        opacity 260ms ease,
        transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
        filter 360ms ease;
}

.sp-cart-modal.is-open .sp-cart-modal__dialog {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.sp-cart-modal.is-closing .sp-cart-modal__dialog {
    opacity: 0;
    transform: translate3d(0, 12px, 0) scale(0.98);
    filter: blur(4px);
    transition-duration: 180ms;
}

.sp-cart-modal__form {
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 48px);
}

.sp-cart-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 40px 40px 0;
    opacity: 0;
    transform: translate3d(0, 12px, 0);
}

.sp-cart-modal.is-open .sp-cart-modal__header {
    animation: sp-cart-modal-item-enter 360ms ease forwards;
    animation-delay: 90ms;
}

.sp-cart-modal__title {
    margin: 0;
    color: var(--sp-gray-950);
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

.sp-cart-modal__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--sp-gray-950);
    cursor: pointer;
    transition: transform 220ms ease;
}

.sp-cart-modal__close:hover,
.sp-cart-modal__close:focus {
    background: transparent;
    transform: rotate(90deg);
}

.sp-cart-modal__content {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    min-height: 0;
    overflow-y: auto;
    padding: 40px 40px 0;
}

.sp-cart-modal__media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 280px;
    padding: 16px;
    border-radius: 16px;
    background: var(--sp-gray-50);
    opacity: 0;
    transform: translate3d(-14px, 18px, 0) scale(0.92);
}

.sp-cart-modal.is-open .sp-cart-modal__media {
    animation: sp-cart-modal-media-enter 560ms cubic-bezier(0.16, 1, 0.3, 1)
        forwards;
    animation-delay: 150ms;
}

.sp-cart-modal__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(0.94);
    transition: transform 580ms cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-cart-modal.is-open .sp-cart-modal__media img {
    transform: scale(1);
}

.sp-cart-modal__details {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

.sp-cart-modal__name {
    margin: 0;
    color: var(--sp-gray-950);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 16px;
}

.sp-cart-modal__details > *,
.sp-cart-modal__footer {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
}

.sp-cart-modal.is-open .sp-cart-modal__details > *,
.sp-cart-modal.is-open .sp-cart-modal__footer {
    animation: sp-cart-modal-item-enter 420ms ease forwards;
}

.sp-cart-modal.is-open .sp-cart-modal__details > :nth-child(1) {
    animation-delay: 170ms;
}

.sp-cart-modal.is-open .sp-cart-modal__details > :nth-child(2) {
    animation-delay: 220ms;
}

.sp-cart-modal.is-open .sp-cart-modal__details > :nth-child(3) {
    animation-delay: 270ms;
}

.sp-cart-modal.is-open .sp-cart-modal__details > :nth-child(4) {
    animation-delay: 320ms;
}

.sp-cart-modal.is-open .sp-cart-modal__details > :nth-child(5) {
    animation-delay: 370ms;
}

.sp-cart-modal.is-open .sp-cart-modal__details > :nth-child(n + 6) {
    animation-delay: 420ms;
}

.sp-cart-modal__price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.sp-cart-modal__price-current {
    color: var(--sp-gray-950);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}

.sp-cart-modal__price--special .sp-cart-modal__price-current {
    color: var(--sp-red-600);
}

.sp-cart-modal__price-old {
    color: var(--sp-gray-600);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: line-through;
}

.sp-cart-modal__discount,
.sp-cart-modal__option-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 2px 8px;
    border-radius: 999px;
    background: #e4675e;
    color: var(--sp-white);
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
}

.sp-cart-modal__unit {
    color: var(--sp-gray-600);
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
}

.sp-cart-modal__option {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.sp-cart-modal__option-label {
    color: var(--sp-gray-500);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.sp-cart-modal__option-label span {
    color: var(--sp-red-600);
}

.sp-cart-modal__swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 12px;
}

.sp-cart-modal__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.sp-cart-modal__swatch,
.sp-cart-modal__pill {
    position: relative;
    margin: 0;
    cursor: pointer;
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(0.96);
}

.sp-cart-modal__swatch input,
.sp-cart-modal__pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.sp-cart-modal__swatch {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    width: 72px;
}

.sp-cart-modal__swatch-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--sp-gray-200);
    border-radius: 50%;
    background: var(--sp-gray-50);
    color: var(--sp-gray-900);
    font-size: 18px;
    font-weight: 600;
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.sp-cart-modal__swatch-media img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.sp-cart-modal__swatch:hover .sp-cart-modal__swatch-media {
    transform: translate3d(0, -2px, 0) scale(1.04);
}

.sp-cart-modal__swatch input:checked + .sp-cart-modal__swatch-media {
    border-color: var(--sp-green-600);
    box-shadow: 0 0 0 3px rgba(0, 125, 64, 0.12);
    transform: translate3d(0, -2px, 0) scale(1.04);
}

.sp-cart-modal__swatch-name {
    width: 100%;
    min-height: 32px;
    color: var(--sp-gray-800);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
    word-break: normal;
    overflow-wrap: normal;
}

.sp-cart-modal__swatch input:checked ~ .sp-cart-modal__swatch-name {
    color: #752400;
    font-weight: 500;
}

.sp-cart-modal__swatch .sp-cart-modal__option-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    min-height: 20px;
    padding: 2px 6px;
    background: var(--sp-orange-500);
    white-space: nowrap;
}

.sp-cart-modal__pill span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    min-height: 38px;
    padding: 4px 15px;
    border: 1px solid var(--sp-gray-200);
    border-radius: 999px;
    background: var(--sp-white);
    color: var(--sp-gray-950);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    transition:
        border-color 180ms ease,
        background 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.sp-cart-modal__pill small {
    margin-left: 6px;
    color: var(--sp-gray-500);
    font-size: 12px;
    font-weight: 600;
}

.sp-cart-modal__pill input:checked + span {
    border-color: #752400;
    border-width: 1.5px;
    background: #fef9ec;
    color: #752400;
    transform: translate3d(0, -2px, 0);
}

.sp-cart-modal__pill:hover span {
    transform: translate3d(0, -2px, 0);
}

.sp-cart-modal.is-open .sp-cart-modal__swatch,
.sp-cart-modal.is-open .sp-cart-modal__pill {
    animation: sp-cart-modal-item-enter 360ms ease forwards;
}

.sp-cart-modal.is-open .sp-cart-modal__swatch:nth-child(1),
.sp-cart-modal.is-open .sp-cart-modal__pill:nth-child(1) {
    animation-delay: 360ms;
}

.sp-cart-modal.is-open .sp-cart-modal__swatch:nth-child(2),
.sp-cart-modal.is-open .sp-cart-modal__pill:nth-child(2) {
    animation-delay: 390ms;
}

.sp-cart-modal.is-open .sp-cart-modal__swatch:nth-child(3),
.sp-cart-modal.is-open .sp-cart-modal__pill:nth-child(3) {
    animation-delay: 420ms;
}

.sp-cart-modal.is-open .sp-cart-modal__swatch:nth-child(4),
.sp-cart-modal.is-open .sp-cart-modal__pill:nth-child(4) {
    animation-delay: 450ms;
}

.sp-cart-modal.is-open .sp-cart-modal__swatch:nth-child(5),
.sp-cart-modal.is-open .sp-cart-modal__pill:nth-child(5) {
    animation-delay: 480ms;
}

.sp-cart-modal.is-open .sp-cart-modal__swatch:nth-child(n + 6),
.sp-cart-modal.is-open .sp-cart-modal__pill:nth-child(n + 6) {
    animation-delay: 510ms;
}

.sp-cart-modal__input {
    width: 100%;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid var(--sp-gray-200);
    border-radius: 12px;
    background: var(--sp-white);
    color: var(--sp-gray-950);
    font-size: 15px;
    line-height: 22px;
}

.sp-cart-modal__quantity {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    align-self: flex-start;
    width: 127px;
    height: 52px;
    min-height: 52px;
    padding: 12px 16px;
    border: 1px solid var(--sp-gray-200);
    border-radius: 999px;
    background: var(--sp-gray-100);
}

.sp-cart-modal__quantity-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--sp-gray-950);
}

.sp-cart-modal__quantity-button:hover,
.sp-cart-modal__quantity-button:focus {
    background: var(--sp-gray-100);
}

.sp-cart-modal__quantity-input {
    width: 55px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--sp-gray-950);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    -moz-appearance: textfield;
}

.sp-cart-modal__quantity-input::-webkit-outer-spin-button,
.sp-cart-modal__quantity-input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.sp-cart-modal__error {
    display: none;
    color: var(--sp-red-600);
    font-size: 13px;
    line-height: 18px;
}

.sp-cart-modal__option.has-error .sp-cart-modal__swatch-media,
.sp-cart-modal__option.has-error .sp-cart-modal__pill span,
.sp-cart-modal__option.has-error .sp-cart-modal__input {
    border-color: var(--sp-red-600);
}

.sp-cart-modal__footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
    padding: 24px 40px;
    border-top: 1px solid var(--sp-gray-200);
}

.sp-cart-modal__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        color 180ms ease;
}

.sp-cart-modal__button--light {
    min-width: 230px;
    border: 1px solid var(--sp-gray-200);
    background: var(--sp-white);
    color: var(--sp-gray-950);
}

.sp-cart-modal__button--green {
    min-width: 207px;
    border: 1px solid var(--sp-green-600);
    background: var(--sp-green-600);
    color: var(--sp-white);
}

.sp-cart-modal__button:hover,
.sp-cart-modal__button:focus {
    text-decoration: none;
}

.sp-cart-modal__button--light:hover,
.sp-cart-modal__button--light:focus {
    background: var(--sp-gray-50);
    transform: translate3d(0, -1px, 0);
}

.sp-cart-modal__button--green:hover,
.sp-cart-modal__button--green:focus {
    border-color: var(--sp-green-500);
    background: var(--sp-green-500);
    color: var(--sp-white);
    transform: translate3d(0, -1px, 0);
}

.sp-cart-modal__button.is-loading,
.sp-product-card__button.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

.sp-cart-modal.is-open .sp-cart-modal__footer {
    animation-delay: 480ms;
}

@media (prefers-reduced-motion: reduce) {
    .sp-cart-modal,
    .sp-cart-modal *,
    .sp-cart-modal *::before {
        animation-duration: 1ms !important;
        animation-delay: 0ms !important;
        transition-duration: 1ms !important;
    }
}

/*footer start*/
.sp-footer h5 {
    margin: 0;
}
.sp-footer a:hover {
    color: currentColor;
}

.sp-footer {
    background-color: var(--sp-gray-950);
    margin: 0;
    padding: 0;
    border: none;
    width: 100%;
}

.sp-footer-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 40px 24px 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.sp-footer-decoration {
    position: absolute;
    bottom: -200px;
    left: 10px;
    width: 401px;
    height: 401px;
    border-radius: 401px;
    background: linear-gradient(144deg, #2cb162 -51.9%, #134b2a 55.95%);
    filter: blur(50px);
    z-index: 0;
}
.sp-footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.sp-footer-info-container {
    display: flex;
    padding: 32px 40px;
    justify-content: space-between;
    /* gap: 96px; */
    border-radius: 16px;
    background: var(--sp-white);
}

.sp-footer #logo {
    width: 208px;
    height: 44px;
    margin: 0;
}

.sp-footer-socials {
    display: flex;
    flex: 0 0 208px;
    flex-direction: column;
    justify-content: space-between;
    min-height: 136px;
}

.sp-socials-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sp-socials-list__item {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background: var(--sp-gray-950);
    cursor: pointer;
}

.sp-socials-list__link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.sp-footer-nav {
    display: flex;
    gap: 20px;
}

.sp-footer-nav__site-map,
.sp-footer-nav_info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 209px;
}
.sp-footer-nav-list {
    display: flex;
    flex-direction: column;
}
.sp-footer-nav-list__item {
    color: var(--sp-gray-700);
    line-height: 1.5;
    font-size: 16px;
}
.sp-footer-nav-list__item:hover {
    color: var(--sp-green-500);
}

.sp-footer-nav-list__item a {
    color: currentColor;
}

.sp-footer-nav__header {
    color: var(--sp-gray-950);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.6;
    text-transform: uppercase;
}

.sp-footer-contacts-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sp-footer-contacts-wrapper {
    display: flex;
    justify-content: space-between;
}

.sp-footer-contacts-wrapper .sp-socials-list {
    display: none;
}

.sp-footer-contacts {
    display: flex;
    align-items: end;
    flex-direction: column;
}

.sp-button {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.33;
    border-radius: 999px;
    padding: 8px 16px;
    cursor: pointer;
    border: none;
}
.sp-button--dark {
    color: var(--sp-white);
    background: var(--sp-gray-950);
}
.sp-button--light {
    color: var(--sp-gray-900);
    background-color: var(--sp-white);
    border: 1px solid var(--sp-gray-300);
}
.sp-button--light:hover {
    color: var(--sp-white);
    background-color: var(--sp-gray-950);
}

.sp-footer-client-tel,
.sp-footer-client-mail,
.sp-footer-client-address {
    font-weight: 600;
    line-height: 1.33;
    color: var(--sp-gray-950);
}

.sp-footer-client-address {
    margin: 0;
}

.sp-footer-client-schedule {
    font-size: 10px;
    line-height: 1.4;
    color: var(--sp-gray-500);
    margin-bottom: 4px;
}

.sp-footer-client-mail {
    margin-bottom: 4px;
}

.sp-footer-feedback {
    display: flex;
    justify-content: space-between;
}
.sp-footer-feedback .sp-socials-list {
    display: none;
}

.sp-footer-feedback__title {
    width: 50%;
    font-size: 48px;
    line-height: 1.25;
    font-weight: 700;
    color: var(--sp-white);
    margin: 0;
}

.sp-footer-feedback__form-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 4px;
    width: 47%;
}

.sp-footer-form-header {
    color: var(--sp-white);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    margin-bottom: 6.67px;
}
.sp-footer-form {
    display: flex;
    flex-direction: column;
    gap: 6.67px;
}

.sp-footer-form-status {
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 18px;
    color: #ffffff;
}

.sp-footer-form-status.is-ok {
    color: #7ee2a8;
}

.sp-footer-form-status.is-error {
    color: #ff9a9a;
}

.sp-footer-input {
    width: 100%;
    height: 59px;
    padding: 8px 24px 8px 16px;
    border-radius: 12px;
    border: 1px solid var(--gray-gray-600, #52525b);
    color: var(--sp-white);
    background-color: transparent;
}
.sp-button--orange {
    width: 220px;
    height: 44px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: var(--sp-orange-500);
    color: var(--sp-white);
}
.sp-button--orange:hover {
    background-color: #ffa947;
}

.sp-footer-rights {
    font-size: 10px;
    line-height: 1.4;
    color: var(--sp-white);
    margin: 0;
}
/*footer end*/

@media (max-width: 991px) {
    .sp-header__promo {
        min-height: 32px;
    }

    .sp-header__promo-desktop {
        display: none;
    }

    .sp-header__promo-mobile {
        display: inline;
        white-space: nowrap;
    }

    .sp-header__bar {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px 4px;
        min-height: 116px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .sp-header__brand {
        gap: 4px;
        min-width: 0;
    }

    .sp-header__menu-toggle {
        position: relative;
        display: inline-flex;
        flex: 0 0 44px;
    }

    .sp-header__logo {
        width: 170px;
        height: 36px;
    }

    .sp-header__logo-text {
        font-size: 24px;
    }

    .sp-header__nav,
    .sp-header__language,
    .sp-header__wishlist {
        display: none;
    }

    .sp-header__search {
        grid-column: 1 / -1;
        order: 3;
    }

    .sp-header__search #search {
        height: 44px;
    }

    .sp-header__search #search .form-control {
        height: 42px;
        padding: 12px 16px;
    }

    .sp-header__search #search .btn {
        width: 52px;
        height: 42px;
        font-size: 24px;
    }

    .sp-header__actions {
        gap: 4px;
        height: 46px;
    }

    .sp-header__icon-link {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }

    .sp-header__mobile-divider {
        display: inline-block;
        width: 1px;
        height: 32px;
        background: var(--sp-gray-200);
    }

    .sp-header__cart #cart > .btn {
        min-width: 44px;
        min-height: 44px;
        padding: 0;
        border-radius: 0;
        background: transparent;
        color: var(--sp-gray-950);
        font-size: 22px;
    }

    .sp-header__cart #cart.open > .btn,
    .sp-header__cart #cart > .btn:hover,
    .sp-header__cart #cart > .btn:focus {
        background: transparent;
        color: var(--sp-green-600);
    }

    .sp-header__cart #cart-total,
    .sp-header-cart__badge {
        display: none;
    }

    .sp-header__cart #cart-total i {
        display: inline-block;
    }

    .sp-header__cart #cart .dropdown-menu {
        right: 0;
        left: auto;
        width: calc(100vw - 32px);
        min-width: 0;
    }
}

@media (max-width: 767px) {
    .sp-product-card--grid .sp-product-card__media {
        flex-basis: 204px;
        height: 204px;
    }

    .sp-product-card--grid .sp-product-card__media img {
        padding: 20px 12px 14px;
    }

    .sp-product-card--grid .sp-product-card__body {
        min-height: 206px;
        gap: 8px;
        padding: 12px;
    }

    .sp-product-card__badge {
        top: 12px;
        left: 12px;
        min-height: 24px;
        padding: 4px 8px;
    }

    .sp-product-card__wishlist {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
    }

    .sp-product-card__price-current {
        font-size: 16px;
        line-height: 24px;
    }

    .sp-product-card__price-old {
        font-size: 13px;
        line-height: 20px;
    }

    .sp-product-card__button {
        font-size: 14px;
        line-height: 20px;
    }

    .sp-product-card--hero {
        height: 480px;
    }

    .sp-cart-modal {
        align-items: flex-end;
        padding: 16px;
    }

    .sp-cart-modal__dialog,
    .sp-cart-modal__form {
        max-height: calc(100vh - 32px);
    }

    .sp-cart-modal__dialog {
        border-radius: 20px;
    }

    .sp-cart-modal__header {
        padding: 24px 20px 16px;
    }

    .sp-cart-modal__title {
        font-size: 20px;
        line-height: 28px;
    }

    .sp-cart-modal__content {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
        padding: 0 20px 20px;
    }

    .sp-cart-modal__media {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        max-height: 240px;
    }

    .sp-cart-modal__name {
        font-size: 20px;
        line-height: 28px;
    }

    .sp-cart-modal__price-current {
        font-size: 20px;
        line-height: 28px;
    }

    .sp-cart-modal__price-old {
        font-size: 15px;
        line-height: 22px;
    }

    .sp-cart-modal__swatches {
        gap: 10px;
    }

    .sp-cart-modal__swatch {
        width: 66px;
    }

    .sp-cart-modal__pill span {
        min-height: 40px;
        padding: 8px 14px;
        font-size: 14px;
        line-height: 20px;
    }

    .sp-cart-modal__footer {
        flex-direction: column-reverse;
        padding: 16px 20px 20px;
    }

    .sp-cart-modal__button {
        width: 100%;
        min-height: 48px;
        padding: 12px 18px;
    }

    /*footer start*/
    .sp-footer-container {
        width: 100%;
        padding: 16px 24px;
    }

    .sp-footer-nav {
        gap: 16px;
        justify-content: space-between;
    }
    .sp-footer-nav__site-map,
    .sp-footer-nav_info {
        min-width: 0;
        flex: 1 1 0;
    }

    .sp-footer-info-container {
        padding: 24px;
        flex-direction: column;
    }

    .sp-footer-socials .sp-socials-list {
        display: none;
    }

    .sp-footer-nav-list__item {
        line-height: 1.42;
        font-size: 14px;
    }

    .sp-footer-contacts-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .sp-footer-contacts {
        align-items: start;
    }

    .sp-footer-contacts-wrapper .sp-socials-list {
        display: flex;
    }

    .sp-footer-socials {
        flex: 0 0 auto;
        margin-bottom: 18px;
        min-height: 0;
    }

    .sp-footer-contacts-container {
        gap: 18px;
    }

    .sp-footer-feedback {
        flex-direction: column;
    }

    .sp-footer-feedback__title {
        max-width: 343px;
        width: 100%;
        font-size: 30px;
        line-height: 1.266;
        margin-bottom: 16px;
    }

    .sp-footer-feedback__form-container {
        width: 100%;
    }

    .sp-footer-form-header {
        margin-bottom: 16px;
    }
    .sp-footer-form {
        gap: 8px;
    }

    .sp-footer .sp-button--orange {
        margin-top: 8px;
        width: 100%;
    }

    .sp-footer-rights {
        text-align: center;
    }

    .sp-footer-decoration {
        width: 231px;
        height: 231px;
        left: 50%;
        bottom: -97px;
        transform: translate(-50%, 0);
    }
    /*footer end*/
}

/* ===== Header live-search suggestions ===== */
.sp-header__search {
    position: relative;
}

.sp-search-suggest {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 1100;
    padding: 6px;
    max-height: min(70vh, 460px);
    overflow-y: auto;
    background: var(--sp-white);
    border: 1px solid var(--sp-gray-200);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(17, 17, 26, 0.12);
}

.sp-search-suggest[hidden] {
    display: none;
}

.sp-search-suggest__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--sp-gray-950);
    transition: background-color 0.15s ease;
}

.sp-search-suggest__item:hover,
.sp-search-suggest__item:focus {
    background: var(--sp-gray-100);
    outline: none;
}

.sp-search-suggest__media {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--sp-gray-100);
    border-radius: 8px;
}

.sp-search-suggest__media img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sp-search-suggest__info {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sp-search-suggest__name {
    font-size: 14px;
    line-height: 1.3;
    color: var(--sp-gray-950);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sp-search-suggest__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.sp-search-suggest__price-now {
    font-size: 14px;
    font-weight: 600;
    color: var(--sp-gray-950);
}

.sp-search-suggest__price--special .sp-search-suggest__price-now {
    color: var(--sp-red-600);
}

.sp-search-suggest__price-old {
    font-size: 12px;
    font-weight: 400;
    color: var(--sp-gray-500);
    text-decoration: line-through;
}

.sp-search-suggest__all {
    display: block;
    margin-top: 4px;
    padding: 10px;
    border-top: 1px solid var(--sp-gray-100);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--sp-green-600);
    text-align: center;
    text-decoration: none;
}

.sp-search-suggest__all:hover,
.sp-search-suggest__all:focus {
    background: var(--sp-gray-100);
    outline: none;
}

.sp-search-suggest__empty {
    padding: 16px 12px;
    color: var(--sp-gray-500);
    font-size: 14px;
    text-align: center;
}

/* ===== Remove the default blue focus ring on form fields (site-wide) ===== */
/* The browser/Bootstrap blue outline+glow on focused inputs is removed; focus is
   indicated by the field container instead (e.g. .sp-field:focus-within green border). */
input:focus,
input:focus-visible,
textarea:focus,
textarea:focus-visible,
select:focus,
select:focus-visible,
.form-control:focus {
    outline: none;
    box-shadow: none;
}

/* ── Remove the blue focus ring/glow when CLICKING buttons & links ──
   Kept for keyboard navigation via :focus-visible (accessibility). */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
.btn:focus:not(:focus-visible),
.btn:active:focus:not(:focus-visible),
input[type="submit"]:focus:not(:focus-visible),
input[type="button"]:focus:not(:focus-visible),
input[type="reset"]:focus:not(:focus-visible),
[role="button"]:focus:not(:focus-visible),
[onclick]:focus:not(:focus-visible),
.sp-radio-card:focus:not(:focus-visible),
.sp-checkout__tab:focus:not(:focus-visible),
.sp-blog-tabs__tab:focus:not(:focus-visible),
label:focus:not(:focus-visible) {
    outline: 0 !important;
    box-shadow: none !important;
}
/* Also strip the persistent box-shadow Bootstrap leaves on .btn after a click. */
.btn:focus,
.btn.focus,
.btn:active:focus,
.btn.active:focus {
    box-shadow: none !important;
}

/* Home certificates — click a certificate to view it enlarged (lightbox) */
.sp-certificates__item { cursor: zoom-in; }
.sp-cert-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, .85);
    cursor: zoom-out;
}
.sp-cert-lightbox[hidden] { display: none; }
.sp-cert-lightbox__img {
    max-width: 92vw;
    max-height: 92vh;
    border-radius: 8px;
    background: #fff;
    cursor: default;
    box-shadow: 0 12px 48px rgba(0, 0, 0, .5);
}
.sp-cert-lightbox__close {
    position: absolute;
    top: 16px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    opacity: .85;
}
.sp-cert-lightbox__close:hover { opacity: 1; }

/* Cart page breadcrumb — space the separator + match the site breadcrumb style */
.sp-cart__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px;
    font-size: var(--sp-text-sm);
    line-height: var(--sp-leading-sm);
}
.sp-cart__breadcrumb a {
    color: var(--sp-gray-400);
    text-decoration: none;
    transition: color .15s ease;
}
.sp-cart__breadcrumb a:hover,
.sp-cart__breadcrumb a:focus { color: var(--sp-gray-600); }
.sp-cart__breadcrumb .fa { color: var(--sp-gray-300); font-size: 14px; }
.sp-cart__breadcrumb span { color: var(--sp-gray-600); font-weight: 500; }

/* ── Live-search dropdown per the design (правка 1) ──
   Light-gray row cards: white thumb box | name + code + stock | price right.
   Overrides the earlier suggest styles (appended later in the cascade). */
.sp-search-suggest {
    padding: 12px;
    border-radius: 16px;
}
.sp-search-suggest__item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
    padding: 10px 14px;
    margin-bottom: 8px;
    border-radius: 12px;
    background: #f7f8f9;
    text-decoration: none;
}
.sp-search-suggest__item:hover,
.sp-search-suggest__item:focus,
.sp-search-suggest__item.is-active {
    background: #eef1f2;
    text-decoration: none;
}
.sp-search-suggest__media {
    align-self: center;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}
.sp-search-suggest__media img { max-width: 48px; max-height: 48px; object-fit: contain; }
.sp-search-suggest__info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sp-search-suggest__name {
    font-size: 14px;
    font-weight: 600;
    color: #1b211e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sp-search-suggest__code { font-size: 12px; color: #8a9097; }
.sp-search-suggest__stock { font-size: 12px; color: #1f9d57; }
.sp-search-suggest__stock.is-out { color: #c0392b; }
.sp-search-suggest__price { align-self: start; padding-top: 1px; text-align: right; font-size: 14px; font-weight: 700; color: #1b211e; white-space: nowrap; }
.sp-search-suggest__price-old { display: block; font-size: 12px; font-weight: 400; color: #9aa0a6; text-decoration: line-through; }
.sp-search-suggest__all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 4px auto 0;
    padding: 10px 22px;
    width: fit-content;
    border: 1px solid #e0e3e6;
    border-radius: 999px;
    background: #fff;
    font-size: 14px;
    color: #1b211e;
    text-decoration: none;
}
.sp-search-suggest__all:hover { border-color: #1f9d57; color: #1b211e; text-decoration: none; }

/* ── Global font per the design (правка 2) ──
   The stock stylesheet.css sets body to 'Open Sans' 12px; everything the redesign
   doesn't explicitly style fell back to it (footer, info pages). The design font is
   Inter — enforce it globally (this file loads after the stock stylesheet). */
body {
    font-family: var(--sp-font-body);
    font-size: 14px;
    color: #333;
}

/* ── Product card gray image area per the design (правка 6) ──
   White-background product photos blend into the gray via multiply.
   (Compound selector needed: --grid variant sets background: transparent.) */
.sp-product-card__media,
.sp-product-card--grid .sp-product-card__media { background: #f5f6f7; }
.sp-product-card__media img { mix-blend-mode: multiply; }
/* Hero lifestyle cards keep their full-bleed photos untouched */
.sp-product-card--hero .sp-product-card__media { background: transparent; }
.sp-product-card--hero .sp-product-card__media img { mix-blend-mode: normal; }

/* ── Catalog mega-menu spacing per the design (правка 11) ── */
.sp-header__mega-links { gap: 10px; }
.sp-header__mega-link { font-size: 14px; line-height: 20px; }
.sp-header__mega-title { margin-bottom: 12px; }

/* ── Brands mega-panel per the design (правка 12) ──
   Light-green window: brand-name columns on top, white logo cards below. */
/* Brands mega-menu — exact Figma spec (node 1:11746). */
.sp-header__brands-panel {
    left: 50%;
    transform: translateX(-50%);
    /* stays hidden (display:none from .dropdown-menu) until hover/open; then flex — see below */
    flex-direction: column;
    gap: 16px;
    width: min(1200px, calc(100vw - 48px));
    padding: 40px;
    border: 1px solid #e4e4e7;
    border-radius: 24px;
    background: #d8f8dc;
    box-shadow: 2px 2px 16px rgba(112, 112, 112, .07);
}
.sp-header__nav-item--brands:hover > .sp-header__brands-panel,
.sp-header__nav-item--brands:focus-within > .sp-header__brands-panel,
.sp-header__nav-item--brands.open > .sp-header__brands-panel {
    display: flex;
}
.sp-header__brands-names {
    columns: 4;
    column-gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(44, 177, 98, .4);
}
.sp-header__brands-name {
    display: block;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: #111;
    text-decoration: none;
    break-inside: avoid;
}
.sp-header__brands-name:hover { color: #007d40; text-decoration: none; }
.sp-header__brands-logos {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}
.sp-header__brands-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    padding-bottom: 8px;
    background: #fff;
    border: 1px solid #e4e4e7;
    border-radius: 12px;
    text-decoration: none;
    transition: box-shadow .15s ease;
}
.sp-header__brands-card:hover { box-shadow: 0 6px 18px rgba(17, 17, 17, .08); text-decoration: none; }
.sp-header__brands-card-media {
    width: 100%;
    height: 88px;
    overflow: hidden;
}
.sp-header__brands-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sp-header__brands-card-name {
    padding: 0 8px;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: #111;
    text-align: center;
}
@media (max-width: 991px) {
    .sp-header__brands-panel { width: calc(100vw - 24px); padding: 24px; }
    .sp-header__brands-names { columns: 2; }
    .sp-header__brands-logos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .sp-header__brands-name,
    .sp-header__brands-card-name { font-size: 16px; }
}

/* Brands panel centers on the header (same static-parent trick as the categories menu) */
.sp-header__nav-item.dropdown:has(.sp-header__brands-panel) { position: static; }
.sp-header__nav-item--brands { position: static; }

/* Suggest dropdown: roomy panel per the design (rows were wrapping in the input-width box) */
.sp-search-suggest {
    /* Span the full width of the search field (left:0/right:0 from the base rule) instead
       of a fixed 560px, so the suggestions dropdown matches the search bar width. */
    width: auto;
}
.sp-search-suggest__stock,
.sp-search-suggest__code { white-space: nowrap; }
.sp-search-suggest__name { max-width: 100%; }

/* Правка 5: custom text badges are the green pills from the design
   (discount/promo overrides above keep red). */
.sp-product-card__badge { background: var(--sp-green-500, #2cb162); }
.sp-product-card__badge--promo,
.sp-product-card__badge--discount { background: var(--sp-red-600, #d32e31); }

/* Brand card wordmark fallback — shown until a brand logo image is uploaded in admin.
   Keeps the panel's two-tier Figma structure (name columns + card row). */
.sp-header__brands-card--text {
    min-height: 72px;
    justify-content: center;
}
.sp-header__brands-wordmark {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .01em;
    color: #1b211e;
    text-align: center;
    line-height: 1.2;
}
