:root {
    --storefront-surface: #070707;
    --storefront-surface-soft: #101010;
    --storefront-surface-muted: #171717;
    --storefront-border: rgba(255, 255, 255, 0.08);
    --storefront-text: #ffffff;
    --storefront-text-muted: rgba(255, 255, 255, 0.72);
    --storefront-panel: #ffffff;
    --storefront-panel-soft: #f6f6f6;
    --storefront-panel-border: rgba(9, 9, 9, 0.08);
    --storefront-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

body {
    background: #fff;
}

main {
    padding-top: 78px;
}

html.storefront-search-open,
body.storefront-search-open {
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
}

.header-area.storefront-header-shell {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1040;
    background: linear-gradient(90deg, rgba(7, 7, 7, 0.98), rgba(7, 7, 7, 0.94));
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.header-area.storefront-header-shell.active {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.24);
}

.storefront-header-shell__bar {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    min-height: 78px;
}

.storefront-header-shell__brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    z-index: 2;
}

.storefront-header-shell__mobile-start {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.storefront-header-shell .logo,
.storefront-header-shell .logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.storefront-header-shell .logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: 188px;
    max-height: 34px;
    object-fit: contain;
}

.storefront-header-shell__nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
}

.storefront-nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 78px;
}

.storefront-nav-link {
    position: relative;
    color: var(--storefront-text);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.storefront-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.45rem;
    width: 100%;
    height: 2px;
    background: #fff !important;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.storefront-nav-item:hover .storefront-nav-link,
.storefront-nav-item:focus-within .storefront-nav-link {
    color: var(--storefront-text);
}

.storefront-nav-item:hover .storefront-nav-link::after,
.storefront-nav-item:focus-within .storefront-nav-link::after {
    transform: scaleX(1);
}

.storefront-mega-panel {
    position: absolute;
    left: 0;
    top: calc(100% - 1px);
    width: min(1040px, calc(100vw - 64px));
    transform: translateY(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 20;
}

.storefront-nav-item:hover .storefront-mega-panel,
.storefront-nav-item:focus-within .storefront-mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.storefront-mega-panel__inner {
    display: grid;
    grid-template-columns: minmax(180px, max-content) minmax(0, 1fr);
    gap: 1.5rem;
    justify-content: start;
    align-items: start;
    padding: 2rem;
    background: var(--storefront-panel);
    border: 1px solid var(--storefront-panel-border);
    box-shadow: var(--storefront-shadow);
}

.storefront-mega-panel__inner--products-only,
.storefront-mega-panel__inner--links-only {
    grid-template-columns: minmax(0, 1fr);
}

.storefront-mega-panel__links {
    display: grid;
    gap: 0.85rem;
    align-content: start;
}

.storefront-mega-panel__links a {
    color: #232323;
    font-size: 1rem;
    line-height: 1.35;
}

.storefront-mega-panel__links a:hover {
    color: hsl(var(--base));
}

.storefront-mega-panel__all {
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.storefront-mega-panel__products {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.storefront-mega-product {
    display: grid;
    gap: 0.65rem;
    min-width: 0;
    color: #181818;
}

.storefront-mega-product__media {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: var(--storefront-panel-soft);
}

.storefront-mega-product__badge {
    position: absolute;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    padding: 4px 7px;
    color: #fff;
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    pointer-events: none;
    white-space: nowrap;
}

.storefront-mega-product__badge--discount {
    left: 8px;
    bottom: 8px;
    background: #ca241c;
}

.storefront-mega-product__badge--sold-out {
    top: 8px;
    right: 8px;
    background: #707784;
}

.storefront-mega-product__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: opacity 0.28s ease;
}

.storefront-mega-product__image--secondary {
    opacity: 0;
}

.storefront-mega-product:hover .storefront-mega-product__media.has-secondary .storefront-mega-product__image--primary {
    opacity: 0;
}

.storefront-mega-product:hover .storefront-mega-product__media.has-secondary .storefront-mega-product__image--secondary {
    opacity: 1;
}

.storefront-mega-product__name {
    font-size: 0.95rem;
    line-height: 1.4;
}

.storefront-mega-product__price {
    color: #101010;
    font-size: 0.92rem;
    font-weight: 700;
}

.storefront-mega-product__price ins {
    color: #ca241c;
    font-style: normal;
    text-decoration: none;
}

.storefront-mega-product__price del {
    display: inline;
    margin-right: 0.35rem;
    color: #7e7e7e;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
    text-decoration-color: currentColor;
}

.storefront-header-shell__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-left: auto;
}

.storefront-icon-button {
    position: relative;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: var(--storefront-text);
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.storefront-icon-button:hover,
.storefront-icon-button:focus-visible {
    color: #fff !important;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
}

.storefront-icon-button i {
    font-size: 1.22rem;
}

.storefront-icon-badge {
    position: absolute;
    top: -7px;
    right: -8px;
    min-width: 20px;
    height: 20px;
    padding: 1px 4px 0;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #ffffff;
    color: #050505;
    border: 1px solid rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
    font-size: 0.64rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.storefront-icon-badge.cartItemCount {
    color: transparent;
    font-size: 0;
}

.storefront-icon-badge.cartItemCount::after {
    content: attr(data-count);
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #050505;
    font-size: 0.64rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    transform: translate(0.35px, 0.6px);
}

.storefront-mobile-drawer {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.storefront-mobile-drawer__top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 1rem;
}

.storefront-mobile-drawer__close {
    position: static;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: #161616;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 1.4rem;
}

.storefront-mobile-drawer__search {
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 10px;
    background: #f4f4f4;
    color: #9a9a9a;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
}

.storefront-mobile-drawer__search i {
    font-size: 1.15rem;
}

.storefront-mobile-drawer__body {
    flex: 1;
    margin-top: 1.85rem;
}

.storefront-mobile-drawer__nav {
    display: grid;
}

.storefront-mobile-link,
.storefront-mobile-accordion summary {
    width: 100%;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0;
    border-bottom: 1px solid rgba(9, 9, 9, 0.08);
    color: #111;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    background: transparent;
    list-style: none;
    cursor: pointer;
}

.storefront-mobile-link:hover,
.storefront-mobile-accordion summary:hover {
    color: #111;
}

.storefront-mobile-accordion {
    border-bottom: 1px solid rgba(9, 9, 9, 0.08);
}

.storefront-mobile-accordion summary {
    border-bottom: 0;
}

.storefront-mobile-accordion summary::-webkit-details-marker {
    display: none;
}

.storefront-mobile-accordion summary i {
    color: #8c8c8c;
    font-size: 1.05rem;
    transition: transform 0.2s ease;
}

.storefront-mobile-accordion[open] summary i {
    transform: rotate(90deg);
}

.storefront-mobile-accordion__panel {
    display: grid;
    gap: 0.8rem;
    padding: 0 0 1.25rem;
}

.storefront-mobile-accordion__panel a {
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.35;
}

.storefront-mobile-accordion__all {
    color: #111 !important;
    font-weight: 700;
}

.storefront-mobile-products {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(132px, 42vw);
    gap: 0.85rem;
    overflow-x: auto;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}

.storefront-mobile-products::-webkit-scrollbar {
    display: none;
}

.storefront-mobile-product {
    display: grid;
    gap: 0.45rem;
    color: #111;
    scroll-snap-align: start;
}

.storefront-mobile-product__media {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 6px;
}

.storefront-mobile-product__badge {
    position: absolute;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    padding: 4px 7px;
    color: #fff;
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    pointer-events: none;
    white-space: nowrap;
}

.storefront-mobile-product__badge--discount {
    left: 8px;
    bottom: 8px;
    background: #ca241c;
}

.storefront-mobile-product__badge--sold-out {
    top: 8px;
    right: 8px;
    background: #707784;
}

.storefront-mobile-product__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: opacity 0.25s ease;
}

.storefront-mobile-product__image--secondary {
    opacity: 0;
}

.storefront-mobile-product:hover .storefront-mobile-product__media.has-secondary .storefront-mobile-product__image--primary {
    opacity: 0;
}

.storefront-mobile-product:hover .storefront-mobile-product__media.has-secondary .storefront-mobile-product__image--secondary {
    opacity: 1;
}

.storefront-mobile-product__name {
    font-size: 0.88rem;
    line-height: 1.3;
    color: #171717;
}

.storefront-mobile-product__price {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f0f0f;
}

.storefront-mobile-product__price ins {
    color: #ca241c;
    font-style: normal;
    text-decoration: none;
}

.storefront-mobile-product__price del {
    display: inline;
    margin-right: 0.35rem;
    color: #8a8a8a;
    font-size: 0.78rem;
    font-weight: 500;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
    text-decoration-color: currentColor;
}

.storefront-mobile-drawer__footer {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(9, 9, 9, 0.08);
    background: #fff;
    display: block;
}

.storefront-mobile-account {
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 1.35rem;
}

.storefront-mobile-drawer__copyright {
    margin: 0;
    color: #4d4d4d;
    font-size: 0.82rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.6rem;
}

.storefront-search-panel {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 1.5rem 1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.storefront-search-panel.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background-color: #1e1f24c7 !important;
}

.storefront-search-panel__backdrop {
    position: absolute;
    inset: 0;
    background: transparent !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

.storefront-search-panel__dialog {
    position: relative;
    width: min(780px, 100%);
    max-height: calc(100vh - 3rem);
    overflow: auto;
    background: var(--storefront-panel);
    border-radius: 24px;
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.2);
    transform: translateY(-12px);
}

.storefront-search-panel__header {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 0;
    padding: 1.25rem 1.5rem 1rem;
    border-bottom: 1px solid var(--storefront-panel-border);
}

.storefront-search-panel__field {
    min-width: 0;
    height: 48px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1rem;
    border: 1px solid rgba(15, 15, 15, 0.16);
    border-radius: 12px;
    background: #fff;
    box-shadow: none;
}

.storefront-search-panel__field:focus-within {
    border-color: rgba(15, 15, 15, 0.16);
}

.storefront-search-panel__field > i,
.storefront-search-close i {
    color: #555;
    font-size: 1.2rem;
}

.storefront-search-panel__input {
    border: 0;
    outline: 0;
    width: 100%;
    min-width: 0;
    padding: 0;
    background: transparent;
    font-size: 1.05rem;
    font-weight: 500;
    color: #121212;
    box-shadow: none !important;
    appearance: none;
    -webkit-appearance: none;
    color-scheme: light;
    border-radius: 0 !important;
}

.storefront-search-panel__input::placeholder {
    color: #666;
    opacity: 1;
}

.storefront-search-panel__field input.storefront-search-panel__input,
.storefront-search-panel__field input[type="search"] {
    border: none !important;
    outline: none !important;
    background: transparent !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}

.storefront-search-panel__input::-webkit-search-decoration,
.storefront-search-panel__input::-webkit-search-cancel-button,
.storefront-search-panel__input::-webkit-search-results-button,
.storefront-search-panel__input::-webkit-search-results-decoration {
    display: none;
}

.storefront-search-query-clear,
.storefront-search-close {
    border: 0;
    background: transparent;
    color: #777;
    font-size: 0.95rem;
    line-height: 1;
}

.storefront-search-query-clear {
    padding: 0 1rem;
}

.storefront-search-query-clear:hover,
.storefront-search-clear:hover {
    color: #111;
}

.storefront-search-close {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-left: 0;
}

.storefront-search-panel__body {
    display: grid;
    gap: 1.6rem;
    padding: 1.2rem 1.5rem 1.5rem;
}

.storefront-search-section {
    display: grid;
    gap: 0.9rem;
}

.storefront-search-section--recent.d-none {
    display: none;
}

.storefront-search-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.storefront-search-section__head h6 {
    margin: 0;
    color: #111;
    font-size: 0.95rem;
    font-weight: 700;
}

.storefront-search-clear {
    border: 0;
    background: transparent;
    color: #777;
    font-size: 0.92rem;
}

.storefront-search-section__action {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #777;
    font-size: 0.92rem;
    font-weight: 500;
}

.storefront-search-section__action:hover {
    color: #111;
}

.storefront-search-grid {
    --storefront-search-card-width: 148px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(var(--storefront-search-card-width), var(--storefront-search-card-width));
    gap: 0.9rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.25rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.storefront-search-grid::-webkit-scrollbar {
    display: none;
}

.storefront-search-card {
    display: grid;
    gap: 0.24rem;
    align-content: start;
    color: #131313;
    scroll-snap-align: start;
}

.storefront-search-card__media {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: var(--storefront-panel-soft);
    border-radius: 4px;
}

.storefront-search-card__badge {
    position: absolute;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    padding: 4px 7px;
    color: #fff;
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    pointer-events: none;
    white-space: nowrap;
}

.storefront-search-card__badge--discount {
    left: 8px;
    bottom: 8px;
    background: #ca241c;
}

.storefront-search-card__badge--sold-out {
    top: 8px;
    right: 8px;
    background: #707784;
}

.storefront-search-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: opacity 0.28s ease;
}

.storefront-search-card__image--secondary {
    opacity: 0;
}

.storefront-search-card:hover .storefront-search-card__media.has-secondary .storefront-search-card__image--primary {
    opacity: 0;
}

.storefront-search-card:hover .storefront-search-card__media.has-secondary .storefront-search-card__image--secondary {
    opacity: 1;
}

.storefront-search-card__title {
    font-size: 0.98rem;
    line-height: 1.3;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 0;
}

.storefront-search-card__price {
    font-size: 0.98rem;
    font-weight: 700;
    color: #090909;
}

.storefront-search-card__price ins {
    color: #ca241c;
    font-style: normal;
    text-decoration: none;
    margin-left: 0;
}

.storefront-search-card__price del {
    display: inline;
    margin-right: 0.35rem;
    color: #888;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
    text-decoration-color: currentColor;
}

.storefront-search-empty {
    padding: 1.25rem 0 0.25rem;
    color: #4d4d4d;
    font-size: 1rem;
    text-align: center;
}

.storefront-search-section__footer {
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.storefront-search-view-all {
    min-width: 112px;
    padding: 0.95rem 1.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: #050505;
    color: #fff;
    font-weight: 600;
}

.storefront-search-view-all:hover {
    color: #fff;
    background: hsl(var(--base));
}

@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: calc(100vw - 48px);
    }
}

.storefront-mobile-section {
    margin-bottom: 1.75rem;
}

.storefront-mobile-section__title {
    margin-bottom: 0.8rem;
    color: #111;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.storefront-mobile-links {
    display: grid;
    gap: 0.7rem;
}

.storefront-mobile-links a {
    color: #1f1f1f;
    font-weight: 600;
}

.recently-viewed-section .section-header,
.storefront-latest-products .storefront-section-heading {
    margin-bottom: 1.75rem;
}

.storefront-section-heading__eyebrow {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: var(--storefront-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.storefront-section-heading__title,
.recently-viewed-section .section-header .title {
    margin: 0;
    color: #0f0f0f;
    font-size: clamp(2rem, 3vw, 3rem);
    font-style: italic;
    font-weight: 700;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.recently-viewed-section .product-wrapper,
.storefront-latest-products .product-wrapper {
    gap: 1.25rem;
}

.recently-viewed-section .product-card,
.storefront-latest-products .product-card {
    border: 1px solid rgba(8, 8, 8, 0.08);
    background: #fff;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.recently-viewed-section .product-card:hover,
.storefront-latest-products .product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(8, 8, 8, 0.12);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.08);
}

.recently-viewed-section .product-thumb,
.storefront-latest-products .product-thumb {
    background: #f6f6f6;
}

.cart-empty-state {
    width: 100%;
    text-align: center;
    gap: 0.75rem;
}

.cart-empty-state__title {
    margin: 0;
    color: #9a9a9a;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 400;
}

#cart-sidebar-area {
    max-width: 450px;
    padding: 22px 20px 20px;
    box-shadow: -18px 0 48px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

#cart-sidebar-area .top-content {
    position: sticky;
    top: 0;
    z-index: 4;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(9, 9, 9, 0.08);
}

#cart-sidebar-area .cart-sidebar-area__title {
    margin: 0;
    color: #262626;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

#cart-sidebar-area .sidebar-close-btn {
    position: static;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #141414;
    font-size: 1.35rem;
    line-height: 1;
}

#cart-sidebar-area .cart--products {
    min-height: 0;
    overflow: hidden;
}

#cart-sidebar-area .shipping-offer-card {
    flex-shrink: 0;
    padding-bottom: 14px;
    margin-bottom: 8px;
}

