:root {
    --shop-primary: #ff681b;
    --shop-primary-rgb: 255, 104, 27;
    --shop-secondary: #4b5a9d;
    --shop-secondary-rgb: 75, 90, 157;
    --shop-bg: #ffffff;
    --shop-text: #1f2430;
    --shop-muted: #6f7785;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--shop-bg);
    color: var(--shop-text);
    font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.shop-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    transition: grid-template-columns .2s ease;
}

.shop-sidebar-collapsed .shop-shell {
    grid-template-columns: 92px minmax(0, 1fr);
}

.shop-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    background: linear-gradient(180deg, var(--shop-primary) 0%, color-mix(in srgb, var(--shop-primary) 86%, #ffffff) 100%);
    color: #fff;
    padding: 18px 16px 28px;
}

.shop-sidebar-backdrop {
    display: none;
}

.shop-sidebar-brand {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.shop-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Montserrat, sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.05;
    width: 100%;
}

.shop-logo img {
    width: min(138px, 100%);
    max-height: 58px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.shop-topbar-menu {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

.shop-side-nav {
    display: grid;
    gap: 8px;
}

.shop-side-section {
    padding: 14px 44px;
    color: rgba(255, 255, 255, .82);
    font-weight: 700;
}

.shop-side-title {
    display: block;
    padding: 14px 18px 6px;
    color: rgba(255, 255, 255, .72);
    font-family: Montserrat, sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.shop-side-item.is-divider hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .28);
    margin: 10px 18px;
}

.shop-side-item > a,
.shop-side-group-toggle,
.shop-side-subnav a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 22px;
    color: rgba(255, 255, 255, .84);
    font-size: 16px;
    font-weight: 600;
}

.shop-side-group-toggle {
    width: 100%;
    border: 0;
    background: rgba(255, 255, 255, .12);
    cursor: pointer;
    font-family: inherit;
}

.shop-side-item.active > a,
.shop-side-item.active > .shop-side-group-toggle,
.shop-side-subnav a.active {
    background: var(--shop-secondary);
    color: #fff;
    box-shadow: 0 12px 28px rgba(var(--shop-secondary-rgb), .22);
}

.shop-side-item .bi:first-child,
.shop-side-subnav .bi:first-child {
    flex: 0 0 auto;
    font-size: 18px;
}

.shop-side-item span,
.shop-side-subnav span {
    min-width: 0;
}

.shop-side-chevron {
    margin-left: auto;
    font-size: 13px;
}

.shop-side-subnav {
    display: grid;
    gap: 4px;
    margin: 6px 0 4px 20px;
}

.shop-side-item.is-closed .shop-side-subnav {
    display: none;
}

.shop-side-item.is-closed .shop-side-chevron {
    transform: rotate(-90deg);
}

.shop-side-subnav a {
    min-height: 38px;
    font-size: 14px;
}

.shop-side-subtitle {
    display: block;
    padding: 8px 14px 2px;
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.shop-side-subdivider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
    margin: 6px 14px;
}

.shop-sidebar-collapsed .shop-logo img {
    width: 54px;
}

.shop-sidebar-collapsed .shop-side-section,
.shop-sidebar-collapsed .shop-side-title,
.shop-sidebar-collapsed .shop-side-item.is-divider,
.shop-sidebar-collapsed .shop-side-item span,
.shop-sidebar-collapsed .shop-side-chevron,
.shop-sidebar-collapsed .shop-side-subnav {
    display: none;
}

.shop-sidebar-collapsed .shop-side-item > a {
    justify-content: center;
    padding: 0;
}

.shop-sidebar-collapsed .shop-side-group-toggle {
    justify-content: center;
    padding: 0;
}

.shop-page {
    min-width: 0;
    min-height: 100vh;
}

.shop-topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    min-height: 74px;
    padding: 12px 18px 12px 12px;
    border-bottom: 1px solid #edf0f4;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
}

.shop-topbar-menu {
    border-color: #e4e7ed;
    color: #303641;
}

.shop-search {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    min-height: 48px;
}

.shop-search input {
    width: 100%;
    border: 1px solid #e4e7ed;
    border-radius: 24px;
    padding: 0 54px 0 18px;
    color: var(--shop-text);
    font-size: 16px;
    outline: none;
}

.shop-search input:focus {
    border-color: rgba(var(--shop-primary-rgb), .55);
    box-shadow: 0 0 0 4px rgba(var(--shop-primary-rgb), .1);
}

.shop-search button {
    position: absolute;
    right: 3px;
    top: 3px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 21px;
    background: transparent;
    color: #353b45;
    font-size: 18px;
    cursor: pointer;
}

.shop-top-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.shop-top-actions a,
.shop-account-trigger {
    position: relative;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 19px;
    background: transparent;
    color: #303641;
    font-size: 20px;
    cursor: pointer;
}

.shop-top-actions a:hover,
.shop-account-trigger:hover,
.shop-account-trigger[aria-expanded="true"] {
    background: rgba(var(--shop-primary-rgb), .08);
    color: var(--shop-primary);
}

.shop-account-menu-wrap {
    position: relative;
}

.shop-account-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 60;
    display: none;
    min-width: 178px;
    padding: 8px;
    border: 1px solid rgba(22, 47, 43, .12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(17, 24, 39, .14);
}

.shop-account-menu.is-open {
    display: grid;
    gap: 2px;
}

.shop-account-menu a,
.shop-account-menu button {
    display: block;
    width: 100%;
    height: auto;
    padding: 10px 12px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #303641;
    font: inherit;
    font-size: 14px;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.shop-account-menu a:hover,
.shop-account-menu button:hover {
    background: rgba(var(--shop-primary-rgb), .08);
    color: var(--shop-primary);
}

.shop-account-name {
    display: block;
    max-width: 220px;
    overflow: hidden;
    padding: 8px 12px 10px;
    border-bottom: 1px solid #edf0f4;
    color: var(--shop-muted);
    font-size: 13px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shop-cart-badge {
    position: absolute;
    top: -2px;
    right: -4px;
    display: grid;
    min-width: 18px;
    height: 18px;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 999px;
    background: #e93636;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
}

.shop-cart-badge.is-hidden {
    display: none;
}

.shop-header-horizontal .shop-shell {
    display: block;
}

.shop-header-horizontal .shop-sidebar {
    display: none;
}

.shop-header-horizontal .shop-sidebar-backdrop {
    display: none;
}

.shop-header-v2 {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid #e8e8e8;
    background: #fff;
}

.shop-header-horizontal-scroll .shop-header-v2 {
    position: relative;
    top: auto;
}

.shop-announcement {
    position: relative;
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 58px;
    background: var(--shop-primary);
    color: #fff;
    font-size: 13px;
}

.shop-announcement > a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.shop-announcement-socials {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 17px;
}

.shop-header-v2-main {
    position: relative;
    display: grid;
    grid-template-columns: minmax(220px, 250px) minmax(180px, 1fr) minmax(220px, 250px);
    min-height: 116px;
    align-items: center;
    gap: 18px;
    padding: 14px 58px 10px;
}

.shop-header-v2-search {
    width: 250px;
    min-height: 42px;
}

.shop-header-v2-search input {
    border: 0;
    border-radius: 0;
    background: #f1f1f1;
    font-size: 14px;
}

.shop-header-v2-search input:focus {
    box-shadow: none;
}

.shop-header-v2-search button {
    top: 0;
    right: 0;
    width: 44px;
    height: 42px;
    border-radius: 0;
    background: var(--shop-primary);
    color: #fff;
}

.shop-header-v2-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.shop-header-v2-logo img {
    width: min(220px, 100%);
    max-height: 82px;
    object-fit: contain;
}

.shop-header-v2-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    color: #303030;
}

.shop-header-v2-account,
.shop-header-v2-cart,
.shop-header-v2-icon,
.shop-header-v2-mobile-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    background: transparent;
    color: #303030;
    font: inherit;
    font-size: 15px;
    cursor: pointer;
}

