/* ---------------------------------------------------------------------------
   Samant Home Appliances - presentation layer
   Loaded after the 6Valley theme CSS so the storefront refresh stays isolated
   from vendor styles and can be maintained as one presentation layer.
   --------------------------------------------------------------------------- */

:root {
    --shp-brand: #fea80e;
    --shp-brand-dark: #e8930a;
    --shp-ink: #1a1e28;
    --shp-muted: #6c7482;
    --shp-line: #ecedf1;
    --shp-radius: 14px;
    --shp-shadow: 0 1px 2px rgba(26, 30, 40, .04), 0 6px 20px rgba(26, 30, 40, .06);
    --shp-shadow-lift: 0 10px 34px rgba(26, 30, 40, .13);
    --shp-ease: cubic-bezier(.22, .61, .36, 1);
}

/* ============================ 1. announcement ticker ===================== */
.shp-ticker {
    background: var(--shp-ink);
    color: #fff;
    overflow: hidden;
    position: relative;
    height: 42px;
    display: flex;
    align-items: center;
}
.shp-ticker__track {
    display: flex;
    align-items: center;
    gap: 56px;
    white-space: nowrap;
    will-change: transform;
    animation: shp-marquee 38s linear infinite;
}
.shp-ticker:hover .shp-ticker__track { animation-play-state: paused; }
.shp-ticker__item {
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: .04em;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    opacity: .94;
}
.shp-ticker__item b { color: var(--shp-brand); font-weight: 700; }
@keyframes shp-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================ 2. full-bleed hero ======================== */
.shp-hero { padding-top: 0 !important; margin-bottom: 34px; }
.shp-hero > .container { max-width: 100% !important; padding-left: 0 !important; padding-right: 0 !important; }
.shp-hero .__top-slider-cate { display: none !important; }          /* nav already exposes categories */
.shp-hero .__top-slider-images { flex: 0 0 100% !important; max-width: 100% !important; }
.shp-hero .__top-slider-images > div { padding-left: 0 !important; padding-right: 0 !important; }
.shp-hero .hero-slider img,
.shp-hero .__slide-img,
.shp-hero .__slide-img-170 {
    height: clamp(300px, 33vw, 560px) !important;
    max-height: none !important;
    width: 100% !important;
    object-fit: cover;
    object-position: center;
    border-radius: 0 !important;
}
.shp-hero .owl-dots { position: absolute; bottom: 22px; left: 0; right: 0; }
.shp-hero .owl-dot span {
    width: 9px !important; height: 9px !important;
    background: rgba(26, 30, 40, .22) !important;
    transition: all .3s var(--shp-ease);
}
.shp-hero .owl-dot.active span { width: 30px !important; background: var(--shp-brand) !important; }
.shp-hero .owl-nav button {
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(255, 255, 255, .92) !important;
    box-shadow: var(--shp-shadow);
    opacity: 0; transition: opacity .3s var(--shp-ease), transform .3s var(--shp-ease);
}
.shp-hero:hover .owl-nav button { opacity: 1; }
.shp-hero .owl-nav button:hover { transform: scale(1.08); background: #fff !important; }

/* ============================ 3. product cards ========================== */
.product-single-hover,
.__product-card,
.card.product-card,
[class*="product-card"] {
    border-radius: var(--shp-radius) !important;
    border: 1px solid var(--shp-line) !important;
    box-shadow: none;
    overflow: hidden;
    transition: transform .34s var(--shp-ease), box-shadow .34s var(--shp-ease), border-color .34s var(--shp-ease);
}
.product-single-hover:hover,
.__product-card:hover,
.card.product-card:hover,
[class*="product-card"]:hover {
    transform: translateY(-5px);
    box-shadow: var(--shp-shadow-lift) !important;
    border-color: rgba(254, 168, 14, .45) !important;
}
[class*="product-card"] img,
.product-single-hover img {
    transition: transform .55s var(--shp-ease);
    backface-visibility: hidden;
}
[class*="product-card"]:hover img,
.product-single-hover:hover img { transform: scale(1.055); }

/* discount pill */
[class*="discount"], .__discount-badge, .product-badge {
    border-radius: 999px !important;
    font-weight: 700 !important;
    letter-spacing: .02em;
    box-shadow: 0 2px 8px rgba(254, 168, 14, .35);
}

/* price hierarchy */
.text-accent, .price, .__price { font-weight: 700 !important; letter-spacing: -.01em; }
del, .text-muted del, .__old-price { opacity: .55; font-weight: 400; }

/* ============================ 4. section rhythm ========================= */
.section-header h2,
.section-card-margin h2,
.__inline-62 h2 {
    font-weight: 800 !important;
    letter-spacing: -.02em;
    position: relative;
    padding-bottom: 10px;
}
.section-header h2::after,
.__inline-62 h2::after {
    content: "";
    position: absolute; left: 0; bottom: 0;
    width: 46px; height: 3px; border-radius: 2px;
    background: var(--shp-brand);
    transition: width .45s var(--shp-ease);
}
.section-header:hover h2::after { width: 78px; }

.view-all-btn-text {
    font-weight: 600;
    transition: gap .25s var(--shp-ease), color .25s var(--shp-ease);
}
.view-all-btn-text:hover { color: var(--shp-brand-dark) !important; }

/* ============================ 5. buttons =============================== */
.btn-primary, .btn--primary, .shop-now-btn {
    border-radius: 999px !important;
    font-weight: 600;
    transition: transform .22s var(--shp-ease), box-shadow .22s var(--shp-ease), filter .22s var(--shp-ease);
}
.btn-primary:hover, .btn--primary:hover, .shop-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(254, 168, 14, .34);
    filter: saturate(1.06);
}
.btn-primary:active, .btn--primary:active { transform: translateY(0); }

/* ============================ 6. header ================================ */
.shp-scrolled .navbar,
.shp-scrolled header { box-shadow: 0 2px 18px rgba(26, 30, 40, .09); }
header, .navbar { transition: box-shadow .3s var(--shp-ease); }

/* category strip icons */
.category-menu img, .__category-icon { transition: transform .3s var(--shp-ease); }
.category-menu li:hover img { transform: scale(1.12) rotate(-3deg); }

/* ============================ 7. scroll reveal ========================= */
.shp-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .62s var(--shp-ease), transform .62s var(--shp-ease);
    will-change: opacity, transform;
}
.shp-reveal.shp-in { opacity: 1; transform: none; }

/* images fade in once decoded instead of popping */
img.shp-fade { opacity: 0; transition: opacity .45s ease; }
img.shp-fade.shp-loaded { opacity: 1; }

/* ============================ 8. misc polish =========================== */
.card, .__card { border-radius: var(--shp-radius) !important; }
a { transition: color .2s var(--shp-ease); }

::selection { background: rgba(254, 168, 14, .28); }