#cart-sidebar-area .shipping-offer-card__message {
    color: #2c2c2c;
    font-size: 0.94rem;
    line-height: 1.45;
}

#cart-sidebar-area .shipping-offer-card__track {
    height: 4px;
    margin-top: 12px;
}

#cart-sidebar-area .cart-items-wrapper {
    min-height: 0;
    overflow-y: auto;
    padding-block: 0;
}

#cart-sidebar-area .cartItem--sidebar {
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(9, 9, 9, 0.08);
}

#cart-sidebar-area .cartItem--sidebar:first-child {
    padding-top: 10px;
}

#cart-sidebar-area .cartItem--sidebar .thumb {
    flex: 0 0 64px;
    width: 64px;
    height: 96px;
    margin: 0;
    background: #f6f7f9;
    border-radius: 0;
    overflow: hidden;
    align-self: flex-start;
}

#cart-sidebar-area .cartItem--sidebar .thumb img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center top;
    background: #f6f7f9;
    border: 0;
    border-radius: 0;
}

#cart-sidebar-area .cartItem--sidebar .content {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#cart-sidebar-area .cartItem--sidebar .content-top {
    margin: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: start;
}

#cart-sidebar-area .cartItem--sidebar .content-top-left {
    min-width: 0;
}

#cart-sidebar-area .cartItem--sidebar .title {
    margin: 0 0 4px;
    color: #1d1d1d;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