.shop-header-v2-account i,
.shop-header-v2-cart i {
    font-size: 25px;
}

.shop-header-v2-cart {
    padding-right: 2px;
}

.shop-header-v2-nav {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    gap: 26px;
    padding: 0 24px 10px;
    color: #303030;
    font-size: 14px;
}

.shop-header-v2-nav-item {
    position: relative;
}

.shop-header-v2-nav-item > a {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.shop-header-v2-nav-item > a i {
    font-size: 12px;
}

.shop-header-v2-nav-item.active > a,
.shop-header-v2-nav-item > a:hover {
    color: #105541;
}

.shop-header-v2-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 65;
    display: none;
    min-width: 210px;
    transform: translateX(-50%);
    padding: 8px;
    border: 1px solid rgba(22, 47, 43, .12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(17, 24, 39, .14);
}

.shop-header-v2-nav-item:hover .shop-header-v2-dropdown,
.shop-header-v2-nav-item:focus-within .shop-header-v2-dropdown {
    display: grid;
    gap: 2px;
}

.shop-header-v2-dropdown a,
.shop-header-v2-dropdown span {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
}

.shop-header-v2-dropdown span {
    color: var(--shop-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.shop-header-v2-dropdown a:hover,
.shop-header-v2-dropdown a.active {
    background: rgba(16, 85, 65, .08);
    color: #105541;
}

.shop-header-v2-dropdown hr {
    width: 100%;
    margin: 6px 0;
    border: 0;
    border-top: 1px solid #edf0f4;
}

.shop-header-v2-mobile-tools,
.shop-header-v2-mobile-cart,
.shop-header-v2-mobile-search {
    display: none;
}

.shop-main {
    padding: 30px 12px 42px;
}

.shop-main:has(.shop-home-banner) {
    padding-top: 0;
}

.shop-container,
.shop-content,
.shop-cart-page,
.shop-static-page {
    width: min(1120px, 100%);
    margin-right: auto;
    margin-left: auto;
}

.shop-content {
    display: grid;
    gap: 24px;
}

.shop-home-banner {
    position: relative;
    width: 100vw;
    height: 450px;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    background: #171717;
}

.shop-home-banner-track,
.shop-home-banner-slide,
.shop-home-banner-overlay {
    position: absolute;
    inset: 0;
}

.shop-home-banner-slide {
    display: grid;
    place-items: center;
    opacity: 0;
    background-position: center;
    background-size: cover;
    color: #fff;
    text-align: center;
    transition: opacity .45s ease;
    pointer-events: none;
}

.shop-home-banner-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.shop-home-banner-overlay {
    background: rgba(0, 0, 0, .52);
}

.shop-home-banner-content {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    width: min(900px, calc(100% - 42px));
    gap: 14px;
    padding: 24px 0 62px;
}

.shop-home-banner-kicker {
    position: relative;
    margin: 0 0 2px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.shop-home-banner-kicker::after {
    content: "";
    display: block;
    width: 88px;
    height: 2px;
    margin: 8px auto 0;
    background: #dce97c;
}

.shop-home-banner h1 {
    margin: 0;
    max-width: 900px;
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: 0;
    text-transform: uppercase;
}

.shop-home-banner-text {
    max-width: 900px;
    margin: 0;
    color: rgba(255, 255, 255, .96);
    font-size: 18px;
    line-height: 1.55;
}

.shop-home-banner-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.shop-home-banner-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    background: #dce97c;
    color: #105541;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.shop-home-banner-button.secondary {
    border: 1px solid rgba(255, 255, 255, .72);
    background: rgba(0, 0, 0, .2);
    color: #fff;
}

.shop-home-banner-controls {
    position: absolute;
    left: 50%;
    bottom: 16px;
    z-index: 3;
    display: flex;
    width: min(650px, calc(100% - 42px));
    height: 28px;
    transform: translateX(-50%);
    align-items: center;
    gap: 6px;
    border-radius: 6px;
    background: rgba(0, 0, 0, .22);
    padding: 0 8px;
}

.shop-home-banner-controls button {
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.shop-home-banner-controls button:not(.shop-home-banner-pause) {
    position: relative;
    flex: 1 1 0;
    height: 16px;
    min-width: 28px;
    padding: 0;
}

.shop-home-banner-controls button:not(.shop-home-banner-pause)::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 7px;
    height: 2px;
    background: rgba(255, 255, 255, .48);
}

.shop-home-banner-controls button span {
    position: absolute;
    left: 0;
    top: 7px;
    width: 0;
    height: 2px;
    background: #fff;
}

.shop-home-banner-pause {
    display: grid;
    flex: 0 0 26px;
    width: 26px;
    height: 24px;
    place-items: center;
    padding: 0;
    font-size: 18px;
}

@keyframes shop-banner-progress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.shop-offers {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.shop-offer-card {
    min-height: 140px;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    border: 1px solid #e3e7ee;
    border-radius: 22px;
    padding: 18px;
}

.shop-offer-card h2,
.shop-wide-offer h2 {
    margin: 0 0 4px;
    font-family: Montserrat, sans-serif;
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0;
}

.shop-offer-card p,
.shop-wide-offer p {
    margin: 0 0 16px;
    color: var(--shop-muted);
    font-size: 16px;
}

.shop-offer-card span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    border: 1px dashed currentColor;
    border-radius: 17px;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 700;
}

.shop-offer-card img {
    width: 112px;
    height: 112px;
    object-fit: contain;
}

.shop-offer-card.light {
    background: #fff;
}

.shop-offer-card.orange {
    background: var(--shop-primary);
    color: #fff;
}

.shop-offer-card.orange p,
.shop-offer-card.dark p {
    color: rgba(255, 255, 255, .9);
}

.shop-offer-card.dark {
    background: #2c2c2d;
    color: #fff;
}

.shop-category-strip {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 0;
}

.shop-category-strip a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    white-space: nowrap;
    border: 1px solid rgba(var(--shop-primary-rgb), .45);
    border-radius: 19px;
    padding: 0 16px;
    color: var(--shop-primary);
    font-weight: 600;
}

.shop-category-strip a.active {
    border-color: var(--shop-primary);
    background: var(--shop-primary);
    color: #fff;
}

.shop-wide-offer {
    min-height: 118px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 110px minmax(120px, auto);
    align-items: center;
    gap: 18px;
    overflow: hidden;
    border: 1px solid #e3e7ee;
    border-radius: 22px;
    padding: 18px;
    background: #fff;
}

.shop-wide-offer img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.shop-wide-price {
    text-align: right;
}

.shop-wide-price strong {
    display: block;
    font-family: Montserrat, sans-serif;
    font-size: 26px;
}

.shop-wide-price span {
    color: var(--shop-muted);
    font-size: 12px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(170px, 1fr));
    gap: 24px;
}

.shop-card {
    display: grid;
    gap: 10px;
    border: 0;
    background: transparent;
}

.shop-card.is-disabled {
    opacity: .52;
}

.shop-card.is-disabled .shop-card-media {
    filter: grayscale(.8);
}

.shop-card.is-disabled:hover .shop-card-media {
    border-color: #e3e7ee;
    box-shadow: none;
}

.shop-card-media {
    position: relative;
    overflow: hidden;
    border: 1px solid #e3e7ee;
    border-radius: 22px;
    background: #fff;
}

.shop-card:hover .shop-card-media {
    border-color: rgba(var(--shop-primary-rgb), .4);
    box-shadow: 0 12px 30px rgba(var(--shop-primary-rgb), .08);
}

.shop-card-media a {
    display: block;
}

.shop-card-media img {
    width: 100%;
    height: 214px;
    display: block;
    object-fit: cover;
}

.shop-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 2;
    min-height: 22px;
    border-radius: 11px;
    padding: 3px 8px;
    background: var(--shop-secondary);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.shop-heart,
.shop-add {
    display: grid;
    place-items: center;
    border: 0;
    cursor: pointer;
}

.shop-heart {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2;
    width: 32px;
    height: 32px;
    border-radius: 16px;
    background: var(--shop-primary);
    color: #fff;
    font-size: 16px;
}

.shop-heart.is-active {
    background: #fff;
    color: var(--shop-primary);
    box-shadow: 0 8px 22px rgba(17, 24, 39, .16);
}

.shop-card-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px;
    align-items: center;
    gap: 10px;
    padding: 0 4px 0 2px;
}