/* slimmer, on-brand scrollbar on desktop */
@media (min-width: 992px) {
    ::-webkit-scrollbar { width: 11px; height: 11px; }
    ::-webkit-scrollbar-track { background: #f4f5f7; }
    ::-webkit-scrollbar-thumb { background: #cfd3da; border-radius: 999px; border: 3px solid #f4f5f7; }
    ::-webkit-scrollbar-thumb:hover { background: var(--shp-brand); }
}

/* ============================ 9. accessibility ========================= */
@media (prefers-reduced-motion: reduce) {
    .shp-ticker__track { animation: none; }
    .shp-reveal { opacity: 1 !important; transform: none !important; transition: none; }
    img.shp-fade { opacity: 1; }
    [class*="product-card"], .product-single-hover,
    [class*="product-card"] img, .product-single-hover img,
    .btn-primary, .btn--primary { transition: none !important; }
    [class*="product-card"]:hover, .product-single-hover:hover { transform: none; }
    [class*="product-card"]:hover img, .product-single-hover:hover img { transform: none; }
}

/* ============================ 10. small screens ======================== */
@media (max-width: 767px) {
    .shp-hero .hero-slider img { height: clamp(190px, 52vw, 300px) !important; }
    .shp-ticker { height: 36px; }
    .shp-ticker__item { font-size: 12px; }
    .shp-hero .owl-nav button { display: none; }
}

/* ============================ 11. USP strip ============================ */
.shp-usp {
    border-bottom: 1px solid var(--shp-line);
    background: #fff;
    margin-top: -34px;
    margin-bottom: 34px;
}
.shp-usp__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 20px 12px;
}
.shp-usp__item {
    display: flex; align-items: center; gap: 14px;
    padding: 6px 10px;
    border-right: 1px solid var(--shp-line);
}
.shp-usp__item:last-child { border-right: 0; }
.shp-usp__ico {
    flex: 0 0 42px; height: 42px; width: 42px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: rgba(254, 168, 14, .13);
    color: var(--shp-brand-dark);
    font-weight: 800; font-size: 17px;
}
.shp-usp__txt { display: flex; flex-direction: column; line-height: 1.28; }
.shp-usp__txt b { font-size: 14.5px; color: var(--shp-ink); font-weight: 700; }
.shp-usp__txt i { font-size: 12.5px; color: var(--shp-muted); font-style: normal; }

@media (max-width: 991px) {
    .shp-usp__inner { grid-template-columns: repeat(2, 1fr); }
    .shp-usp__item:nth-child(2n) { border-right: 0; }
    .shp-usp__item:nth-child(-n+2) { border-bottom: 1px solid var(--shp-line); padding-bottom: 14px; }
}

/* ============================ 13. 2026 storefront ===================== */
:root {
    --shp-brand: #f59e0b;
    --shp-brand-dark: #d97706;
    --shp-ink: #17202b;
    --shp-ink-soft: #273444;
    --shp-paper: #f7f6f2;
    --shp-surface: #ffffff;
    --shp-muted: #68717d;
    --shp-line: #e8e5de;
    --shp-radius: 18px;
    --shp-radius-lg: 26px;
    --shp-shadow: 0 1px 2px rgba(23, 32, 43, .04), 0 12px 36px rgba(23, 32, 43, .07);
    --shp-shadow-lift: 0 18px 48px rgba(23, 32, 43, .14);
}

html {
    scroll-behavior: smooth;
}

body.toolbar-enabled {
    background: var(--shp-paper);
    color: var(--shp-ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.toolbar-enabled h1,
body.toolbar-enabled h2,
body.toolbar-enabled h3,
body.toolbar-enabled h4,
body.toolbar-enabled h5,
body.toolbar-enabled h6 {
    color: var(--shp-ink);
    font-family: inherit;
    letter-spacing: -.02em;
}

body.toolbar-enabled .container {
    max-width: 1380px;
}

body.toolbar-enabled .card,
body.toolbar-enabled .__card,
body.toolbar-enabled .__inline-62,
body.toolbar-enabled .__featured-deal-wrap {
    border: 1px solid var(--shp-line) !important;
    border-radius: var(--shp-radius-lg) !important;
    box-shadow: none !important;
}

body.toolbar-enabled .card:hover,
body.toolbar-enabled .__inline-62:hover {
    border-color: #ded9ce !important;
}

/* Header: quiet utility bar, strong search, dark appliance-store nav. */
body.toolbar-enabled header {
    background: var(--shp-surface);
    position: relative;
    z-index: 30;
}

body.toolbar-enabled header .topbar {
    background: #fff !important;
    border-bottom: 1px solid var(--shp-line);
    color: var(--shp-muted);
    min-height: 34px;
}

body.toolbar-enabled header .topbar a {
    color: var(--shp-muted);
}

body.toolbar-enabled .navbar-sticky {
    background: #fff !important;
}

body.toolbar-enabled .navbar-sticky > .navbar:first-child {
    min-height: 86px;
    padding-block: 13px;
}

body.toolbar-enabled .navbar-brand img {
    height: auto !important;
    max-height: 54px;
    max-width: 144px;
    object-fit: contain;
}

body.toolbar-enabled .search-form-mobile {
    max-width: 760px;
    width: 100%;
}

body.toolbar-enabled .search_form .d-flex {
    background: #fbfbfa;
    border: 1px solid #dedbd4;
    border-radius: 999px;
    min-height: 52px;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

body.toolbar-enabled .search_form .d-flex:focus-within {
    background: #fff;
    border-color: rgba(245, 158, 11, .8);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, .13);
}

body.toolbar-enabled .search_form .appended-form-control {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: var(--shp-ink);
    font-size: 15px;
    height: 50px;
    padding-inline: 22px;
}

body.toolbar-enabled .search_form .search_button {
    align-self: stretch;
    background: var(--shp-brand);
    border: 0;
    border-radius: 999px;
    margin: 4px;
    min-width: 46px;
    position: static;
}

body.toolbar-enabled .search_form .search_button .input-group-text {
    background: transparent;
    border: 0;
    display: grid;
    height: 100%;
    padding: 0;
    place-items: center;
}

body.toolbar-enabled .navbar-tool-icon-box,
body.toolbar-enabled .navbar-tool-icon-box.bg-secondary {
    background: #f6f5f1 !important;
    border: 1px solid var(--shp-line);
    border-radius: 50%;
    color: var(--shp-ink);
    height: 44px;
    width: 44px;
}

body.toolbar-enabled .navbar-tool-icon-box:hover {
    background: #fff8e8 !important;
    border-color: rgba(245, 158, 11, .45);
}

body.toolbar-enabled .navbar-tool-label {
    background: var(--shp-ink) !important;
    border: 2px solid #fff;
    font-size: 10px;
    min-width: 20px;
}

body.toolbar-enabled .navbar-stuck-menu {
    background: var(--shp-ink) !important;
    box-shadow: 0 8px 18px rgba(23, 32, 43, .12);
}

body.toolbar-enabled .navbar-stuck-menu > .container {
    min-height: 56px;
    padding: 0 15px !important;
}

body.toolbar-enabled .navbar-stuck-menu .nav-link {
    color: rgba(255, 255, 255, .84) !important;
    font-size: 14px;
    padding: 17px 19px !important;
}

body.toolbar-enabled .navbar-stuck-menu .nav-item.active > .nav-link,
body.toolbar-enabled .navbar-stuck-menu .nav-link:hover {
    color: #fff !important;
    opacity: 1 !important;
}

body.toolbar-enabled .navbar-stuck-menu .nav-item.active > .nav-link::after {
    background: var(--shp-brand);
    border-radius: 2px;
    bottom: 8px;
    content: "";
    height: 3px;
    inset-inline: 19px;
    position: absolute;
}

body.toolbar-enabled .__mega-nav {
    background: transparent !important;
    border-radius: 0 !important;
    margin-inline-end: 14px !important;
    width: 208px !important;
}

body.toolbar-enabled .__mega-nav .nav-link.category-menu-toggle-btn {
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 9px;
    color: #fff !important;
    gap: 10px;
    margin-block: 6px;
    min-height: 43px;
    padding: 9px 12px !important;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

body.toolbar-enabled .__mega-nav .category-menu-toggle-btn-text {
    flex: 1;
    font-size: 12px;
    letter-spacing: .055em;
    margin: 0 !important;
    text-transform: uppercase;
}

body.toolbar-enabled .__mega-nav .category-menu-toggle-btn > svg,
body.toolbar-enabled .__mega-nav .category-menu-toggle-btn > i:first-child {
    color: #ff8a00;
    flex: 0 0 auto;
    height: 18px;
    width: 18px;
}

body.toolbar-enabled .__mega-nav .nav-link.category-menu-toggle-btn:hover {
    background: rgba(255, 255, 255, .13);
    border-color: rgba(255, 138, 0, .78);
    color: #fff !important;
}

/* Hero: contained, cinematic and stable across carousel transitions. */
.shp-hero {
    margin: 26px auto 36px;
    padding: 0 18px !important;
}

.shp-hero > .container {
    max-width: 1380px !important;
    padding-inline: 0 !important;
}

.shp-hero .__top-slider-cate {
    display: none !important;
}

.shp-hero .__top-slider-images {
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

.shp-hero .hero-slider,
.shp-hero .owl-stage-outer {
    background: #f5efe2;
    border-radius: var(--shp-radius-lg);
    overflow: hidden;
}

.shp-hero .hero-slider img,
.shp-hero .__slide-img,
.shp-hero .__slide-img-170 {
    border-radius: 0 !important;
    height: clamp(290px, 31vw, 455px) !important;
    object-fit: cover;
    width: 100% !important;
}

.shp-hero .owl-nav button {
    border: 1px solid rgba(23, 32, 43, .08) !important;
    height: 48px;
    width: 48px;
}

.shp-hero .owl-dots {
    bottom: 18px;
}

.shp-mobile-hero-copy {
    display: none;
}

/* Trust strip becomes a calm continuation of the hero. */
.shp-usp {
    background: transparent;
    border: 0;
    margin: -14px 0 42px;
}

.shp-usp__inner {
    background: #fff;
    border: 1px solid var(--shp-line);
    border-radius: 20px;
    box-shadow: var(--shp-shadow);
    padding: 15px;
}

.shp-usp__ico {
    background: #fff5dd;
    border-radius: 14px;
    color: var(--shp-brand-dark);
}

.shp-usp__txt b {
    font-size: 14px;
}

/* Product cards: consistent image canvas and clearer buying hierarchy. */
.product-single-hover,
.__product-card,
.card.product-card,
[class*="product-card"] {
    background: #fff;
    border: 1px solid var(--shp-line) !important;
    border-radius: var(--shp-radius) !important;
    box-shadow: none !important;
    padding: 10px;
}

.product-single-hover .inline_product {
    background: linear-gradient(145deg, #faf9f6, #f3f1eb);
    border: 0 !important;
    border-radius: 14px !important;
    min-height: 208px;
    overflow: hidden;
}

.product-single-hover .inline_product > a {
    height: 100%;
    width: 100%;
}

.product-single-hover .inline_product img:not(.svg) {
    background: transparent !important;
    border: 0 !important;
    height: 208px !important;
    mix-blend-mode: multiply;
    object-fit: contain !important;
    padding: 14px;
    transform: scale(1.12);
    width: 100%;
}

.product-single-hover .inline_product img.shp-generated-listing,
.flash_deal_product img.shp-generated-listing,
.__product-card img.shp-generated-listing,
.feature-product img.shp-generated-listing {
    background: #f6f3ec !important;
    mix-blend-mode: normal !important;
    object-fit: cover !important;
    padding: 0 !important;
    transform: scale(1) !important;
}

.product-single-hover:hover .inline_product img:not(.svg) {
    transform: scale(1.18);
}

.product-single-hover:hover .inline_product img.shp-generated-listing {
    transform: scale(1.04) !important;
}

.product-single-hover:hover .quick-view {
    background: linear-gradient(180deg, transparent 45%, rgba(23, 32, 43, .1));
}

.product-single-hover .single-product-details {
    padding: 15px 6px 7px;
}

.product-single-hover .single-product-details h3 {
    min-height: 43px;
}

.product-single-hover .single-product-details a {
    -webkit-line-clamp: 2;
    color: var(--shp-ink);
    display: -webkit-box !important;
    font-size: 14px;
    line-height: 1.48;
    white-space: normal !important;
}

.product-single-hover .product-price {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.product-single-hover .product-price .text-accent,
.product-single-hover .product-price span {
    color: var(--shp-ink) !important;
    font-size: 16px !important;
    font-weight: 800 !important;
}

.product-single-hover .for-discount-value {
    background: var(--shp-brand) !important;
    border-radius: 999px !important;
    box-shadow: 0 6px 16px rgba(245, 158, 11, .26);
    color: var(--shp-ink) !important;
    inset-inline-start: 18px;
    padding: 5px 9px !important;
    top: 18px;
}

/* Sections breathe like a curated catalog, not an admin template. */
.__inline-61 {
    gap: 38px !important;
    padding-bottom: 48px;
}

.section-card-margin,
.__featured-deal-wrap {
    padding: 8px;
}

.section-header,
.__inline-62 > .d-flex:first-child {
    margin-bottom: 14px;
}

.section-header h2,
.__inline-62 h2,
.feature-product-title,
.arrival-title {
    font-size: clamp(20px, 2.2vw, 28px) !important;
    font-weight: 800 !important;
}

.view-all-btn-text {
    color: var(--shp-ink-soft) !important;
    font-size: 13px;
    font-weight: 700;
}

.view-all-btn-text:hover {
    color: var(--shp-brand-dark) !important;
}

.footer_banner_img {
    border-radius: 22px !important;
}

/* The legacy 1400x230 sale strip became a blurry product crop on narrower
   screens. This campaign keeps copy as real HTML and uses a dedicated,
   high-resolution visual with a stable responsive focal point. */
.shp-sale-banner {
    align-items: center;
    background: #071018;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
    box-shadow: 0 22px 54px rgba(16, 18, 22, .2);
    color: #fff !important;
    display: flex;
    min-height: clamp(290px, 28vw, 390px);
    overflow: hidden;
    position: relative;
    text-decoration: none !important;
}

.shp-sale-banner::after {
    background: linear-gradient(90deg, rgba(4, 10, 15, .98) 0%, rgba(4, 10, 15, .88) 34%, rgba(4, 10, 15, .28) 58%, rgba(4, 10, 15, .04) 100%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.shp-sale-banner__image {
    border-radius: inherit !important;
    height: 100% !important;
    inset: 0;
    max-height: none !important;
    object-fit: cover;
    object-position: center 60%;
    position: absolute;
    width: 100%;
}

.shp-sale-banner__content {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    padding: clamp(34px, 5vw, 68px);
    position: relative;
    width: min(54%, 630px);
    z-index: 2;
}

.shp-sale-banner__eyebrow {
    color: #ff950f;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.shp-sale-banner__title {
    color: #fff;
    display: block;
    font-size: clamp(31px, 3.7vw, 50px);
    font-weight: 900;
    letter-spacing: -.035em;
    line-height: 1.02;
    max-width: 11ch;
    text-transform: uppercase;
}

.shp-sale-banner__copy {
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.55;
    margin: 16px 0 22px;
    max-width: 42ch;
}

.shp-sale-banner__cta {
    align-items: center;
    background: linear-gradient(135deg, #ff8a00, #f15a00);
    border-radius: 9px;
    box-shadow: 0 12px 26px rgba(241, 90, 0, .28);
    color: #fff;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    gap: 9px;
    min-height: 44px;
    padding: 11px 17px;
    text-transform: uppercase;
}

.shp-sale-banner__offer {
    align-items: center;
    background: rgba(10, 15, 21, .78);
    border: 1px solid rgba(255, 149, 15, .52);
    border-radius: 16px;
    bottom: 22px;
    color: #fff;
    display: flex;
    gap: 6px;
    inset-inline-end: 22px;
    padding: 10px 13px;
    position: absolute;
    z-index: 2;
}

.shp-sale-banner__offer small {
    color: rgba(255, 255, 255, .7);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.shp-sale-banner__offer strong {
    color: #ff950f;
    font-size: 23px;
    font-weight: 900;
    letter-spacing: -.04em;
}

.shp-sale-banner:hover .shp-sale-banner__cta {
    background: linear-gradient(135deg, #ff9a1f, #ff6700);
}

/* Product detail hero and generated catalog-safe visual stages. */
.__inline-23 {
    background: var(--shp-paper);
}

.__inline-23 > .container > .row > .col-lg-9 > div > .card {
    background: #fff;
    border-radius: var(--shp-radius-lg) !important;
    padding: clamp(16px, 2vw, 26px);
}

.__inline-23 .quickviewSlider2 {
    background: linear-gradient(145deg, #faf9f6, #f2f0ea);
    border: 1px solid var(--shp-line) !important;
    border-radius: 20px !important;
    overflow: hidden;
}

.__inline-23 .quickviewSlider2 .easyzoom img {
    mix-blend-mode: multiply;
    object-fit: contain;
    padding: 20px;
}

.__inline-23 .details h2 {
    font-size: clamp(24px, 2.3vw, 34px);
    font-weight: 800;
    line-height: 1.18;
}

.__inline-23 .discounted-unit-price {
    color: var(--shp-ink) !important;
    font-size: 30px !important;
}

.__inline-23 .btn--primary,
.__inline-23 .btn-primary {
    background: var(--shp-brand) !important;
    border-color: var(--shp-brand) !important;
    color: var(--shp-ink) !important;
    min-height: 48px;
    padding-inline: 24px;
}

.__inline-23 .btn-dark {
    background: var(--shp-ink) !important;
    border-color: var(--shp-ink) !important;
    border-radius: 999px !important;
    min-height: 48px;
    padding-inline: 24px;
}

.shp-product-stage {
    background: #f6f3ec;
    isolation: isolate;
    overflow: hidden;
}

.shp-product-stage__background,
.shp-product-stage__product {
    height: 100% !important;
    inset: 0;
    object-fit: cover !important;
    padding: 0 !important;
    position: absolute;
    width: 100% !important;
}

.shp-product-stage__background {
    z-index: 0;
}

.shp-product-stage__product {
    filter: contrast(1.03) saturate(.98);
    inset: 11% !important;
    height: 78% !important;
    mix-blend-mode: multiply;
    object-fit: contain !important;
    width: 78% !important;
    z-index: 1;
}

.shp-product-stage-thumb {
    background: #f6f3ec;
    height: 64px;
    isolation: isolate;
    overflow: hidden;
    width: 64px !important;
}

.shp-product-stage-thumb__background,
.shp-product-stage-thumb__product {
    height: 100% !important;
    inset: 0;
    object-fit: cover !important;
    padding: 0 !important;
    position: absolute;
    width: 100% !important;
}

.shp-product-stage-thumb__product {
    filter: contrast(1.03);
    inset: 12% !important;
    height: 76% !important;
    mix-blend-mode: multiply;
    object-fit: contain !important;
    width: 76% !important;
    z-index: 1;
}

.shp-generated-product-view,
.shp-generated-product-view .easyzoom,
.shp-generated-product-view .easyzoom > a {
    background: #f6f3ec;
    display: block;
    height: 100%;
    width: 100%;
}

.__inline-23 .quickviewSlider2 .shp-generated-product-view img {
    height: 100% !important;
    mix-blend-mode: normal !important;
    object-fit: cover !important;
    padding: 0 !important;
    width: 100% !important;
}

.shp-generated-product-view-thumb {
    background: #f6f3ec;
    height: 64px;
    overflow: hidden;
    width: 64px !important;
}

.shp-generated-product-view-thumb img {
    height: 100% !important;
    mix-blend-mode: normal !important;
    object-fit: cover !important;
    padding: 0 !important;
    width: 100% !important;
}

.shp-image-fallback {
    background: #f5f3ee !important;
    mix-blend-mode: normal !important;
    object-fit: contain !important;
    padding: 22px !important;
}

.shp-crumb {
    margin-bottom: 0;
}

/* Strong, visible keyboard focus throughout commerce controls. */
body.toolbar-enabled :where(a, button, input, select, textarea):focus-visible {
    outline: 3px solid rgba(245, 158, 11, .55) !important;
    outline-offset: 3px;
}

@media (max-width: 991px) {
    body.toolbar-enabled .navbar-sticky > .navbar:first-child {
        min-height: 72px;
    }

    body.toolbar-enabled .navbar-brand img {
        max-height: 42px;
        max-width: 116px;
    }

    .shp-hero {
        margin-top: 16px;
        padding-inline: 12px !important;
    }

    .shp-hero .hero-slider img,
    .shp-hero .__slide-img,
    .shp-hero .__slide-img-170 {
        height: clamp(230px, 42vw, 360px) !important;
    }

    .product-single-hover .inline_product,
    .product-single-hover .inline_product img:not(.svg) {
        min-height: 182px;
        height: 182px !important;
    }
}

@media (max-width: 767px) {
    body.toolbar-enabled .navbar-stuck-menu {
        display: none !important;
    }

    body.toolbar-enabled .navbar-sticky > .navbar:first-child {
        min-height: 64px;
        padding-block: 8px;
    }

    body.toolbar-enabled .navbar-tool-icon-box,
    body.toolbar-enabled .navbar-tool-icon-box.bg-secondary {
        height: 38px;
        width: 38px;
    }

    body.toolbar-enabled .navbar-brand.d-sm-none {
        margin: 0;
        width: 104px;
    }

    body.toolbar-enabled .navbar-brand.d-sm-none img {
        max-height: 40px;
        max-width: 104px;
        width: 104px;
    }

    .shp-hero {
        margin-bottom: 22px;
    }

    .shp-hero .hero-slider,
    .shp-hero .owl-stage-outer {
        border-radius: 18px;
    }

    .shp-hero .owl-item a {
        background: #f7eddb;
        height: 292px;
        overflow: hidden;
        position: relative;
    }

    .shp-hero .hero-slider img,
    .shp-hero .__slide-img,
    .shp-hero .__slide-img-170 {
        height: 292px !important;
        object-fit: cover !important;
        object-position: right center !important;
    }

    .shp-mobile-hero-copy {
        align-items: flex-start;
        backdrop-filter: blur(12px);
        background: rgba(255, 255, 255, .94);
        border: 1px solid rgba(255, 255, 255, .7);
        border-radius: 15px;
        bottom: 12px;
        box-shadow: 0 12px 28px rgba(23, 32, 43, .16);
        display: flex;
        flex-direction: column;
        inset-inline: 12px;
        padding: 13px 15px;
        position: absolute;
        z-index: 2;
    }

    .shp-mobile-hero-copy small {
        color: var(--shp-brand-dark);
        font-size: 10px;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .shp-mobile-hero-copy b {
        color: var(--shp-ink);
        font-size: 19px;
        line-height: 1.2;
        margin-top: 3px;
    }

    .shp-mobile-hero-copy em {
        color: var(--shp-ink-soft);
        font-size: 11px;
        font-style: normal;
        font-weight: 700;
        margin-top: 7px;
    }

    .shp-usp {
        margin-bottom: 28px;
    }

    .shp-usp__inner {
        border-radius: 16px;
        grid-template-columns: 1fr 1fr;
        padding: 10px;
    }

    .shp-usp__item {
        gap: 9px;
        padding: 10px 6px;
    }

    .shp-usp__ico {
        flex-basis: 34px;
        height: 34px;
        width: 34px;
    }

    .shp-usp__txt b {
        font-size: 12px;
    }

    .shp-usp__txt i {
        display: none;
    }

    .__inline-61 {
        gap: 26px !important;
    }

    .product-single-hover {
        border-radius: 14px !important;
        padding: 7px;
    }

    .product-single-hover .inline_product,
    .product-single-hover .inline_product img:not(.svg) {
        min-height: 150px;
        height: 150px !important;
    }

    .product-single-hover .inline_product img:not(.svg) {
        padding: 10px;
    }

    .product-single-hover .single-product-details {
        padding-top: 11px;
    }

    .product-single-hover .single-product-details h3 {
        min-height: 38px;
    }

    .product-single-hover .single-product-details a {
        font-size: 12.5px;
        line-height: 1.42;
    }

    .__inline-23 > .container {
        margin-top: 14px !important;
    }

    .__inline-23 .details h2 {
        font-size: 23px;
        margin-bottom: 14px !important;
    }
}

/* ============================ 12. breadcrumb =========================== */
.shp-crumb {
    background: #fafbfc;
    border-bottom: 1px solid var(--shp-line);
    font-size: 13.5px;
    padding: 11px 0;
}
.shp-crumb .container { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.shp-crumb a { color: var(--shp-muted); text-decoration: none; }
.shp-crumb a:hover { color: var(--shp-brand-dark); }
.shp-crumb span { color: #c6cbd4; }
.shp-crumb em {
    font-style: normal; color: var(--shp-ink); font-weight: 600;
    max-width: 60ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* ============================ 14. premium commerce hero =============== */
.shp-premium-hero {
    background: var(--shp-paper);
    overflow: hidden;
    padding: 0 0 10px;
    width: 100%;
}

.shp-premium-hero > .container {
    max-width: none !important;
    padding-inline: 0 !important;
    width: 100% !important;
}

.shp-premium-hero__visual {
    background: #0a0b0d;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 0;
    box-shadow: 0 26px 70px rgba(14, 17, 22, .2);
    min-height: max(520px, calc(100svh - 203px));
    overflow: hidden;
    position: relative;
}

.shp-premium-hero__visual::after {
    background: linear-gradient(90deg, rgba(7, 8, 10, .96) 0%, rgba(7, 8, 10, .82) 34%, rgba(7, 8, 10, .18) 65%, rgba(7, 8, 10, .05) 100%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.shp-premium-hero__visual > img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    width: 100%;
}

.shp-premium-hero__content {
    color: #fff;
    max-width: 620px;
    padding: clamp(56px, 6vw, 92px) clamp(28px, 5.5vw, 76px) 160px;
    position: relative;
    z-index: 2;
}

.shp-premium-hero__eyebrow {
    color: #ffad20;
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.shp-premium-hero__content h1 {
    color: #fff !important;
    font-size: clamp(46px, 5vw, 72px);
    font-weight: 900;
    letter-spacing: -.055em !important;
    line-height: .94;
    margin: 0;
    max-width: 8.5ch;
    text-transform: uppercase;
}

.shp-premium-hero__content h1 strong {
    color: #ff7a00;
    display: block;
    font-weight: inherit;
}

.shp-premium-hero__content p {
    color: rgba(255, 255, 255, .78);
    font-size: 17px;
    line-height: 1.55;
    margin: 24px 0 28px;
    max-width: 44ch;
}

.shp-premium-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.shp-button {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 10px;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    gap: 10px;
    justify-content: center;
    letter-spacing: .035em;
    min-height: 50px;
    padding: 0 22px;
    text-transform: uppercase;
}

.shp-button--accent {
    background: linear-gradient(135deg, #ff8a00, #f15a00);
    box-shadow: 0 12px 28px rgba(241, 90, 0, .3);
    color: #fff !important;
}

.shp-card-cta {
    align-items: center;
    background: linear-gradient(135deg, #ff8500, #f15a00);
    border-radius: 8px;
    color: #fff !important;
    display: flex;
    font-size: 11px;
    font-weight: 850;
    gap: 8px;
    justify-content: center;
    margin-top: 13px;
    min-height: 38px;
    padding-inline: 14px;
    text-transform: uppercase;
    width: 100%;
}

.shp-card-cta:hover {
    box-shadow: 0 10px 22px rgba(241, 90, 0, .26);
    color: #fff !important;
    transform: translateY(-1px);
}

.shp-button--accent:hover {
    box-shadow: 0 16px 34px rgba(241, 90, 0, .42);
    color: #fff !important;
    transform: translateY(-2px);
}

.shp-button--ghost {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .38);
    color: #fff !important;
}

.shp-button--ghost:hover {
    background: #fff;
    color: var(--shp-ink) !important;
}

.shp-premium-hero__benefits {
    backdrop-filter: blur(14px);
    background: rgba(5, 6, 8, .76);
    border-top: 1px solid rgba(255, 255, 255, .14);
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    inset-inline: 0;
    min-height: 104px;
    position: absolute;
    z-index: 3;
}

.shp-premium-hero__benefits > div {
    align-items: center;
    border-inline-end: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    display: flex;
    gap: 13px;
    justify-content: center;
    padding: 18px;
}

.shp-premium-hero__benefits > div:last-child {
    border-inline-end: 0;
}

.shp-premium-hero__benefits i {
    color: #ff8a00;
    font-size: 25px;
}

.shp-premium-hero__benefits span {
    color: rgba(255, 255, 255, .62);
    display: flex;
    flex-direction: column;
    font-size: 10px;
    line-height: 1.25;
    text-transform: uppercase;
}

.shp-premium-hero__benefits strong {
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .035em;
}

@media (max-width: 767px) {
    .shp-premium-hero {
        padding: 0 0 4px;
    }

    .shp-premium-hero__visual {
        border-radius: 0;
        min-height: 660px;
    }

    .shp-premium-hero__visual::after {
        background: linear-gradient(180deg, rgba(5, 6, 8, .94) 0%, rgba(5, 6, 8, .6) 48%, rgba(5, 6, 8, .18) 69%, rgba(5, 6, 8, .9) 100%);
    }

    .shp-premium-hero__visual > img {
        object-position: 67% center;
    }

    .shp-premium-hero__content {
        padding: 38px 25px 250px;
    }

    .shp-premium-hero__content h1 {
        font-size: clamp(40px, 13vw, 54px);
    }

    .shp-premium-hero__content p {
        font-size: 14px;
        margin-block: 18px 22px;
        max-width: 31ch;
    }

    .shp-premium-hero__benefits {
        grid-template-columns: 1fr 1fr;
        min-height: 150px;
    }

    .shp-premium-hero__benefits > div {
        justify-content: flex-start;
        padding: 13px 16px;
    }

    .shp-premium-hero__benefits > div:nth-child(2) {
        border-inline-end: 0;
    }

    .shp-premium-hero__benefits > div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }
}

/* ============================ 15. campaign storytelling =============== */
.shp-brand-campaign,
.shp-kitchen-campaign {
    padding-inline: 15px;
}

.shp-brand-campaign__visual,
.shp-kitchen-campaign__visual {
    border-radius: 24px;
    min-height: 350px;
    overflow: hidden;
    position: relative;
}

.shp-brand-campaign__visual {
    background: #070809;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 22px 54px rgba(16, 18, 22, .2);
}

.shp-brand-campaign__visual::after {
    background: linear-gradient(90deg, rgba(6, 7, 9, .97) 0%, rgba(6, 7, 9, .83) 32%, rgba(6, 7, 9, .15) 62%, rgba(6, 7, 9, .08) 100%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.shp-brand-campaign__visual > img,
.shp-kitchen-campaign__visual > img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.shp-brand-campaign__content {
    color: #fff;
    max-width: 530px;
    padding: clamp(42px, 5vw, 68px);
    position: relative;
    z-index: 2;
}

.shp-brand-campaign__content > span,
.shp-kitchen-campaign__content > span {
    color: #ff8a00;
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    margin-bottom: 11px;
    text-transform: uppercase;
}

.shp-brand-campaign__content h2 {
    color: #fff !important;
    font-size: clamp(30px, 3.6vw, 48px);
    font-weight: 850;
    line-height: 1.04;
    margin: 0;
    max-width: 12ch;
    text-transform: uppercase;
}

.shp-brand-campaign__content h2 strong {
    color: #ff7800;
    display: block;
    font-weight: 900;
}

.shp-brand-campaign__content p {
    color: rgba(255, 255, 255, .7);
    line-height: 1.58;
    margin: 18px 0 24px;
    max-width: 46ch;
}

.shp-brand-campaign__actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.shp-brand-campaign__actions > a:not(.shp-button) {
    border-bottom: 1px solid rgba(255, 255, 255, .32);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding-block: 5px;
    text-transform: uppercase;
}

.shp-brand-campaign__offer {
    align-items: center;
    background: linear-gradient(145deg, #ff8b00, #f05a00);
    border-radius: 50%;
    box-shadow: 0 16px 40px rgba(241, 90, 0, .35);
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 136px;
    inset-inline-end: 34px;
    justify-content: center;
    line-height: .9;
    position: absolute;
    top: 28px;
    width: 136px;
    z-index: 3;
}

.shp-brand-campaign__offer small,
.shp-brand-campaign__offer span {
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.shp-brand-campaign__offer strong {
    font-size: 45px;
    font-weight: 900;
    letter-spacing: -.06em;
    margin-block: 5px;
}

.shp-kitchen-campaign__visual {
    background: #ead9bd;
    border: 1px solid #dfd3c1;
    box-shadow: 0 18px 44px rgba(67, 48, 25, .12);
    min-height: 390px;
}

.shp-kitchen-campaign__visual::after {
    background: linear-gradient(90deg, rgba(255, 251, 243, .97) 0%, rgba(255, 251, 243, .82) 37%, rgba(255, 251, 243, .08) 65%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.shp-kitchen-campaign__content {
    max-width: 540px;
    padding: clamp(48px, 6vw, 82px);
    position: relative;
    z-index: 2;
}

.shp-kitchen-campaign__content h2 {
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.02;
    margin: 0;
    max-width: 10ch;
    text-transform: uppercase;
}

.shp-kitchen-campaign__content p {
    color: var(--shp-ink-soft);
    font-size: 15px;
    line-height: 1.6;
    margin: 20px 0 26px;
    max-width: 44ch;
}

/* ============================ 16. reference-led storefront polish ===== */
.shp-ticker {
    background: linear-gradient(90deg, #ff7a00, #f15a00);
    height: 35px;
}

.shp-ticker__track {
    gap: 70px;
}

.shp-ticker__item {
    color: #fff;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.shp-ticker__item b {
    color: #fff;
    font-weight: 900;
}

body.toolbar-enabled {
    background: #f8f5ef;
}

body.toolbar-enabled header .topbar {
    background: #fffaf4 !important;
    min-height: 31px;
}

body.toolbar-enabled .navbar-sticky > .navbar:first-child {
    min-height: 78px;
}

body.toolbar-enabled .navbar-brand img {
    max-height: 48px;
    max-width: 172px;
}

body.toolbar-enabled .navbar-stuck-menu > .container {
    min-height: 52px;
}

body.toolbar-enabled .navbar-stuck-menu .nav-link {
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .035em;
    padding-block: 15px !important;
    text-transform: uppercase;
}

body.toolbar-enabled .search_form .d-flex {
    border-radius: 8px;
    min-height: 46px;
}

body.toolbar-enabled .search_form .appended-form-control {
    height: 44px;
}

body.toolbar-enabled .search_form .search_button {
    border-radius: 7px;
    margin: 3px;
}

.__inline-61 {
    gap: 30px !important;
}

body.toolbar-enabled .__inline-62,
body.toolbar-enabled .__featured-deal-wrap {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.section-header h2,
.__inline-62 h2,
.feature-product-title,
.arrival-title,
.featured_deal_title {
    font-size: clamp(22px, 2.4vw, 31px) !important;
    font-weight: 900 !important;
    letter-spacing: -.035em !important;
    text-transform: uppercase;
}

.section-header h2::after,
.__inline-62 h2::after {
    background: linear-gradient(90deg, #ff8500, #f15a00);
    height: 4px;
    width: 52px;
}

/* Category merchandising resembles a premium appliance showroom. */
body.toolbar-enabled .__cate-item {
    margin: 4px !important;
    min-width: 0;
}

body.toolbar-enabled .__cate-item > a {
    background: #fff;
    border: 1px solid #e7dfd4;
    border-radius: 14px;
    min-height: 166px;
    padding: 12px 9px 10px;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

body.toolbar-enabled .__cate-item > a:hover {
    border-color: rgba(241, 90, 0, .46);
    box-shadow: 0 14px 30px rgba(34, 27, 18, .11);
    transform: translateY(-4px);
}

body.toolbar-enabled .__cate-item .__img {
    background: linear-gradient(145deg, #fbf8f2, #f2ede5);
    border: 0;
    border-radius: 11px;
    height: 112px;
    max-width: none;
    overflow: hidden;
    width: 100%;
}

body.toolbar-enabled .__cate-item .__img img {
    height: 100%;
    mix-blend-mode: multiply;
    object-fit: contain;
    padding: 7px;
    transition: transform .35s ease;
    width: 100%;
}

body.toolbar-enabled .__cate-item > a:hover .__img img {
    transform: scale(1.08);
}

body.toolbar-enabled .__cate-item h3 {
    color: var(--shp-ink);
    font-size: 12px !important;
    font-weight: 850 !important;
    letter-spacing: .01em;
    margin-top: 11px !important;
    text-transform: uppercase;
}

body.toolbar-enabled .__inline-62 > .card,
body.toolbar-enabled .__inline-62 .card-body {
    background: transparent;
    border: 0 !important;
    box-shadow: none !important;
    padding-inline: 0;
}

/* Denser deal cards and stronger commercial hierarchy. */
.product-single-hover,
.__product-card,
.card.product-card,
[class*="product-card"] {
    border-color: #e5ded4 !important;
    border-radius: 12px !important;
    padding: 8px;
}

.product-single-hover .inline_product {
    border-radius: 9px !important;
}

.product-single-hover .single-product-details a {
    font-weight: 700;
}

.product-single-hover .product-price .text-accent,
.product-single-hover .product-price span {
    font-size: 17px !important;
    font-weight: 900 !important;
}

.product-single-hover .for-discount-value {
    background: linear-gradient(135deg, #ff8500, #f15a00) !important;
    color: #fff !important;
}

.brand-slider,
.brands-slider {
    background: #fff;
    border: 1px solid #e7dfd4;
    border-radius: 14px;
}

/* Footer closes the storefront with the same confident dark brand field. */
body.toolbar-enabled footer.page-footer,
body.toolbar-enabled footer.page-footer > .custom-light-primary-color-20 {
    background: #111318 !important;
    color: rgba(255, 255, 255, .68);
}

body.toolbar-enabled footer.page-footer .footer-header,
body.toolbar-enabled footer.page-footer h6,
body.toolbar-enabled footer.page-footer .font-weight-bold {
    color: #fff !important;
}

body.toolbar-enabled footer.page-footer .widget-list-link,
body.toolbar-enabled footer.page-footer a,
body.toolbar-enabled footer.page-footer small,
body.toolbar-enabled footer.page-footer .text-center {
    color: rgba(255, 255, 255, .65);
}

body.toolbar-enabled footer.page-footer a:hover {
    color: #ff8a00 !important;
}

body.toolbar-enabled footer.page-footer hr {
    border-color: rgba(255, 255, 255, .13);
}

body.toolbar-enabled footer.page-footer .footer-web-logo img {
    background: #fff;
    border-radius: 9px;
    max-height: none;
    max-width: 190px;
    padding: 9px 12px;
}

body.toolbar-enabled footer.page-footer .subscribe-border {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .18);
    color: #fff;
}

body.toolbar-enabled footer.page-footer .subscribe-button {
    background: linear-gradient(135deg, #ff8500, #f15a00);
    color: #fff;
}

@media (max-width: 767px) {
    .shp-brand-campaign,
    .shp-kitchen-campaign {
        padding-inline: 10px;
    }

    .shp-sale-banner {
        align-items: flex-start;
        border-radius: 18px;
        min-height: 430px;
    }

    .shp-sale-banner::after {
        background: linear-gradient(180deg, rgba(4, 10, 15, .98) 0%, rgba(4, 10, 15, .77) 47%, rgba(4, 10, 15, .2) 72%, rgba(4, 10, 15, .72) 100%);
    }

    .shp-sale-banner__image {
        object-position: 63% center;
    }

    .shp-sale-banner__content {
        padding: 30px 24px 210px;
        width: 100%;
    }

    .shp-sale-banner__title {
        font-size: clamp(30px, 9vw, 42px);
        max-width: 12ch;
    }

    .shp-sale-banner__copy {
        font-size: 13px;
        margin-block: 12px 18px;
        max-width: 31ch;
    }

    .shp-sale-banner__offer {
        bottom: 14px;
        inset-inline-end: 14px;
    }

    .shp-brand-campaign__visual,
    .shp-kitchen-campaign__visual {
        border-radius: 18px;
        min-height: 560px;
    }

    .shp-brand-campaign__visual::after {
        background: linear-gradient(180deg, rgba(6, 7, 9, .96) 0%, rgba(6, 7, 9, .62) 48%, rgba(6, 7, 9, .22) 78%, rgba(6, 7, 9, .8) 100%);
    }

    .shp-brand-campaign__visual > img {
        object-position: 66% center;
    }

    .shp-brand-campaign__content {
        padding: 34px 24px 260px;
    }

    .shp-brand-campaign__offer {
        height: 94px;
        inset-inline-end: 18px;
        top: auto;
        bottom: 18px;
        width: 94px;
    }

    .shp-brand-campaign__offer strong {
        font-size: 32px;
    }

    .shp-kitchen-campaign__visual {
        min-height: 530px;
    }

    .shp-kitchen-campaign__visual::after {
        background: linear-gradient(180deg, rgba(255, 251, 243, .98) 0%, rgba(255, 251, 243, .78) 48%, rgba(255, 251, 243, .05) 78%);
    }

    .shp-kitchen-campaign__visual > img {
        object-position: 70% bottom;
    }

    .shp-kitchen-campaign__content {
        padding: 34px 24px 260px;
    }

    body.toolbar-enabled .__cate-item > a {
        min-height: 142px;
    }

    body.toolbar-enabled .__cate-item .__img {
        height: 90px;
    }

    .shp-ticker {
        height: 31px;
    }
}

/* ============================ 17. premium catalog experience ======= */
.product-list-filter > .search-page-header {
    align-items: center;
    background:
        radial-gradient(circle at 88% 12%, rgba(255, 132, 0, .22), transparent 30%),
        linear-gradient(135deg, #121418 0%, #20242a 100%);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(26, 22, 17, .14);
    color: rgba(255, 255, 255, .7);
    margin-top: 18px !important;
    min-height: 112px;
    padding: 22px 24px;
}

.product-list-filter > .search-page-header h5,
.product-list-filter > .search-page-header .widget-title {
    color: #fff !important;
    font-size: clamp(22px, 2.4vw, 32px) !important;
    font-weight: 900 !important;
    letter-spacing: -.035em;
    text-transform: uppercase;
}

.product-list-filter > .search-page-header .view-page-item-count {
    color: #ff8a00;
    font-weight: 900;
}

.product-list-filter > .search-page-header .search-page-button-input {
    background: rgba(255, 255, 255, .97);
    border: 0 !important;
    border-radius: 9px !important;
    box-shadow: none !important;
    height: 46px;
    min-width: 220px;
}

.product-list-filter > .search-page-header .search-page-button {
    background: linear-gradient(135deg, #ff8500, #f15a00);
    border-radius: 8px;
    inset-inline-end: 4px;
    top: 4px;
}

.product-list-filter > .search-page-header .sorting-item {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 9px;
    color: #fff;
    min-height: 46px;
    padding-inline: 12px;
}

.product-list-filter > .search-page-header .sorting-item label,
.product-list-filter > .search-page-header .sorting-item svg {
    color: rgba(255, 255, 255, .72) !important;
}

.product-list-filter > .search-page-header .product-list-filter-input {
    color: #fff;
}

.product-list-filter > .search-page-header .product-list-filter-input option {
    color: #17191d;
}

.product-list-filter .__search-sidebar .cz-sidebar {
    background: #fff;
    border: 1px solid #e4ddd2;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(41, 33, 22, .07);
}

.product-list-filter .shop-sidebar-scroll h5 {
    font-weight: 900 !important;
    letter-spacing: -.015em;
    text-transform: uppercase;
}

.product-list-filter .shop-sidebar-scroll hr {
    border-color: #ede6dc;
    margin-block: 4px 8px;
}

.product-list-filter .shop-sidebar-scroll .form-control,
.product-list-filter .shop-sidebar-scroll .select2-selection {
    background: #f8f5ef !important;
    border: 1px solid #e5ddd1 !important;
    border-radius: 8px !important;
}

#ajax-products-view > .product-with-bg {
    margin-bottom: 8px;
}

#ajax-products-view .product-single-hover {
    background: #fff;
    box-shadow: 0 9px 28px rgba(42, 34, 23, .07);
    min-height: 100%;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

#ajax-products-view .product-single-hover:hover {
    border-color: rgba(241, 90, 0, .48) !important;
    box-shadow: 0 18px 38px rgba(42, 34, 23, .14);
    transform: translateY(-4px);
}

#ajax-products-view .inline_product {
    aspect-ratio: 1 / 1;
    background: linear-gradient(145deg, #fbfaf7, #f0ece5);
}

#ajax-products-view .inline_product a,
#ajax-products-view .inline_product img {
    height: 100%;
    width: 100%;
}

#ajax-products-view .inline_product img {
    border: 0 !important;
    mix-blend-mode: multiply;
    object-fit: contain;
    padding: 9px;
}

#ajax-products-view .single-product-details {
    display: flex;
    flex-direction: column;
    min-height: 150px;
    padding: 14px 8px 6px;
}

#ajax-products-view .single-product-details h4 {
    line-height: 1.35 !important;
    min-height: 38px;
}

.shp-card-cta {
    align-items: center;
    background: linear-gradient(135deg, #ff8500, #f15a00);
    border-radius: 8px;
    color: #fff !important;
    display: inline-flex;
    font-size: 11px;
    font-weight: 850;
    justify-content: center;
    letter-spacing: .035em;
    margin-top: auto;
    min-height: 34px;
    padding: 8px 12px;
    text-transform: uppercase;
    transition: filter .2s ease, transform .2s ease;
}

.shp-card-cta:hover {
    filter: brightness(.94);
    transform: translateY(-1px);
}

.pagination .page-link {
    border-color: #e2dbd0;
    color: #23262b;
}

.pagination .active .page-link,
.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #ff8500, #f15a00) !important;
    border-color: #f15a00 !important;
}

@media (max-width: 991px) {
    .product-list-filter > .search-page-header {
        min-height: 0;
        padding: 18px;
    }

    .product-list-filter > .search-page-header .filter-show-btn {
        background: linear-gradient(135deg, #ff8500, #f15a00) !important;
        border-radius: 9px;
    }
}

@media (max-width: 575px) {
    .product-list-filter > .search-page-header {
        border-radius: 14px;
        margin-inline: 0;
    }

    .product-list-filter > .search-page-header .search-page-button-input {
        min-width: 0;
    }

    #ajax-products-view > .product-with-bg {
        padding: 5px !important;
    }

    #ajax-products-view .product-single-hover {
        padding: 6px;
    }

    #ajax-products-view .single-product-details {
        min-height: 142px;
        padding-inline: 3px;
    }

    .shp-card-cta {
        font-size: 10px;
        min-height: 32px;
        padding-inline: 7px;
    }
}

/* ============================ 18. hero banner slider ===================
   Turns the premium hero into a 2-3 banner fading slider. Slides stack
   inside the existing __visual frame; shp-theme.js adds dots/arrows and
   autoplay. With JS off, the first slide simply shows as a static hero. */
.shp-hero-carousel::after {
    content: none;
}

.shp-hero-carousel {
    min-height: max(520px, calc(100svh - 203px));
}

.shp-hero-slide {
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: opacity .85s var(--shp-ease);
    z-index: 1;
}

.shp-hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.shp-hero-slide > img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    width: 100%;
}

.shp-hero-slide::after {
    background: linear-gradient(90deg, rgba(7, 8, 10, .96) 0%, rgba(7, 8, 10, .82) 34%, rgba(7, 8, 10, .18) 65%, rgba(7, 8, 10, .05) 100%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.shp-hero-slide .shp-premium-hero__content {
    z-index: 2;
}

.shp-hero-slide__title {
    color: #fff !important;
    font-size: clamp(46px, 5vw, 72px);
    font-weight: 900;
    letter-spacing: -.055em !important;
    line-height: .94;
    margin: 0;
    max-width: 10ch;
    text-transform: uppercase;
}

.shp-hero-slide__title strong {
    color: #ff7a00;
    display: block;
    font-weight: inherit;
}

/* Warm daylight slide: light scrim, dark type. */
.shp-hero-slide--light::after {
    background: linear-gradient(90deg, rgba(255, 251, 243, .97) 0%, rgba(255, 251, 243, .82) 37%, rgba(255, 251, 243, .12) 65%, rgba(255, 251, 243, .04) 100%);
}

.shp-hero-slide--light .shp-premium-hero__eyebrow {
    color: #d96a00;
}

.shp-hero-slide--light .shp-hero-slide__title {
    color: var(--shp-ink) !important;
}

.shp-hero-slide--light .shp-premium-hero__content p {
    color: var(--shp-ink-soft);
}

/* JS-built slide controls sit above the benefits bar. */
.shp-hero-dots {
    bottom: 122px;
    display: flex;
    gap: 9px;
    inset-inline-start: clamp(28px, 5.5vw, 76px);
    position: absolute;
    z-index: 4;
}

.shp-hero-dot {
    background: rgba(255, 255, 255, .38);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    height: 8px;
    padding: 0;
    transition: background .3s var(--shp-ease), width .3s var(--shp-ease);
    width: 8px;
}

.shp-hero-dot.is-active {
    background: #ff8a00;
    width: 28px;
}

.shp-hero-arrows {
    bottom: 116px;
    display: flex;
    gap: 8px;
    inset-inline-end: clamp(24px, 4vw, 48px);
    position: absolute;
    z-index: 4;
}

.shp-hero-arrow {
    align-items: center;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 15px;
    height: 40px;
    justify-content: center;
    padding: 0;
    transition: background .25s var(--shp-ease), border-color .25s var(--shp-ease);
    width: 40px;
}

.shp-hero-arrow:hover {
    background: #ff8a00;
    border-color: #ff8a00;
}

@media (prefers-reduced-motion: reduce) {
    .shp-hero-slide { transition: none; }
}

@media (max-width: 767px) {
    .shp-hero-carousel {
        min-height: 660px;
    }

    .shp-hero-slide > img {
        object-position: 67% center;
    }

    .shp-hero-slide::after {
        background: linear-gradient(180deg, rgba(5, 6, 8, .94) 0%, rgba(5, 6, 8, .6) 48%, rgba(5, 6, 8, .18) 69%, rgba(5, 6, 8, .9) 100%);
    }

    .shp-hero-slide--light::after {
        background: linear-gradient(180deg, rgba(255, 251, 243, .98) 0%, rgba(255, 251, 243, .8) 48%, rgba(255, 251, 243, .12) 78%, rgba(255, 251, 243, .9) 100%);
    }

    .shp-hero-slide__title {
        font-size: clamp(40px, 13vw, 54px);
    }

    .shp-hero-dots {
        bottom: 168px;
        inset-inline-start: 25px;
    }

    .shp-hero-arrows {
        display: none;
    }
}

/* Controls flip to dark ink while the light slide is showing. */
.shp-hero-carousel.shp-light-active .shp-hero-dot {
    background: rgba(23, 32, 43, .3);
}

.shp-hero-carousel.shp-light-active .shp-hero-dot.is-active {
    background: #f15a00;
}

.shp-hero-carousel.shp-light-active .shp-hero-arrow {
    background: rgba(23, 32, 43, .08);
    border-color: rgba(23, 32, 43, .3);
    color: var(--shp-ink);
}

.shp-hero-carousel.shp-light-active .shp-hero-arrow:hover {
    background: #ff8a00;
    border-color: #ff8a00;
    color: #fff;
}

/* ============================ 19. conversion and accessibility polish = */
.shp-skip-link {
    background: #111318;
    border: 2px solid #ff8500;
    border-radius: 0 0 8px 8px;
    color: #fff !important;
    font-size: 13px;
    font-weight: 800;
    inset-inline-start: 18px;
    padding: 11px 16px;
    position: fixed;
    top: -80px;
    transition: top .2s ease;
    z-index: 100000;
}

.shp-skip-link:focus {
    top: 0;
}

#main-content:focus {
    outline: none;
}

body.toolbar-enabled :where(a, button, input, select, textarea, [tabindex]):focus-visible {
    outline: 3px solid rgba(255, 133, 0, .82) !important;
    outline-offset: 3px;
}

body.toolbar-enabled .navbar-tool-icon-box,
body.toolbar-enabled .navbar-toggler,
body.toolbar-enabled .search_button {
    min-height: 42px;
    min-width: 42px;
}

.product-list-filter > .search-page-header {
    isolation: isolate;
    position: relative;
}

.product-list-filter > .search-page-header::before {
    background: linear-gradient(90deg, #ff8500, #f15a00);
    border-radius: 99px;
    bottom: 18px;
    content: "";
    height: 3px;
    inset-inline-start: 24px;
    position: absolute;
    width: 46px;
    z-index: 1;
}

@media (min-width: 992px) {
    .product-list-filter .__search-sidebar .cz-sidebar {
        max-height: calc(100vh - 170px);
        overflow: hidden;
        position: sticky;
        top: 142px;
    }

    .product-list-filter .shop-sidebar-scroll {
        max-height: calc(100vh - 225px);
        overflow-y: auto;
        padding-inline-end: 6px;
        scrollbar-color: #d3c7b6 transparent;
        scrollbar-width: thin;
    }
}

#ajax-products-view {
    transition: opacity .2s ease;
}

#ajax-products-view[aria-busy="true"] {
    opacity: .45;
    pointer-events: none;
}

#ajax-products-view .product-single-hover {
    overflow: hidden;
}

#ajax-products-view .inline_product img {
    transition: transform .35s var(--shp-ease), opacity .25s ease;
}

#ajax-products-view .product-single-hover:hover .inline_product img {
    transform: scale(1.045);
}

#ajax-products-view .single-product-details h4 a {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    min-height: 38px;
    overflow: hidden;
}

#ajax-products-view .quick-view .action-product-quick-view {
    align-items: center;
    background: #fff;
    box-shadow: 0 6px 18px rgba(19, 21, 25, .16);
    color: #17191d;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
}

#ajax-products-view .quick-view .action-product-quick-view:hover,
#ajax-products-view .quick-view .action-product-quick-view:focus-visible {
    background: #ff7a00;
    color: #fff;
}

.product-list-filter .filter-show-btn {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
}

.product-list-filter .cz-sidebar-header .close {
    align-items: center;
    border-radius: 50%;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.pagination {
    flex-wrap: wrap;
    gap: 5px;
}

.pagination .page-link {
    align-items: center;
    border-radius: 8px !important;
    display: inline-flex;
    justify-content: center;
    min-height: 40px;
    min-width: 40px;
}

@media (hover: none) {
    #ajax-products-view .product-single-hover:hover {
        transform: none;
    }

    #ajax-products-view .product-single-hover:hover .inline_product img {
        transform: none;
    }

    #ajax-products-view .quick-view {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 767px) {
    .product-list-filter > .search-page-header {
        align-items: stretch;
        gap: 14px !important;
    }

    .product-list-filter > .search-page-header > div,
    .product-list-filter > .search-page-header > div > div {
        max-width: 100%;
    }

    .product-list-filter > .search-page-header .search-page-button-input {
        font-size: 16px;
        height: 48px;
    }

    .product-list-filter > .search-page-header::before {
        bottom: auto;
        top: 65px;
    }

    #ajax-products-view .single-product-details h4,
    #ajax-products-view .single-product-details h4 a {
        min-height: 36px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .shp-skip-link,
    #ajax-products-view,
    #ajax-products-view .inline_product img,
    #ajax-products-view .product-single-hover,
    .shp-card-cta {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