#cart-sidebar-area .cartItem--sidebar .cart-item-meta {
    font-size: 0.92rem;
    line-height: 1.45;
}

#cart-sidebar-area .cartItem--sidebar .cart-item-price {
    margin-top: 4px;
    font-size: 0.94rem;
    line-height: 1.35;
}

#cart-sidebar-area .cartItem--sidebar .cart-item-price ins {
    color: #ca241c;
    font-style: normal;
    text-decoration: none;
}

#cart-sidebar-area .cartItem--sidebar .cart-item-price del {
    margin-right: 0.35rem;
    color: #8e8e8e;
    font-size: 0.88em;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
    text-decoration-color: currentColor;
}

#cart-sidebar-area .cartItem--sidebar .cart-item-sale-badge {
    display: inline-flex;
    width: fit-content;
    margin-top: 6px;
    padding: 4px 7px;
    background: #ca241c;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

#cart-sidebar-area .cartItem--sidebar .cart-item-action {
    display: flex;
    align-items: flex-start;
}

#cart-sidebar-area .cartItem--sidebar .cart-item-action button {
    padding: 0;
    color: #9f9f9f !important;
}

#cart-sidebar-area .cartItem--sidebar .content-bottom {
    align-items: flex-end;
    gap: 16px;
}

#cart-sidebar-area .cartItem--sidebar .total-price-text {
    color: #131313;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
}