.shop-card-body p {
    margin: 0 0 2px;
    color: var(--shop-muted);
    font-size: 13px;
}

.shop-card-body h3 {
    margin: 0;
    overflow: hidden;
    color: #303846;
    font-size: 15px;
    line-height: 1.25;
    letter-spacing: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shop-card-body strong {
    display: block;
    margin-top: 2px;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
}

.shop-add {
    width: 38px;
    height: 38px;
    border: 1px solid var(--shop-primary);
    border-radius: 19px;
    background: #fff;
    color: var(--shop-primary);
    font-size: 18px;
}

.shop-add.is-in-cart {
    background: var(--shop-primary);
    color: #fff;
}

.shop-add:disabled,
.shop-button:disabled,
.shop-add.is-unavailable,
.shop-button.is-unavailable {
    opacity: .45;
    cursor: not-allowed;
    filter: grayscale(1);
}

.shop-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 0;
    border-radius: 6px;
    background: var(--shop-primary);
    color: #fff;
    font-weight: 750;
    cursor: pointer;
}

.shop-button.secondary {
    background: var(--shop-secondary);
    color: #211806;
}

.shop-product {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 32px;
    align-items: start;
}

.shop-product-media {
    max-width: 100%;
}

.shop-product-media img {
    width: 100%;
    max-height: min(760px, calc(100vh - 180px));
    border-radius: 8px;
    object-fit: contain;
    background: #eef0ed;
}

.shop-product-info {
    display: grid;
    gap: 24px;
    align-content: start;
}

.shop-panel {
    border: 1px solid rgba(22, 47, 43, .1);
    border-radius: 22px;
    background: #fff;
    padding: 20px;
}

.shop-product-header {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.shop-product-header h1 {
    margin: 0;
    color: #303030;
    font-family: Montserrat, sans-serif;
    font-size: 28px;
    line-height: 1.18;
    letter-spacing: 0;
}

.shop-product-header p {
    margin: 0;
    color: var(--shop-muted);
    font-size: 12px;
    text-transform: uppercase;
}

.shop-product-header strong {
    display: block;
    margin-top: 12px;
    color: #303030;
    font-family: Montserrat, sans-serif;
    font-size: 26px;
    line-height: 1.1;
}

.shop-product-purchase {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.shop-product-purchase > label {
    color: #303030;
    font-size: 15px;
}

.shop-product-actions {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.shop-product-actions:not(.is-in-cart) {
    grid-template-columns: minmax(0, 1fr);
}

.shop-product-actions:not(.is-in-cart) .shop-product-qty-wrap {
    display: none;
}

.shop-product-qty {
    display: grid;
    grid-template-columns: 32px 46px 32px;
    align-items: center;
    gap: 6px;
    width: max-content;
    height: 32px;
    background: transparent;
}

.shop-product-qty button,
.shop-product-qty input {
    width: 100%;
    height: 32px;
    border: 0;
    font: inherit;
    font-weight: 800;
    text-align: center;
}

.shop-product-qty button {
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--shop-primary);
    color: #fff;
    cursor: pointer;
    font-size: 15px;
}

.shop-product-qty input {
    background: #fff;
    color: var(--shop-text);
    font-size: 16px;
}

.shop-product-qty input::-webkit-inner-spin-button,
.shop-product-qty input::-webkit-outer-spin-button {
    appearance: none;
    margin: 0;
}

.shop-product-add {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 45px;
    border: 0;
    border-radius: 0;
    background: var(--shop-primary);
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-weight: 800;
    letter-spacing: 0;
    cursor: pointer;
}

.shop-product-add:disabled {
    opacity: .45;
    cursor: not-allowed;
    filter: grayscale(1);
}

.shop-panel h1,
.shop-panel h2 {
    margin: 0 0 12px;
    color: var(--shop-primary);
    letter-spacing: 0;
}

.shop-product-description {
    max-width: 100%;
}

.shop-product-description h6,
.shop-product-description .mb-3 {
    margin: 0 0 14px;
}

.shop-product-description p {
    max-width: 760px;
    margin: 0 0 18px;
    line-height: 1.55;
}

.shop-product-description dl.row {
    display: grid;
    grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
    gap: 10px 20px;
    margin: 0 0 24px;
}

.shop-product-description dt,
.shop-product-description dd {
    margin: 0;
}

.shop-product-description dt {
    font-weight: 800;
}

.shop-product-description a.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 6px;
    background: var(--shop-primary);
    color: #fff;
    font-weight: 750;
    text-decoration: none;
}

.shop-muted {
    color: var(--shop-muted);
}

.shop-footer {
    position: relative;
    margin: 34px 0 0;
    padding: 30px 28px 22px;
    background: #171717;
    color: #f7f7f7;
}

.shop-footer-desktop {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 56px;
}

.shop-footer-col {
    display: grid;
    align-content: start;
    gap: 11px;
}

.shop-footer h2 {
    margin: 0 0 6px;
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    letter-spacing: 0;
}

.shop-footer a,
.shop-footer p {
    margin: 0;
    color: #f1f1f1;
    font-size: 14px;
    line-height: 1.35;
}

.shop-footer strong {
    color: #fff;
    font-weight: 800;
}

.shop-footer-contact {
    gap: 10px;
}

.shop-footer-extra {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
    gap: 56px;
    margin-top: 26px;
}

.shop-footer-hours {
    display: grid;
    align-content: start;
    gap: 8px;
}

.shop-footer-aviso p {
    margin: 0 0 4px;
}

.shop-footer-aviso p:last-child {
    margin-bottom: 0;
}

.shop-footer-follow {
    padding-top: 0;
}

.shop-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-weight: 800;
}

.shop-socials a,
.shop-socials span {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
}

.shop-footer-mobile {
    display: none;
}

.shop-footer-bottom {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 28px;
    padding-top: 18px;
    color: #c9c9c9;
    font-size: 13px;
}

.shop-whatsapp {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 32px;
    background: #55d66b;
    color: #fff;
    font-size: 28px;
}

.shop-payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
}

.shop-payments span {
    display: inline-grid;
    min-width: 38px;
    min-height: 20px;
    place-items: center;
    border-radius: 3px;
    background: #fff;
    color: #1b2d58;
    font-size: 9px;
    font-weight: 800;
}

.shop-static-page {
    display: grid;
    justify-items: center;
    padding: 24px 12px;
}

.shop-static-inner {
    width: 100%;
    border: 1px solid #e3e7ee;
    border-radius: 22px;
    background: #fff;
    padding: 34px;
}

.shop-static-inner h1 {
    margin: 0 0 24px;
    color: var(--shop-primary);
    font-family: Montserrat, sans-serif;
    letter-spacing: 0;
}