#cart-sidebar-area .cartItem--sidebar .product-quantity-input {
    gap: 0;
    border: 1px solid rgba(9, 9, 9, 0.12);
    border-radius: 0;
    overflow: hidden;
}

#cart-sidebar-area .cartItem--sidebar .product-quantity-input button,
#cart-sidebar-area .cartItem--sidebar .product-quantity-input input {
    width: 40px;
    height: 34px;
    border: 0;
    border-radius: 0;
    background: #fff;
}

#cart-sidebar-area .cartItem--sidebar .product-quantity-input button {
    color: #181818;
}

#cart-sidebar-area .cartItem--sidebar .product-quantity-input input {
    width: 42px;
    font-size: 0.94rem;
    font-weight: 600;
}

#cart-sidebar-area .cart-bottom {
    position: sticky;
    bottom: 0;
    z-index: 4;
    flex-shrink: 0;
    margin-top: auto;
    background: #fff;
    padding-top: 22px;
    border-top: 1px solid rgba(9, 9, 9, 0.08);
}

#cart-sidebar-area .cart-sidebar-summary {
    padding-top: 0;
    border-top: 0;
}

#cart-sidebar-area .cart-sidebar-summary__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    color: #1d1d1d;
}

#cart-sidebar-area .cart-sidebar-summary__row > span {
    font-size: 1.05rem;
    font-weight: 600;
}