.shop-static-content {
    color: #333b46;
    font-size: 16px;
    line-height: 1.45;
}

.shop-static-content p {
    margin: 0 0 14px;
}

.shop-static-content p:empty {
    display: none;
}

.shop-static-content p:last-child,
.shop-static-content ul:last-child,
.shop-static-content ol:last-child {
    margin-bottom: 0;
}

.shop-static-content h2,
.shop-static-content h3,
.shop-static-content h4 {
    margin: 18px 0 10px;
    color: #2d3540;
    line-height: 1.25;
}

.shop-static-content ul,
.shop-static-content ol {
    margin: 0 0 14px 1.25em;
    padding: 0;
}

.shop-static-content li {
    margin: 0 0 .35em;
}

.shop-cart-page {
    display: grid;
    gap: 22px;
}

.shop-cart-page-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.shop-cart-page-header h1 {
    margin: 0 0 4px;
    color: var(--shop-primary);
    font-family: Montserrat, sans-serif;
    font-size: 32px;
    letter-spacing: 0;
}

.shop-cart-page-header p {
    margin: 0;
}

.shop-cart-continue {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    border: 1px solid #e3e7ee;
    border-radius: 6px;
    padding: 0 12px;
    color: #303641;
    font-weight: 750;
}

.shop-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 24px;
    align-items: start;
}

.shop-cart-list,
.shop-cart-col-4 {
    display: grid;
    gap: 14px;
}

.shop-cart-row {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr) minmax(112px, auto);
    gap: 16px;
    align-items: start;
    border: 1px solid #e3e7ee;
    border-radius: 8px;
    background: #fff;
    padding: 12px;
    transition: opacity .16s ease;
}

.shop-cart-row.is-updating {
    opacity: .58;
    pointer-events: none;
}

.shop-cart-row-media {
    overflow: hidden;
    border-radius: 8px;
    background: #eef0ed;
}

.shop-cart-row-media img {
    width: 104px;
    height: 104px;
    display: block;
    object-fit: cover;
}

.shop-cart-row-info {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.shop-cart-row-info h2 {
    margin: 0;
    color: #303846;
    font-family: Montserrat, sans-serif;
    font-size: 17px;
    line-height: 1.25;
    letter-spacing: 0;
}

.shop-cart-qty {
    display: grid;
    grid-template-columns: 34px 42px 34px;
    width: 110px;
    height: 38px;
    overflow: hidden;
    border: 1px solid #dfe4ec;
    border-radius: 6px;
    background: #fff;
}

.shop-cart-qty button {
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: #303641;
    cursor: pointer;
}

.shop-cart-qty button:hover {
    background: rgba(var(--shop-primary-rgb), .08);
    color: var(--shop-primary);
}

.shop-cart-qty input {
    width: 100%;
    border: 0;
    border-left: 1px solid #edf0f4;
    border-right: 1px solid #edf0f4;
    text-align: center;
    color: #303641;
    font-weight: 800;
    outline: none;
}

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

.shop-cart-row-prices {
    display: grid;
    justify-items: end;
    gap: 4px;
}

.shop-cart-row-total {
    color: #202631;
    font-family: Montserrat, sans-serif;
    font-size: 17px;
    text-align: right;
    white-space: nowrap;
}

.shop-cart-row-prices small {
    color: var(--shop-muted);
    font-weight: 800;
    white-space: nowrap;
}

.shop-summary-card {
    display: grid;
    gap: 14px;
    border: 1px solid #e3e7ee;
    border-radius: 8px;
    background: #fff;
    padding: 18px;
}

.shop-summary-card h2 {
    margin: 0;
    color: #303846;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    letter-spacing: 0;
}

.shop-summary-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid #edf0f4;
    padding-top: 14px;
}

.shop-summary-line span {
    color: var(--shop-muted);
}

.shop-summary-line strong {
    font-family: Montserrat, sans-serif;
    font-size: 20px;
}

.shop-summary-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 6px;
    background: var(--shop-primary);
    color: #fff;
    font-weight: 850;
}

.shop-summary-card label {
    color: #303641;
    font-weight: 800;
}

.shop-shipping-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.shop-shipping-form input {
    min-width: 0;
    min-height: 42px;
    border: 1px solid #dfe4ec;
    border-radius: 6px;
    padding: 0 12px;
    outline: none;
}

.shop-shipping-form input:focus {
    border-color: rgba(var(--shop-primary-rgb), .55);
    box-shadow: 0 0 0 4px rgba(var(--shop-primary-rgb), .1);
}

.shop-shipping-form button {
    min-height: 42px;
    border: 0;
    border-radius: 6px;
    background: var(--shop-secondary);
    color: #fff;
    padding: 0 14px;
    font-weight: 800;
    cursor: pointer;
}

.shop-shipping-form button:disabled {
    opacity: .65;
    cursor: wait;
}

.shop-shipping-options {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.shop-shipping-message {
    border: 1px solid #dfe4ec;
    border-radius: 6px;
    color: #606977;
    font-size: 13px;
    padding: 10px 12px;
}

.shop-shipping-message.is-error {
    border-color: rgba(190, 18, 60, .25);
    color: #be123c;
    background: rgba(190, 18, 60, .05);
}

.shop-shipping-option-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    border: 1px solid #dfe4ec;
    border-radius: 6px;
    cursor: pointer;
    padding: 11px 12px;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.shop-shipping-option-card:hover,
.shop-shipping-option-card:has(input:checked) {
    border-color: rgba(var(--shop-primary-rgb), .55);
    box-shadow: 0 10px 22px rgba(31, 41, 55, .08);
}

.shop-shipping-option-card:has(input:checked) {
    background: rgba(var(--shop-primary-rgb), .06);
}

.shop-shipping-option-card input {
    accent-color: var(--shop-primary);
}

.shop-shipping-option-card span {
    min-width: 0;
}

.shop-shipping-option-card strong,
.shop-shipping-option-card small {
    display: block;
}

.shop-shipping-option-card strong {
    color: #303641;
    font-size: 14px;
    line-height: 1.2;
}

.shop-shipping-option-card small {
    color: #7b8492;
    font-size: 12px;
    margin-top: 2px;
}

.shop-shipping-option-card b {
    color: #303641;
    font-size: 14px;
    white-space: nowrap;
}

.shop-cart-page-empty {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 46px 20px;
    text-align: center;
}

.shop-cart-page-empty .bi {
    color: var(--shop-primary);
    font-size: 42px;
}

.shop-cart-page-empty h2,
.shop-cart-page-empty p {
    margin: 0;
}

.shop-cart-confirm {
    position: fixed;
    inset: 0;
    z-index: 140;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.shop-cart-confirm.is-open {
    display: flex;
}

.shop-cart-confirm-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 24, 34, .44);
}

.shop-cart-confirm-dialog {
    position: relative;
    z-index: 1;
    width: min(420px, 100%);
    border-radius: 8px;
    background: #fff;
    padding: 22px;
    box-shadow: 0 20px 60px rgba(27, 34, 48, .22);
}

.shop-cart-confirm-dialog h2 {
    margin: 0 0 8px;
    color: #303846;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    letter-spacing: 0;
}

.shop-cart-confirm-dialog p {
    margin: 0;
    color: var(--shop-muted);
    line-height: 1.4;
}

.shop-cart-confirm-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.shop-cart-confirm-actions button {
    min-height: 40px;
    border: 0;
    border-radius: 6px;
    padding: 0 14px;
    font-weight: 800;
    cursor: pointer;
}

.shop-cart-confirm-cancel {
    background: #eef1f5;
    color: #303641;
}

.shop-cart-confirm-remove {
    background: #c73333;
    color: #fff;
}