#cart-sidebar-area .cart-sidebar-summary__row .amount {
    font-size: 1.28rem;
    font-weight: 700;
    line-height: 1;
}

#cart-sidebar-area .cart-sidebar-summary__note {
    margin-top: 10px;
    color: #8d8d8d;
    font-size: 0.84rem;
    line-height: 1.45;
}

#cart-sidebar-area .cart-sidebar-actions {
    margin-top: 20px;
}

#cart-sidebar-area .cart-sidebar-actions .btn {
    width: 100%;
    height: 48px;
    min-height: 48px;
    margin-top: 0 !important;
    padding: 0 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    border: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
    box-shadow: none;
}

@media (max-width: 1199px) {
    .storefront-header-shell__bar {
        grid-template-columns: auto 1fr auto;
    }

    .storefront-header-shell__actions {
        margin-left: auto;
    }
}

@media (max-width: 991px) {
    html,
    body {
        background: #232323;
    }

    .header-area.storefront-header-shell > .container {
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }

    main {
        padding-top: 70px;
    }

    .storefront-header-shell__bar {
        grid-template-columns: minmax(72px, 84px) minmax(0, 1fr) minmax(72px, 84px);
        min-height: 70px;
        gap: 0.35rem;
    }

    .storefront-header-shell .logo img {
        width: auto;
        max-width: 132px;
        max-height: 44px;
        height: auto;
    }

    .storefront-header-shell__brand {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        min-width: 0;
        width: 100%;
        justify-content: center;
        justify-self: center;
    }

    .storefront-header-shell__brand .logo,
    .storefront-header-shell__brand .logo a {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .storefront-header-shell__mobile-start {
        min-width: 72px;
        justify-content: flex-start;
    }

    .storefront-header-shell__actions {
        min-width: 72px;
        gap: 0.15rem;
        margin-left: 0;
        justify-content: flex-end;
        justify-self: end;
    }

    .storefront-header-shell .primary-menu-button {
        width: 28px;
        height: 18px;
        padding: 0;
    }

    .storefront-header-shell .primary-menu-button span {
        width: 18px;
        height: 2px;
        border-radius: 999px;
    }

    .mobile-menu.sidebar-nav {
        right: auto;
        left: 0;
        width: 100%;
        max-width: 100%;
        height: 100dvh !important;
        max-height: 100dvh;
        padding: 22px 16px 24px;
        transform: translateX(-101%);
        border-radius: 0;
    }

    .site-sidebar.cart-sidebar-area,
    .site-sidebar#wish-sidebar-area,
    .site-sidebar#authSidebarMenu {
        top: 0;
        height: 100dvh !important;
        max-height: 100dvh;
    }

    #cart-sidebar-area {
        left: 0;
        right: 0;
        width: 100vw;
        max-width: 100vw;
        border-radius: 0;
    }

    #cart-sidebar-area.is-empty {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    #cart-sidebar-area.is-empty .cart--products,
    #cart-sidebar-area.is-empty .cart-items-wrapper {
        height: 100%;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    #cart-sidebar-area.is-empty .cart-empty-state {
        padding-inline: 1.5rem;
        transform: translateY(-6vh);
    }

    .empty-cart__page {
        min-height: calc(100dvh - 220px);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .storefront-mobile-drawer {
        min-height: calc(100dvh - 46px);
    }

    .footer-area {
        margin-bottom: 0;
    }

    .storefront-mobile-drawer__powered {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0.45rem;
        width: auto;
        color: inherit;
        font-size: 0.82rem;
    }

    .storefront-mobile-drawer__powered-link {
        display: inline-flex;
        align-items: center;
    }

    .storefront-mobile-drawer__powered-brand {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        align-self: center;
        gap: 2px;
        width: max-content;
        text-align: center;
    }

    .storefront-mobile-drawer__powered-logo {
        max-height: 24px;
        width: auto;
        display: block;
        align-self: center;
    }

    .storefront-mobile-drawer__powered-contact {
        color: #6a6a6a;
        font-size: 0.68rem;
        line-height: 1;
        display: block;
        width: auto;
        text-align: center;
    }

    .storefront-search-panel {
        padding: 1rem 0.75rem;
    }

    .storefront-search-panel__dialog {
        max-height: calc(100vh - 2rem);
        border-radius: 22px;
    }

    .storefront-search-grid,
    .storefront-search-grid--recent {
        --storefront-search-card-width: 164px;
    }
}