.shop-bottom-nav {
    position: fixed;
    left: 50%;
    bottom: 20px;
    z-index: 20;
    display: none;
    transform: translateX(-50%);
    min-width: 312px;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid rgba(227, 231, 238, .78);
    border-radius: 28px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 16px 40px rgba(27, 34, 48, .18);
    backdrop-filter: blur(16px);
}

.shop-bottom-nav a {
    position: relative;
    display: inline-grid;
    align-items: center;
    justify-items: center;
    justify-content: center;
    gap: 3px;
    min-width: 86px;
    min-height: 42px;
    border-radius: 21px;
    color: var(--shop-muted);
    font-weight: 700;
}

.shop-bottom-nav a .bi {
    font-size: 18px;
    line-height: 1;
}

.shop-bottom-nav a span {
    font-size: 11px;
    line-height: 1;
}

.shop-bottom-nav a.active {
    color: var(--shop-secondary);
}

.shop-reserve-overlay {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
}

.shop-reserve-overlay.is-visible {
    display: flex;
}

.shop-reserve-box {
    display: grid;
    justify-items: center;
    gap: 12px;
    min-width: 220px;
    border-radius: 8px;
    background: #fff;
    padding: 24px;
    color: var(--shop-text);
}

.shop-spinner {
    width: 34px;
    height: 34px;
    border: 3px solid rgba(var(--shop-primary-rgb), .2);
    border-top-color: var(--shop-primary);
    border-radius: 50%;
    animation: shop-spin .75s linear infinite;
}

@keyframes shop-spin {
    to {
        transform: rotate(360deg);
    }
}

.shop-toast-stack {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 130;
    display: grid;
    gap: 10px;
    width: min(360px, calc(100vw - 36px));
}

.shop-toast {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 28px;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(27, 34, 48, .16);
    padding: 13px 10px 13px 14px;
    background: #1f8f54;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .18s ease, transform .18s ease;
}

.shop-toast button {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    cursor: pointer;
}

.shop-toast button:hover {
    background: rgba(255, 255, 255, .24);
}

.shop-toast.is-error {
    background: #c73333;
}

.shop-toast.is-leaving {
    opacity: 0;
    transform: translateY(-6px);
}

.shop-cart-backdrop {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    background: rgba(0, 0, 0, .35);
}

.shop-cart-backdrop.is-visible {
    display: block;
}

.shop-cart-offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    width: min(420px, 100vw);
    height: 100vh;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    background: #fff;
    box-shadow: -18px 0 48px rgba(27, 34, 48, .18);
    transform: translateX(100%);
    transition: transform .24s ease;
}

.shop-cart-offcanvas.is-open {
    transform: translateX(0);
}

.shop-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #edf0f4;
    padding: 18px 20px;
}

.shop-cart-header h2 {
    margin: 0;
    color: var(--shop-text);
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    letter-spacing: 0;
}

.shop-cart-header button {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 0;
    border-radius: 18px;
    background: #f3f5f8;
    color: #303641;
    cursor: pointer;
}

.shop-cart-body {
    overflow-y: auto;
    padding: 18px 20px 24px;
}

.shop-account-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: none;
    background: rgba(0, 0, 0, .36);
}

.shop-account-modal-backdrop.is-open {
    display: block;
}

.shop-account-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    pointer-events: none;
}

.shop-account-modal.is-open {
    display: flex;
}

.shop-account-modal-box {
    width: min(420px, 100%);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(17, 24, 39, .24);
    pointer-events: auto;
}

.shop-account-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #edf0f4;
    padding: 18px 20px;
}

.shop-account-modal-header h2 {
    margin: 0;
    color: var(--shop-text);
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    letter-spacing: 0;
}

.shop-account-modal-header button {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 0;
    border-radius: 18px;
    background: #f3f5f8;
    color: #303641;
    cursor: pointer;
}

.shop-account-form {
    display: grid;
    gap: 14px;
    padding: 20px;
}

.shop-account-form label {
    display: grid;
    gap: 7px;
    color: #303641;
    font-weight: 700;
}

.shop-account-form input {
    width: 100%;
    height: 44px;
    border: 1px solid #dce1e8;
    border-radius: 8px;
    padding: 0 12px;
    color: var(--shop-text);
    font: inherit;
}

.shop-account-form input:disabled,
.shop-account-form button:disabled {
    cursor: wait;
    opacity: .72;
}

.shop-account-alert {
    display: none;
    border: 1px solid rgba(185, 28, 28, .22);
    border-radius: 8px;
    background: #fff1f2;
    color: #9f1239;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 700;
}

.shop-account-alert.is-visible {
    display: block;
}

.shop-account-alert.is-info {
    border-color: rgba(var(--shop-primary-rgb), .22);
    background: rgba(var(--shop-primary-rgb), .08);
    color: var(--shop-primary);
}

.shop-account-alert-link {
    border: 0;
    background: transparent;
    padding: 0;
    color: inherit;
    font: inherit;
    font-weight: 800;
    text-decoration: underline;
    cursor: pointer;
}

.shop-inline-spinner {
    width: 15px;
    height: 15px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: shop-spin .7s linear infinite;
}

.shop-account-forgot {
    justify-self: start;
    border: 0;
    background: transparent;
    padding: 0;
    color: var(--shop-primary);
    font-size: 14px;
    font: inherit;
    text-decoration: none;
    cursor: pointer;
}

.shop-account-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.shop-account-form[data-shop-auth-mode="login"] [data-shop-auth-code-wrap],
.shop-account-form[data-shop-auth-mode="login"] [data-shop-auth-reset-wrap],
.shop-account-form[data-shop-auth-mode="login"] [data-shop-recovery-back],
.shop-account-form[data-shop-auth-mode="recovery_request"] [data-shop-auth-password-wrap],
.shop-account-form[data-shop-auth-mode="recovery_request"] [data-shop-auth-code-wrap],
.shop-account-form[data-shop-auth-mode="recovery_request"] [data-shop-auth-reset-wrap],
.shop-account-form[data-shop-auth-mode="recovery_request"] [data-shop-forgot-start],
.shop-account-form[data-shop-auth-mode="recovery_request"] [data-shop-recovery-back],
.shop-account-form[data-shop-auth-mode="recovery_code"] [data-shop-auth-password-wrap],
.shop-account-form[data-shop-auth-mode="recovery_code"] [data-shop-auth-email-wrap],
.shop-account-form[data-shop-auth-mode="recovery_code"] [data-shop-auth-reset-wrap],
.shop-account-form[data-shop-auth-mode="recovery_code"] [data-shop-forgot-start],
.shop-account-form[data-shop-auth-mode="recovery_reset"] [data-shop-auth-email-wrap],
.shop-account-form[data-shop-auth-mode="recovery_reset"] [data-shop-auth-password-wrap],
.shop-account-form[data-shop-auth-mode="recovery_reset"] [data-shop-auth-code-wrap],
.shop-account-form[data-shop-auth-mode="recovery_reset"] [data-shop-forgot-start],
.shop-account-form[data-shop-auth-mode="recovery_reset"] [data-shop-recovery-back] {
    display: none;
}

.shop-account-form[data-shop-auth-mode="recovery_code"] .shop-account-actions {
    grid-template-columns: 1fr 1fr;
}

.shop-account-code,
.shop-account-reset {
    display: grid;
    gap: 10px;
}

.shop-account-code > span {
    color: #303641;
    font-weight: 700;
}

.shop-account-code-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.shop-account-code-grid input {
    padding: 0;
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.shop-password-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    border: 1px solid #dce1e8;
    border-radius: 8px;
    overflow: hidden;
}

.shop-password-field input {
    border: 0;
    border-radius: 0;
}

.shop-password-field button {
    display: grid;
    place-items: center;
    border: 0;
    background: #f7f8fa;
    color: #303641;
    cursor: pointer;
}

.shop-account-dashboard,
.shop-account-dashboard-login {
    display: grid;
    gap: 24px;
    padding: 28px 0 48px;
}

.shop-account-dashboard-login {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    border: 1px solid #edf0f4;
    border-radius: 8px;
    background: #fff;
    padding: 28px;
    box-shadow: 0 18px 52px rgba(29, 35, 48, .08);
}

.shop-account-dashboard-login h1,
.shop-account-dashboard-head h1 {
    margin: 4px 0 8px;
    color: var(--shop-text);
    font-family: Montserrat, sans-serif;
    font-size: clamp(24px, 3vw, 34px);
    letter-spacing: 0;
}

.shop-account-dashboard-login p,
.shop-account-dashboard-head p,
.shop-dashboard-card-head p {
    margin: 0;
    color: var(--shop-muted);
}

.shop-dashboard-kicker {
    color: var(--shop-primary);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.shop-account-dashboard-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.shop-dashboard-primary-link,
.shop-dashboard-small-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: 8px;
    background: var(--shop-primary);
    color: #fff;
    padding: 0 16px;
    font-weight: 800;
    text-decoration: none;
}

.shop-dashboard-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.shop-dashboard-stat {
    position: relative;
    display: grid;
    gap: 6px;
    min-height: 104px;
    border: 1px solid #edf0f4;
    border-radius: 8px;
    background: #fff;
    padding: 22px 78px 22px 22px;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 18px 52px rgba(29, 35, 48, .08);
}

.shop-dashboard-stat span {
    color: #8a8f98;
    font-size: 14px;
}

.shop-dashboard-stat strong {
    color: #3a3737;
    font-family: Montserrat, sans-serif;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0;
}

.shop-dashboard-stat i {
    position: absolute;
    top: 24px;
    right: 22px;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 16px;
    background: rgba(var(--shop-primary-rgb), .12);
    color: var(--shop-primary);
    font-size: 24px;
}

.shop-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
    gap: 24px;
    align-items: start;
}

.shop-dashboard-side {
    display: grid;
    gap: 24px;
}

.shop-dashboard-card {
    border: 1px solid #edf0f4;
    border-radius: 8px;
    background: #fff;
    padding: 24px;
    box-shadow: 0 18px 52px rgba(29, 35, 48, .08);
}

.shop-dashboard-card-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 26px;
}

.shop-dashboard-card h2,
.shop-dashboard-card-head h2 {
    margin: 0 0 6px;
    color: var(--shop-text);
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    letter-spacing: 0;
}

.shop-dashboard-table-wrap {
    overflow-x: auto;
}

.shop-dashboard-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 660px;
}

.shop-dashboard-table th {
    background: rgba(var(--shop-primary-rgb), .08);
    color: #191b20;
    padding: 14px 16px;
    font-size: 12px;
    text-align: left;
    text-transform: uppercase;
}

.shop-dashboard-table td {
    border-bottom: 1px solid #e3e7ee;
    padding: 14px 16px;
    color: #1f2430;
}

.shop-dashboard-table td a {
    display: grid;
    gap: 4px;
    color: inherit;
    text-decoration: none;
}

.shop-dashboard-table td small {
    color: #8a8f98;
}

.shop-dashboard-status {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    border-radius: 999px;
    background: #f5eef2;
    color: var(--shop-primary);
    padding: 0 12px;
    font-size: 12px;
    font-weight: 800;
}

.shop-dashboard-status.is-success {
    background: #e9f5ee;
    color: #067a3f;
}

.shop-dashboard-status.is-info {
    background: rgba(var(--shop-primary-rgb), .1);
    color: var(--shop-primary);
}

.shop-dashboard-status.is-danger {
    background: #fff1f2;
    color: #be123c;
}

.shop-dashboard-empty {
    border: 1px dashed #d5dbe5;
    border-radius: 8px;
    padding: 18px;
    color: var(--shop-muted);
    text-align: center;
}

.shop-dashboard-data {
    display: grid;
    gap: 8px;
    margin-top: 18px;
    color: var(--shop-muted);
}

.shop-dashboard-data strong {
    color: #3a3737;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    letter-spacing: 0;
}

.shop-dashboard-favorites .shop-dashboard-card-head {
    margin-bottom: 18px;
}

.shop-dashboard-favorite-list {
    display: grid;
    gap: 14px;
}

.shop-dashboard-favorite-item {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
}

.shop-dashboard-favorite-item img {
    width: 58px;
    height: 58px;
    border: 1px solid #edf0f4;
    border-radius: 8px;
    background: #f7f8fa;
    object-fit: cover;
}

.shop-dashboard-favorite-item span {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.shop-dashboard-favorite-item strong {
    overflow: hidden;
    color: var(--shop-text);
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shop-dashboard-favorite-item small {
    color: var(--shop-muted);
    font-size: 13px;
}

.shop-dashboard-actions {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.shop-dashboard-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid #dce1e8;
    border-radius: 8px;
    color: var(--shop-text);
    font-weight: 800;
    text-decoration: none;
}

.shop-dashboard-actions a:first-child {
    border-color: var(--shop-primary);
    background: var(--shop-primary);
    color: #fff;
}

.shop-edit-account {
    gap: 18px;
}

.shop-edit-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.shop-edit-tabs button {
    min-height: 42px;
    border: 1px solid #dce1e8;
    border-radius: 8px;
    background: #fff;
    color: var(--shop-text);
    padding: 0 16px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.shop-edit-tabs button.is-active {
    border-color: var(--shop-primary);
    background: var(--shop-primary);
    color: #fff;
}

.shop-edit-panel {
    display: none;
}

.shop-edit-panel.is-active {
    display: block;
}

.shop-edit-form {
    display: grid;
    gap: 20px;
}

.shop-edit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.shop-edit-grid label {
    display: grid;
    gap: 7px;
    color: #303641;
    font-weight: 800;
}

.shop-edit-grid input,
.shop-edit-grid select {
    width: 100%;
    height: 44px;
    border: 1px solid #dce1e8;
    border-radius: 8px;
    background: #fff;
    padding: 0 12px;
    color: var(--shop-text);
    font: inherit;
}

.shop-edit-grid input:focus,
.shop-edit-grid select:focus {
    border-color: var(--shop-primary);
    outline: 3px solid rgba(var(--shop-primary-rgb), 0.12);
}

.shop-edit-grid input:disabled,
.shop-edit-grid select:disabled,
.shop-edit-form button:disabled {
    cursor: wait;
    opacity: .72;
}

.shop-edit-field-wide {
    grid-column: 1 / -1;
}

.shop-edit-grid.is-address {
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.shop-edit-col-12 {
    grid-column: span 12;
}

.shop-edit-col-8 {
    grid-column: span 8;
}

.shop-edit-col-6 {
    grid-column: span 6;
}

.shop-edit-col-4 {
    grid-column: span 4;
}

.shop-edit-divider {
    width: 100%;
    border: 0;
    border-top: 1px solid #edf0f4;
    margin: 2px 0;
}

.shop-edit-section-title {
    display: grid;
    gap: 4px;
}

.shop-edit-section-title.is-inline {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 16px;
}

.shop-edit-section-title h3 {
    margin: 0;
    color: var(--shop-text);
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: 0;
}

.shop-edit-section-title p {
    margin: 0;
    color: var(--shop-muted);
    font-size: 14px;
}

.shop-edit-actions {
    display: flex;
    justify-content: flex-end;
}

.shop-edit-copy {
    min-height: 38px;
    border: 1px solid #dce1e8;
    border-radius: 8px;
    background: #fff;
    color: var(--shop-text);
    padding: 0 12px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.shop-cep-loading {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}

.shop-cep-loading.is-visible {
    display: flex;
}

.shop-cep-loading > div {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #111;
    color: #fff;
    padding: 16px 18px;
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.3);
}

.shop-orders-page {
    display: grid;
    gap: 18px;
}

.shop-orders-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(32, 37, 48, 0.08);
    padding: 24px;
}

.shop-orders-head h1 {
    margin: 4px 0 6px;
    color: var(--shop-text);
    font-family: Montserrat, sans-serif;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: 0;
}

.shop-orders-head p {
    margin: 0;
    color: var(--shop-muted);
}

.shop-order-card,
.shop-order-info-card {
    overflow: hidden;
    border: 1px solid #e4e8ee;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(32, 37, 48, 0.06);
}

.shop-order-cover {
    height: 138px;
    background: var(--shop-primary);
}

.shop-order-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.86;
}

.shop-order-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
}

.shop-order-store {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.shop-order-avatar {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(var(--shop-primary-rgb), 0.1);
    color: var(--shop-primary);
    font-size: 19px;
}

.shop-order-store strong,
.shop-order-header-total strong,
.shop-order-item-price {
    color: var(--shop-text);
    font-family: Montserrat, sans-serif;
    letter-spacing: 0;
}

.shop-order-store span span,
.shop-order-item small,
.shop-order-info-card p {
    color: var(--shop-muted);
}

.shop-order-store strong {
    display: block;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shop-order-store span span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
}

.shop-order-header-total {
    display: grid;
    justify-items: end;
    align-content: start;
    gap: 8px;
    text-align: right;
}

.shop-order-header-total strong {
    font-size: 18px;
}

.shop-order-items {
    display: grid;
    gap: 14px;
    border-top: 1px solid #edf0f4;
    padding: 18px;
}

.shop-order-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
}

.shop-order-item-info {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 12px;
    color: inherit;
    text-decoration: none;
}

.shop-order-item-info img {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    object-fit: cover;
    background: #eef0ed;
}

.shop-order-item-info strong {
    display: block;
    overflow: hidden;
    color: var(--shop-text);
    font-size: 14px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shop-order-item small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
}

.shop-order-item-price {
    font-size: 16px;
    white-space: nowrap;
}

.shop-order-totals {
    display: grid;
    gap: 12px;
    border-top: 1px solid #edf0f4;
    padding: 16px 18px;
}

.shop-order-totals div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--shop-text);
    font-size: 14px;
}