@media (max-width: 575px) {
    .header-area.storefront-header-shell > .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .storefront-header-shell__bar {
        grid-template-columns: minmax(66px, 78px) minmax(0, 1fr) minmax(66px, 78px);
        gap: 0.15rem;
    }

    .storefront-header-shell__mobile-start {
        gap: 0.05rem;
        min-width: 66px;
    }

    .storefront-header-shell__brand {
        max-width: 124px;
        margin-inline: auto;
    }

    .storefront-header-shell .logo img {
        max-width: 124px;
        max-height: 40px;
    }

    .storefront-icon-button {
        width: 34px;
        height: 34px;
    }

    .storefront-icon-badge {
        top: -5px;
        right: -6px;
    }

    .storefront-header-shell__actions {
        min-width: 66px;
        gap: 0;
    }

    .storefront-search-panel__header,
    .storefront-search-panel__body {
        padding: 1rem;
    }

    .storefront-search-panel__header {
        grid-template-columns: 1fr auto auto;
    }

    .storefront-search-panel__input {
        font-size: 1rem;
    }

    .storefront-search-grid,
    .storefront-search-grid--recent {
        --storefront-search-card-width: min(43vw, 178px);
        gap: 0.85rem;
    }

    .storefront-search-card__title {
        font-size: 0.92rem;
    }

    .storefront-mobile-link,
    .storefront-mobile-accordion summary {
        min-height: 66px;
        font-size: 0.98rem;
    }

    .storefront-mobile-products {
        grid-auto-columns: minmax(126px, 38vw);
    }

    #cart-sidebar-area {
        padding: 18px 16px 16px;
    }

    #cart-sidebar-area .cartItem--sidebar {
        gap: 12px;
    }

    #cart-sidebar-area .cartItem--sidebar .thumb {
        flex-basis: 60px;
        width: 60px;
    }

    #cart-sidebar-area .cartItem--sidebar .title {
        font-size: 0.96rem;
    }

    #cart-sidebar-area .cartItem--sidebar .content-bottom {
        flex-wrap: wrap;
    }

    .cart-empty-state__title {
        font-size: 1rem;
    }
}