.shop-order-totals strong {
    font-family: Montserrat, sans-serif;
    letter-spacing: 0;
    white-space: nowrap;
}

.shop-order-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 0 18px 18px;
}

.shop-order-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    border-radius: 17px;
    padding: 0 14px;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    text-decoration: none;
}

.shop-order-action.is-primary {
    background: #00a84f;
}

.shop-order-action.is-secondary {
    background: #f6a11a;
}

.shop-order-action i {
    margin-right: 6px;
}

.shop-order-info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
}

.shop-order-info-card {
    padding: 18px;
}

.shop-order-info-card h2 {
    margin: 0 0 14px;
    color: var(--shop-text);
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0;
}

.shop-order-info-card p {
    margin: 0 0 8px;
    font-size: 13px;
    line-height: 1.55;
}

.shop-order-chip {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    border-radius: 11px;
    background: rgba(var(--shop-primary-rgb), 0.08);
    color: var(--shop-primary);
    padding: 0 9px;
    font-weight: 800;
    font-size: 11px;
}

.shop-order-chip.is-success {
    background: #e7f5ec;
    color: #07843f;
}

.shop-order-chip.is-danger {
    background: #fdebea;
    color: #c93232;
}

.shop-order-chip.is-info {
    background: #eef4ff;
    color: var(--shop-primary);
}

@media (max-width: 1180px) {
    .shop-dashboard-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .shop-account-dashboard-head,
    .shop-dashboard-card-head,
    .shop-account-dashboard-login {
        grid-template-columns: 1fr;
        display: grid;
        align-items: start;
    }

    .shop-dashboard-summary {
        grid-template-columns: 1fr;
    }

    .shop-account-dashboard-head .shop-dashboard-primary-link,
    .shop-dashboard-summary {
        display: none;
    }

    .shop-dashboard-stat {
        min-height: 92px;
    }

    .shop-edit-grid,
    .shop-edit-grid.is-address,
    .shop-edit-section-title.is-inline {
        grid-template-columns: 1fr;
    }

    .shop-edit-col-12,
    .shop-edit-col-8,
    .shop-edit-col-6,
    .shop-edit-col-4 {
        grid-column: 1 / -1;
    }

    .shop-edit-actions {
        justify-content: stretch;
    }

    .shop-edit-actions .shop-button,
    .shop-edit-copy {
        width: 100%;
    }

    .shop-orders-head,
    .shop-order-header,
    .shop-order-actions {
        display: grid;
        justify-items: stretch;
    }

    .shop-order-header-total {
        justify-items: start;
        text-align: left;
    }

    .shop-order-info-grid {
        grid-template-columns: 1fr;
    }

    .shop-order-cover {
        height: 108px;
    }

    .shop-order-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .shop-order-item-price {
        padding-left: 58px;
    }
}

.shop-cart-empty {
    border: 1px dashed #d5dbe5;
    border-radius: 8px;
    padding: 18px;
    color: var(--shop-muted);
    text-align: center;
}

.shop-cart-items {
    display: grid;
    gap: 14px;
}

.shop-cart-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
}

.shop-cart-item a {
    color: inherit;
    text-decoration: none;
}

.shop-cart-item img {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    object-fit: cover;
    background: #eef0ed;
}

.shop-cart-item h3 {
    margin: 0 0 4px;
    overflow: hidden;
    color: #303846;
    font-size: 15px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shop-cart-item p {
    margin: 0;
    color: var(--shop-muted);
    font-size: 13px;
}

.shop-cart-item-total {
    color: var(--shop-text);
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    line-height: 1.15;
    letter-spacing: 0;
    white-space: nowrap;
}

.shop-cart-item-qty {
    display: grid;
    grid-template-columns: 30px 44px 30px;
    align-items: center;
    gap: 6px;
    width: max-content;
    margin-top: 10px;
}

.shop-cart-item-qty button,
.shop-cart-item-qty input {
    width: 100%;
    height: 30px;
    border: 0;
    font: inherit;
    font-weight: 800;
    text-align: center;
}

.shop-cart-item-qty button {
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--shop-primary);
    color: #fff;
    cursor: pointer;
}

.shop-cart-item-qty input {
    background: #fff;
    color: var(--shop-text);
}

.shop-cart-summary {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #edf0f4;
    margin-top: 18px;
    padding-top: 16px;
    font-size: 16px;
}

.shop-cart-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 6px;
    margin-top: 16px;
    background: var(--shop-primary);
    color: #fff;
    font-weight: 800;
}

@media (max-width: 1080px) {
    .shop-shell {
        grid-template-columns: 1fr;
    }

    .shop-header-horizontal .shop-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 80;
        display: block;
        width: min(300px, 86vw);
        transform: translateX(-100%);
        transition: transform .22s ease;
        box-shadow: 18px 0 48px rgba(27, 34, 48, .22);
    }

    .shop-header-horizontal.shop-sidebar-open .shop-sidebar {
        transform: translateX(0);
    }

    .shop-header-horizontal .shop-sidebar-backdrop {
        position: fixed;
        inset: 0;
        z-index: 70;
        display: none;
        background: rgba(15, 20, 28, .42);
    }

    .shop-header-horizontal.shop-sidebar-open .shop-sidebar-backdrop {
        display: block;
    }

    .shop-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 80;
        display: block;
        width: min(300px, 86vw);
        transform: translateX(-100%);
        transition: transform .22s ease;
        box-shadow: 18px 0 48px rgba(27, 34, 48, .22);
    }

    .shop-sidebar-open .shop-sidebar {
        transform: translateX(0);
    }

    .shop-sidebar-backdrop {
        position: fixed;
        inset: 0;
        z-index: 70;
        display: none;
        background: rgba(15, 20, 28, .42);
    }

    .shop-sidebar-open .shop-sidebar-backdrop {
        display: block;
    }

    .shop-sidebar-collapsed .shop-shell {
        grid-template-columns: 1fr;
    }

    .shop-sidebar-collapsed .shop-logo img {
        display: block;
        width: min(138px, 100%);
    }

    .shop-sidebar-collapsed .shop-side-section,
    .shop-sidebar-collapsed .shop-side-title,
    .shop-sidebar-collapsed .shop-side-item span,
    .shop-sidebar-collapsed .shop-side-chevron {
        display: block;
    }

    .shop-sidebar-collapsed .shop-side-item.is-divider {
        display: block;
    }

    .shop-sidebar-collapsed .shop-side-subnav {
        display: grid;
    }

    .shop-sidebar-collapsed .shop-side-item > a,
    .shop-sidebar-collapsed .shop-side-group-toggle {
        justify-content: flex-start;
        padding: 0 18px;
    }

    .shop-offers {
        grid-template-columns: repeat(3, 280px);
    }

    .shop-grid {
        grid-template-columns: repeat(3, minmax(170px, 1fr));
    }

    .shop-cart-layout {
        grid-template-columns: 1fr;
    }

    .shop-cart-col-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .shop-announcement {
        min-height: 36px;
        justify-content: center;
        padding: 0 14px;
        text-align: center;
        font-size: 12px;
    }

    .shop-announcement-socials,
    .shop-header-v2-search,
    .shop-header-v2-actions,
    .shop-header-v2-nav {
        display: none;
    }

    .shop-header-v2-main {
        grid-template-columns: 82px minmax(0, 1fr) 82px;
        min-height: 70px;
        gap: 8px;
        padding: 8px 14px;
    }

    .shop-header-v2-mobile-tools {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 15px;
    }

    .shop-header-v2-icon,
    .shop-header-v2-mobile-cart {
        width: 26px;
        height: 34px;
        padding: 0;
        font-size: 25px;
    }

    .shop-header-v2-mobile-tools .shop-header-v2-icon:nth-child(2) {
        font-size: 22px;
    }

    .shop-header-v2-logo img {
        width: min(118px, 100%);
        max-height: 52px;
    }

    .shop-header-v2-mobile-cart {
        display: inline-flex;
        justify-self: end;
        font-size: 24px;
    }

    .shop-header-v2-mobile-search {
        grid-template-columns: minmax(0, 1fr) 46px;
        padding: 0 14px 12px;
        background: #fff;
    }

    .shop-header-v2-mobile-search.is-open {
        display: grid;
    }

    .shop-header-v2-mobile-search input {
        min-height: 42px;
        border: 1px solid #e4e7ed;
        border-right: 0;
        border-radius: 0;
        padding: 0 12px;
        font: inherit;
        outline: none;
    }

    .shop-header-v2-mobile-search button {
        border: 0;
        background: var(--shop-primary);
        color: #fff;
        font-size: 18px;
    }

    .shop-topbar {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px;
    }

    .shop-top-actions {
        display: none;
    }

    .shop-main {
        padding-top: 18px;
    }

    .shop-home-banner {
        height: 350px;
    }

    .shop-home-banner-content {
        width: min(440px, calc(100% - 28px));
        gap: 12px;
        padding-bottom: 54px;
    }

    .shop-home-banner-kicker {
        font-size: 12px;
    }

    .shop-home-banner-kicker::after {
        width: 72px;
        margin-top: 7px;
    }

    .shop-home-banner h1 {
        font-size: 28px;
        line-height: 1.1;
    }

    .shop-home-banner-text {
        font-size: 18px;
        line-height: 1.45;
    }

    .shop-home-banner-button {
        min-height: 44px;
        padding: 0 22px;
        font-size: 13px;
    }

    .shop-home-banner-controls {
        bottom: 0;
        width: min(280px, calc(100% - 90px));
        height: 28px;
        border-radius: 4px 4px 0 0;
    }

    .shop-offers {
        grid-template-columns: repeat(3, 252px);
    }

    .shop-wide-offer {
        grid-template-columns: 1fr auto;
    }

    .shop-wide-offer img {
        display: none;
    }

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

    .shop-product {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .shop-product-header h1 {
        font-size: 24px;
    }

    .shop-product-actions {
        grid-template-columns: 116px minmax(0, 1fr);
    }

    .shop-product-description dl.row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .shop-product-description dd {
        margin-bottom: 10px;
    }

    .shop-card-media img {
        height: 150px;
    }

    .shop-cart-page-header {
        align-items: flex-start;
        flex-direction: column;
        text-align: center;
    }

    .shop-cart-page-header h1 {
        font-size: 26px;
    }

    .shop-cart-page-header > div,
    .shop-cart-continue {
        width: 100%;
    }

    .shop-cart-continue {
        justify-content: center;
    }

    .shop-cart-continue .bi {
        display: none;
    }

    .shop-cart-col-4 {
        grid-template-columns: 1fr;
    }

    .shop-cart-row {
        grid-template-columns: 82px minmax(0, 1fr) auto;
        gap: 12px;
        align-items: start;
    }

    .shop-cart-row-media img {
        width: 82px;
        height: 82px;
    }

    .shop-cart-row-info {
        grid-column: 2;
        gap: 12px;
    }

    .shop-cart-row-info h2 {
        font-size: 15px;
    }

    .shop-cart-qty {
        width: 98px;
        grid-template-columns: 30px 38px 30px;
    }

    .shop-cart-row-prices {
        grid-column: 3;
        grid-row: 1;
        align-self: start;
        justify-items: end;
    }

    .shop-cart-row-total {
        font-size: 15px;
        text-align: right;
    }

    .shop-shipping-form {
        grid-template-columns: 1fr;
    }

    .shop-footer {
        margin-top: 22px;
        padding: 24px 16px 92px;
    }

    .shop-footer-desktop {
        display: none;
    }

    .shop-footer-extra {
        display: none;
    }

    .shop-footer-mobile {
        display: grid;
    }

    .shop-footer-mobile details {
        border-top: 1px solid rgba(255, 255, 255, .24);
        padding: 14px 0;
    }

    .shop-footer-mobile details:last-of-type {
        border-bottom: 1px solid rgba(255, 255, 255, .24);
    }

    .shop-footer-mobile summary {
        display: flex;
        align-items: center;
        gap: 12px;
        justify-content: space-between;
        cursor: pointer;
        color: #fff;
        font-family: Montserrat, sans-serif;
        font-weight: 800;
        list-style: none;
    }

    .shop-footer-mobile summary .bi {
        transition: transform .18s ease;
    }

    .shop-footer-mobile details[open] summary .bi {
        transform: rotate(180deg);
    }

    .shop-footer-mobile a {
        display: block;
        padding-top: 14px;
    }

    .shop-footer-mobile-contact {
        display: grid;
        gap: 12px;
        padding-top: 16px;
    }

    .shop-footer-bottom {
        grid-template-columns: auto 1fr;
        margin-top: 20px;
        padding-top: 28px;
    }

    .shop-payments {
        display: none;
    }

    .shop-whatsapp {
        width: 64px;
        height: 64px;
    }

    .shop-bottom-nav {
        display: flex;
    }
}
