* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #17396b;
    --blue-2: #21477f;
    --yellow: #f6b700;
    --yellow-2: #ffcc1a;
    --red: #e71a13;
    --light: #efefef;
    --text: #23334f;
    --muted: #7d8798;
    --white: #ffffff;
    --black: #000000;
    --shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    --page-max-width: 1220px;
    --content-max-width: 1464px;
    --hero-side-offset: 144px;
    --hero-banner-height: 420px;
    --promo-banner-height: 220px;
    --benefit-card-height: 100px;
    --mini-box-min-height: 190px;
    --mini-head-height: 50px;
    --mini-item-min-height: 86px;
    --mini-thumb-height: 60px;
    --product-image-height: 280px;
    --product-actions-height: 46px;
    --product-grid-gap: 16px;
    --product-badge-height: 34px;
    --product-badge-offset: 10px;
    --feature-card-height: 400px;
    --card-anim-duration: 280ms;
    --card-anim-ease: ease;
    --card-hover-lift: -6px;
    --card-hover-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
    --pd-main-image-zoom-scale: 2;
    --pd-main-image-zoom-duration: 130ms;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #ededed;
    color: var(--text);
    overflow-x: hidden;
}

html {
    overflow-y: scroll;
    scrollbar-gutter: stable;
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
}

button,
.search-box,
.header-icon-button,
.header-icons > a,
.menu-inner > a,
.menu-button,
.hero-arrow,
.buy-now,
.btn-cart,
.btn-buy,
.promo-right a,
.feature-content span {
    border-radius: 0 !important;
}

.header-icons > a,
.header-icons > .user-dropdown > .header-icon-button,
.header-icons > .support-dropdown > .header-icon-button {
    border-radius: 50% !important;
}

.header .search-box form {
    border-radius: 9px !important;
}

.header .search-box form input {
    border-radius: 9px 0 0 9px !important;
}

.header .search-box form button {
    border-radius: 0 9px 9px 0 !important;
}

.menu-inner > a,
.menu-button {
    border-radius: 8px !important;
}

.departments-submenu,
.user-submenu,
.support-submenu {
    border-radius: 18px;
}

.departments-submenu a,
.user-submenu a,
.support-submenu a {
    border-radius: 12px !important;
}

.header-icons > a,
.header-icon-button,
.header-icons > a i,
.header-icon-button i {
    color: var(--blue) !important;
}

.departments-submenu a,
.user-submenu a,
.support-submenu a,
.departments-submenu a i,
.user-submenu a i,
.support-submenu a i,
.departments-submenu a:hover,
.user-submenu a:hover,
.support-submenu a:hover {
    color: var(--blue) !important;
}

a{
    text-decoration: none !important;
    color: var(--white) !important;
    
    &:hover{
        color: var(--yellow);
    }
}

.container {
    width: min(calc(100% - 24px), var(--content-max-width));
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}

.benefit-card,
.mini-box,
.product-card,
.feature-card,
.hero-arrow,
.buy-now,
.btn-cart,
.btn-buy,
.product-image,
.product-body,
.product-actions {
    transform: translateY(0);
    transition:
        transform var(--card-anim-duration) var(--card-anim-ease),
        box-shadow var(--card-anim-duration) var(--card-anim-ease);
    animation: card-reveal 420ms var(--card-anim-ease) both;
}

.benefit-card:hover,
.mini-box:hover,
.product-card:hover,
.feature-card:hover,
.hero-arrow:hover,
.buy-now:hover,
.btn-cart:hover,
.btn-buy:hover,
.benefit-card:focus-visible,
.mini-box:focus-visible,
.product-card:focus-visible,
.feature-card:focus-visible,
.hero-arrow:focus-visible,
.buy-now:focus-visible,
.btn-cart:focus-visible,
.btn-buy:focus-visible,
.product-image:focus-visible,
.product-body:focus-visible,
.product-actions:focus-visible {
    transform: translateY(var(--card-hover-lift));
    box-shadow: var(--card-hover-shadow);
}

.topbar {
    background: var(--blue);
    color: var(--white);
    font-size: 13px;
    height: 38px;
    display: flex;
    align-items: center;
    padding: 23px;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;

    & a {
        width: 34px;
        height: 34px;
        border: 2px solid rgba(255, 255, 255, 0.78);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--white) !important;
        background: transparent;
        transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
    }

    & a i {
        font-size: 16px;
        line-height: 1;
    }

    & a:hover,
    & a:focus-visible {
        background: #102a53;
        color: var(--white) !important;
        border-color: var(--white);
    }
  
    & span {
        width: 28px;
        height: 28px;
        border: 1px solid rgba(255,255,255,0.65);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
    }
}

.topbar-right {
    font-size: 12px;
    font-weight: 600;
}

.header {
    background: var(--white);
    padding: 12px 0;
}

.header-inner {
    display: grid;
    grid-template-columns: 170px 1fr 220px;
    grid-template-areas: "logo search icons";
    align-items: center;
    gap: 16px;
    width: 100%;
}

.logo {
    grid-area: logo;
    line-height: 1;
    max-width: 220px;
    width: 100%;
    height: auto;
    
    & a {
        display: block;
    }
    
    & img {
        width: 100%;
        height: auto;
    }
}

.logo-main {
    color: var(--blue);
    font-weight: 800;
    font-size: 30px;
    letter-spacing: -1px;
}

.logo-sub {
    color: #9a9a9a;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 3px;
    margin-top: 2px;
}

.search-box form{
    grid-area: search;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 620px;
    justify-self: center;
    border: 2px solid var(--yellow);
    border-radius: 8px;
    overflow: hidden;
    
    & input {
        width: calc(100% - 122px);
        height: 42px;
        border: 0;
        background: var(--white);
        padding: 0 16px;
        font-size: 12px;
        outline: none;
    }
    
    & button {
        width: 122px;
        height: 42px;
        border: 0;
        border-left: 1px solid rgba(23, 57, 107, 0.2);
        background: var(--yellow);
        color: var(--blue);
        font-size: 12px;
        font-weight: 800;
        cursor: pointer;
        transition: background-color 220ms ease;
        
        & i {
            font-size: 10px;
            margin-left: 3px;
        }
    }
}

.search-box button:hover,
.search-box button:focus-visible,
.header-icon-button:hover,
.header-icon-button:focus-visible,
.menu-button:hover,
.menu-button:focus-visible {
    transform: none;
    box-shadow: none;
}

.header-icons {
    grid-area: icons;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    position: relative;
    z-index: 130;
}

.header-icons > a,
.header-icons > .user-dropdown > .header-icon-button,
.header-icons > .support-dropdown > .header-icon-button {
    position: relative;
    width: 36px;
    height: 36px;
    border: 2px solid var(--blue);
    color: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    background: transparent;
}

.header-icon-button {
    cursor: pointer;
    font-family: inherit;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -4px;
    min-width: 17px;
    height: 17px;
    background: var(--red);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-dropdown {
    position: relative;
    z-index: 140;
}

.support-dropdown {
    position: relative;
    z-index: 140;
}

.menu {
    background: var(--white);
    height: 52px;
    display: flex;
    align-items: center;
    z-index: 120;
}

.menu-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 12px;
    color: var(--blue);
    font-weight: 600;
    width: 100%;
}

.menu-inner > a,
.menu-inner > .departments-dropdown {
    display: inline-flex;
    align-items: center;
    height: 38px;
}

.menu-inner > a {
    padding: 0 16px;
    border: 1.5px solid var(--blue);
    border-radius: 8px;
    background: var(--white);
    color: var(--blue) !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1px;
}

.menu-home-link {
    width: 38px;
    min-width: 38px;
    justify-content: center;
    padding: 0;
    
    & i {
        font-size: 14px;
    }
}

.menu-button {
    height: 38px;
    padding: 0 14px;
    border: 1px solid var(--blue);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    background: var(--white);
    color: var(--blue);
    cursor: pointer;
    font-family: inherit;
}

.menu-inner > a:hover,
.menu-button:hover,
.menu-inner > a:focus-visible,
.menu-button:focus-visible,
.menu a.active {
    background: var(--white);
    border-color: #102a53;
    color: #102a53 !important;
}

.menu-inner > a i,
.menu-button i {
    color: inherit;
}

.departments-dropdown {
    position: relative;
}

.departments-trigger i {
    transition: transform 220ms ease;
}

.departments-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(12, 25, 49, 0.28);
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    z-index: 140;
    
    & a {
        display: flex;
        justify-content: flex-start; 
        align-items: center; 
        gap: 10px;
        padding: 11px 16px;
        color: var(--blue);
        font-size: 12px;
        font-weight: 700;
        
        &:hover {
            background: #eef3fb;
        }
    }
    
    & a + a {
        border-top: 1px solid #edf1f7;
    }
    
    & a i {
        width: 16px;
        text-align: center;
        color: var(--blue-2);
        font-size: 12px;
    }
}

.user-submenu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 240px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(12, 25, 49, 0.28);
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    z-index: 140;
    overflow: hidden;
    
    & a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 11px 16px;
        color: var(--blue);
        font-size: 12px;
        font-weight: 700;
        width: 100%;
        white-space: nowrap;
        
        &:hover {
            background: #eef3fb;
        }
    }
    
    & a + a {
        border-top: 1px solid #edf1f7;
    }
    
    & a i {
        width: 16px;
        text-align: center;
        color: var(--blue-2);
        font-size: 12px;
    }
}

.user-submenu--logged {
    top: calc(100% + 10px);
    width: min(500px, calc(100vw - 24px));
    padding: 0;
}

.user-submenu--logged .user-submenu__logged-layout {
    display: grid;
    grid-template-columns: minmax(185px, 210px) minmax(0, 1fr);
    align-items: stretch;
}

.user-submenu--logged .user-submenu__logged-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 24px 18px;
    text-align: center;
}

.user-submenu--logged .user-submenu__avatar {
    width: 118px;
    height: 118px;
    border: 2px solid rgba(23, 57, 107, 0.9);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    overflow: hidden;
}

.user-submenu--logged .user-submenu__avatar-icon {
    font-size: 58px;
    color: var(--blue);
    line-height: 1;
}

.user-submenu--logged .user-submenu__identity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    max-width: 100%;
}

.user-submenu--logged .user-submenu__hello,
.user-submenu--logged .user-submenu__name {
    color: var(--blue);
}

.user-submenu--logged .user-submenu__hello {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
}

.user-submenu--logged .user-submenu__name {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    word-break: break-word;
}

.user-submenu--logged .user-submenu__profile-cta,
.user-submenu--logged .user-submenu__profile-cta:visited {
    width: 100%;
    max-width: 182px;
    min-height: 44px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: var(--white) !important;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    box-shadow: 0 14px 24px rgba(23, 57, 107, 0.16);
    transition: background-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
    border-radius: 12px !important;
}

.user-submenu--logged .user-submenu__profile-cta:hover,
.user-submenu--logged .user-submenu__profile-cta:focus-visible,
.user-submenu--logged .user-submenu__profile-cta:active {
    background: #102a53;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 18px 28px rgba(23, 57, 107, 0.18);
}

.user-submenu--logged .user-submenu__logged-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 16px;
    border-left: 1px solid rgba(23, 57, 107, 0.14);
}

.user-submenu--logged .user-submenu__profile-link {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 56px;
    padding: 0 14px;
    color: var(--blue) !important;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    border-top: 0 !important;
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 220ms ease, padding-left 220ms ease;
}

.user-submenu--logged .user-submenu__profile-link:last-child {
    border-bottom: 0;
}

.user-submenu--logged .user-submenu__profile-link:hover,
.user-submenu--logged .user-submenu__profile-link:focus-visible {
    background: #f4f7fc;
    padding-left: 22px;
}

.user-submenu--logged .user-submenu__profile-link span {
    flex: 1;
}

.user-submenu--logged .user-submenu__profile-link i {
    width: 20px;
    min-width: 20px;
    text-align: center;
    color: var(--blue) !important;
    font-size: 16px;
}

@media (max-width: 767px) {
    .user-submenu--logged {
        width: min(92vw, 320px);
    }

    .user-submenu--logged .user-submenu__logged-layout {
        grid-template-columns: 1fr;
    }

    .user-submenu--logged .user-submenu__logged-main {
        padding: 22px 18px 18px;
    }

    .user-submenu--logged .user-submenu__avatar {
        width: 104px;
        height: 104px;
    }

    .user-submenu--logged .user-submenu__avatar-icon {
        font-size: 52px;
    }

    .user-submenu--logged .user-submenu__logged-links {
        padding: 6px 12px 14px;
        border-left: 0;
        border-top: 1px solid rgba(23, 57, 107, 0.14);
    }

    .user-submenu--logged .user-submenu__profile-link {
        min-height: 50px;
        padding: 0 12px;
        font-size: 12px;
    }
}

.support-submenu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 280px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(12, 25, 49, 0.28);
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    z-index: 140;
    overflow: hidden;
    
    & a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 11px 16px;
        color: var(--blue);
        font-size: 12px;
        font-weight: 700;
        width: 100%;
        white-space: nowrap;
        
        &:hover {
            background: #eef3fb;
        }
    }
    
    & a + a {
        border-top: 1px solid #edf1f7;
    }
    
    & a i {
        width: 16px;
        text-align: center;
        color: var(--blue-2);
        font-size: 12px;
    }
}

.departments-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(9, 19, 39, 0.38);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 220ms ease;
    z-index: 110;
}

body.departments-open,
body.user-menu-open,
body.support-menu-open {
    overflow: hidden;
}

body.departments-open .departments-backdrop,
body.user-menu-open .departments-backdrop,
body.support-menu-open .departments-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.departments-open .departments-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

body.user-menu-open .user-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

body.support-menu-open .support-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

body.departments-open .departments-trigger i {
    transform: rotate(180deg);
}

.main-page {
    padding-bottom: 0;
}

.hero {
    width: min(calc(100% - 24px), var(--content-max-width));
    max-width: var(--content-max-width);
    margin: 26px auto 0;
    padding: 0;
    display: block;
    position: relative;
}

.hero-banner {
    width: 100%;
    max-width: 100%;
    height: var(--hero-banner-height);
    min-height: 260px;
    aspect-ratio: 16 / 6;
    background: #0a2367 url('../img/banner/banner-hero.png') center center / cover no-repeat;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.hero-banner::before {
    display: none;
}

.banner-overlay-link {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 4;
    cursor: pointer;
}

.banner-overlay-link:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: -4px;
}

.hero-content {
    display: none;
}

.hero-text h1 {
    color: var(--white);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    text-shadow: 0 2px 0 rgba(0,0,0,0.1);
}

.hero-lines {
    width: 130px;
    height: 36px;
    display: block;
    margin-top: 18px;
    position: relative;
}

.hero-lines::before,
.hero-lines::after {
    content: "";
    position: absolute;
    left: 0;
    height: 5px;
    background: var(--yellow);
    border-radius: 999px;
    transform: skewX(-22deg);
}

.hero-lines::before {
    width: 100px;
    top: 3px;
}

.hero-lines::after {
    width: 70px;
    top: 15px;
}

.hero-chairs {
    display: flex;
    align-items: end;
    gap: 18px;
    margin-left: auto;
    margin-right: 30px;
}

.chair {
    position: relative;
    border-radius: 18px 18px 10px 10px;
    background: linear-gradient(180deg, #464646 0%, #111 100%);
    box-shadow: 0 10px 16px rgba(0,0,0,0.25);
}

.chair::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -40px;
    width: 3px;
    height: 48px;
    background: #444;
    transform: translateX(-50%);
}

.chair::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -48px;
    width: 54px;
    height: 12px;
    border-top: 3px solid #444;
    border-radius: 50%;
    transform: translateX(-50%);
}

.chair-1 {
    width: 120px;
    height: 170px;
}

.chair-2 {
    width: 95px;
    height: 145px;
}

.hero-badge {
    width: 145px;
    height: 145px;
    background: #eb2d24;
    color: #ffe500;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transform: rotate(-12deg);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.05;
    
    & strong {
        font-size: 22px;
        line-height: 1;
        margin: 4px 0;
    }
}

.hero-arrow {
    position: absolute;
    top: 50%;
    margin-top: -21px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    cursor: pointer;
    font-size: 14px;
    box-shadow: var(--shadow);
    z-index: 3;
}

.hero-arrow.left {
    left: 12px;
}

.hero-arrow.right {
    right: 12px;
}

.benefits {
    width: min(calc(100% - 24px), var(--content-max-width));
    max-width: var(--content-max-width);
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin: 28px auto 0;
}

.benefit-card {
    height: var(--benefit-card-height);
    border: 1px solid rgba(23, 57, 107, 0.16);
    border-radius: 12px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    color: var(--blue);
    text-align: left;
    padding: 0 14px;
    position: relative;
    overflow: hidden;
    animation: card-reveal 420ms var(--card-anim-ease) both;
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: -70%;
    left: -42%;
    width: 62%;
    height: 250%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.24) 46%,
        rgba(255,255,255,0) 100%
    );
    display: none;
    transform: translateX(-140%) rotate(15deg);
    animation: none;
    pointer-events: none;
}

.benefit-card::after {
    display: none;
}

.benefit-card > * {
    position: relative;
    z-index: 1;
}

.benefit-card i {
    font-size: 24px;
    color: var(--blue);
    animation: benefit-icon-float 2.1s ease-in-out infinite;
    filter: drop-shadow(0 2px 3px rgba(23, 57, 107, 0.18));
}

.divider {
    width: 100%;
    max-width: none;
    height: 5px;
    margin: 34px 0 46px;
    position: relative;
    overflow: hidden;
    background: rgba(23, 57, 107, 0.14);
}

.divider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        var(--blue) 0 560px,
        var(--yellow) 560px 1120px,
        var(--red) 1120px 1680px
    );
    animation: divider-carousel 14s linear infinite;
}

.large-gap {
    margin-top: 44px;
    margin-bottom: 70px;
}

.mini-categories {
    width: min(calc(100% - 24px), var(--content-max-width));
    max-width: var(--content-max-width);
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.mini-categories.container,
.feature-cards.container {
    width: min(calc(100% - 24px), var(--content-max-width));
    max-width: var(--content-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.mini-categories + .offers {
    margin-top: clamp(28px, 4vw, 56px);
}

.blue-square {
    display: block;
    width: 100%;
    max-width: none;
    aspect-ratio: 2.28 / 1;
    min-height: 200px;
    background-color: var(--blue);
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(23, 57, 107, 0.16);
    overflow: hidden;
    transition: transform .24s ease, box-shadow .24s ease, filter .24s ease;
}

.blue-square:hover,
.blue-square:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(23, 57, 107, 0.22);
    filter: saturate(1.02);
}

.blue-square--interna {
    background-image: url('../img/banner/area-interna.png');
}

.blue-square--externa {
    background-image: url('../img/banner/area-externa.png');
}

.mini-box {
    background: #f8f8f8;
    color: #212529;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    min-height: var(--mini-box-min-height);
}

.mini-head {
    height: var(--mini-head-height);
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--yellow);
    font-size: 18px;
    font-weight: 800;
    
    & i {
        color: var(--yellow);
        font-size: 14px;
    }
}

.mini-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-top: 1px solid #acb2bb;
    min-height: var(--mini-item-min-height);
}

.mini-thumb {
    width: 68px;
    height: var(--mini-thumb-height);
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.thumb-1 {
    background:
        linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)),
        url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=300&q=80') center/cover no-repeat;
}

.thumb-2 {
    background:
        linear-gradient(rgba(0,0,0,.1), rgba(0,0,0,.1)),
        url('https://images.unsplash.com/photo-1519947486511-46149fa0a254?auto=format&fit=crop&w=300&q=80') center/cover no-repeat;
}

.thumb-3 {
    background:
        linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)),
        url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=300&q=80') center/cover no-repeat;
}

.thumb-4 {
    background:
        linear-gradient(rgba(255,255,255,.2), rgba(255,255,255,.2)),
        url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=300&q=80') center/cover no-repeat;
}

.mini-info {
    & h4 {
        font-size: 12px;
        font-weight: 500;
        color: #4f5e73;
        margin-bottom: 2px;
    }

    & p {
        font-size: 12px;
        font-weight: 700;
        color: var(--blue);
    }
    
    & span {
        display: inline-block;
        margin-left: 8px;
        background: var(--yellow);
        color: #111;
        font-size: 10px;
        font-weight: 800;
        padding: 1px 5px;
    }
}

.promo-banner {
    margin-top: 40px;
    width: min(calc(100% - 24px), var(--content-max-width));
    max-width: var(--content-max-width);
    height: clamp(130px, 14vw, 176px);
    min-height: 130px;
    aspect-ratio: auto;
    border-radius: 8px;
    overflow: hidden;
    background: var(--blue) url('../img/banner/banner-ofertas.png') center center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow);
    margin-left: auto;
    margin-right: auto;
    isolation: isolate;
}

.promo-banner.container {
    width: min(calc(100% - 24px), var(--content-max-width));
    max-width: var(--content-max-width);
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.promo-banner::before {
    display: none;
}

.promo-left,
.promo-right {
    display: none;
}

.promo-left {
    display: flex;
    align-items: center;
    padding-left: 48px;
    gap: 24px;
}

.promo-price small,
.promo-price span,
.promo-price strong {
    display: block;
}

.promo-price {
    & small {
        width: fit-content;
        background: var(--white);
        color: var(--yellow);
        font-size: 9px;
        font-weight: 800;
        padding: 3px 8px;
        border-radius: 3px;
        margin-bottom: 4px;
    }

    & strong {
        width: fit-content;
        background: var(--white);
        color: var(--blue);
        font-size: 22px;
        font-weight: 800;
        padding: 5px 10px;
        border-radius: 4px;
    }
      
    & span {
        width: fit-content;
        background: var(--red);
        color: var(--white);
        font-size: 8px;
        font-weight: 700;
        padding: 2px 8px;
        margin-top: 4px;
        border-radius: 3px;
    }  
}

.promo-chairs {
    display: flex;
    gap: 10px;
    align-items: end;
}

.game-chair {
    width: 40px;
    height: 74px;
    border-radius: 14px 14px 8px 8px;
    position: relative;
    box-shadow: 0 10px 14px rgba(0,0,0,.25);
}

.game-chair::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -22px;
    width: 3px;
    height: 28px;
    background: #2a2a2a;
    transform: translateX(-50%);
}

.green {
    background: linear-gradient(180deg, #83ff59 0%, #18301f 100%);
}

.red {
    background: linear-gradient(180deg, #ff6b50 0%, #371818 100%);
}

.promo-right {
    width: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-right: 24px;
    
    & a {
        width: 84px;
        height: 44px;
        background: var(--white);
        color: var(--blue);
        border-radius: 999px;
        font-size: 11px;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1.1;
    }
}

.promo-tag {
    background: var(--yellow);
    color: var(--blue);
    font-size: 21px;
    font-weight: 800;
    padding: 10px 18px;
    border-radius: 999px;
}

.promo-banner .promo-left,
.promo-banner .promo-right {
    display: none !important;
}

.promo-banner-chair {
    position: absolute;
    left: 46%;
    bottom: -10px;
    top: auto;
    transform: translateX(-50%);
    z-index: 3;
    width: clamp(148px, 19vw, 250px);
    max-width: 48%;
    height: auto;
    max-height: none;
    pointer-events: none;
    display: block;
}

.promo-banner-chair-red {
    position: absolute;
    left: 55%;
    bottom: -6px;
    top: auto;
    transform: translateX(-50%);
    z-index: 3;
    width: clamp(118px, 15vw, 200px);
    max-width: 38%;
    height: auto;
    max-height: none;
    pointer-events: none;
    display: block;
}

.offers {
    margin-top: 0;
    width: 100%;
}

.offers.container {
    width: min(calc(100% - 24px), var(--content-max-width));
    max-width: var(--content-max-width);
}

.offers .product-grid {
    overflow-x: visible;
    padding-bottom: 0;
}

.offers .product-grid::-webkit-scrollbar {
    height: 6px;
}

.promo-banner + .divider {
    display: none;
}

.promo-banner + .offers {
    margin-top: 72px;
}

.promo-banner + .divider + .offers {
    margin-top: 72px;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    
    & h2 {
        font-size: 28px;
        font-weight: 800;
        color: var(--blue);
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    & h2 i {
        color: var(--yellow);
        font-size: 20px;
    }
}

.countdown-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
}

.clock-icon {
    position: relative;
    width: 66px;
    height: 66px;
    margin-right: 4px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ff877f 0%, var(--red) 62%, #c8332e 100%);
    color: var(--white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(234, 75, 69, 0.34);
    
    & i {
        animation: clock-hand-swing 1.9s ease-in-out infinite;
        transform-origin: 50% 65%;
    }
}

.clock-icon::after {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 2px solid rgba(234, 75, 69, 0.45);
    animation: clock-ring-pulse 0.7s ease-out infinite;
}

.count-box {
    width: 64px;
    height: 64px;
    border: 2px solid rgba(255,255,255,0.3);
    background: linear-gradient(180deg, #21477f 0%, var(--blue) 100%);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 800;
    animation: timer-box-glow 2.4s ease-in-out infinite;
}

.countdown-wrap > span {
    color: var(--red);
    font-size: 32px;
    font-weight: 800;
}

.buy-now {
    width: 128px;
    height: 65px;
    background: var(--red);
    color: var(--white);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    line-height: 1.1;
    margin-left: 8px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: var(--product-grid-gap);
    justify-content: start;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,.14);
    overflow: hidden;
    position: relative;
    width: 100%;
    min-width: 0;
    justify-self: center;
}

.product-media {
    position: relative;
}

.discount-badge {
    position: absolute;
    left: var(--product-badge-offset);
    bottom: var(--product-badge-offset);
    min-width: 72px;
    max-width: calc(100% - (var(--product-badge-offset) * 2));
    height: var(--product-badge-height);
    padding: 0 12px;
    background: var(--red);
    color: var(--white);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 10px 20px rgba(231, 26, 19, 0.22);
}

.product-image {
    display: block;
    width: 100%;
    height: var(--product-image-height);
    margin: 0 auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.img-1 {
    background:
        linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.12)),
        url('https://images.unsplash.com/photo-1580480055273-228ff5388ef8?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
}

.img-2 {
    background:
        linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.08)),
        url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
}

.img-3 {
    background:
        linear-gradient(rgba(255,255,255,.08), rgba(255,255,255,.08)),
        url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
}

.img-4 {
    background:
    linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.1)),
    url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
}

.img-5 {
    background:
        linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.1)),
        url('https://images.unsplash.com/photo-1497366412874-3415097a27e7?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
}

.img-6 {
    background:
        linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.1)),
        url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
}

.product-body {
    flex: 1;
    padding: 14px 12px 0;
    
    & h3 {
        font-size: 16px;
        line-height: 1.1;
        color: var(--blue);
        font-weight: 600;
        margin-bottom: 3px;
    }
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.product-category {
    display: block;
    color: var(--yellow);
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 2px;
}

.rating {
    color: var(--yellow);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 4px;
    
    & small {
        color: #98a0ad;
        font-size: 10px;
        margin-left: 4px;
    }
}

.price-block small,
.price-block strong,
.price-block span {
    display: block;
}

.price-block {
    & strong {
        color: var(--blue);
        font-size: 21px;
        line-height: 1;
        font-weight: 800;
        margin: 0;
    }
    
    & span {
        color: #9ba1ab;
        font-size: 9px;
        font-weight: 600;
    }
    
    & small {
        color: #9ba1ab;
        font-size: 12px;
        text-decoration: line-through;
    }
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: var(--product-actions-height);
}

.btn-cart,
.btn-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.btn-cart {
    background: var(--yellow);
    color: var(--blue);
}

.btn-buy {
    background: var(--blue);
    color: var(--white);
}

.product-actions .btn-cart,
.product-actions .btn-buy {
    transition: transform .2s ease, box-shadow .2s ease;
}

.product-actions .btn-cart:hover,
.product-actions .btn-cart:focus-visible,
.product-actions .btn-buy:hover,
.product-actions .btn-buy:focus-visible {
    transform: translateY(-1px);
}

.product-actions .btn-buy:hover,
.product-actions .btn-buy:focus-visible {
    box-shadow: 0 8px 14px rgba(23, 57, 107, 0.28);
}

.product-actions .btn-cart:hover,
.product-actions .btn-cart:focus-visible {
    box-shadow: 0 8px 14px rgba(246, 183, 0, 0.3);
}

.offers .product-actions .btn-cart,
.offers .product-actions .btn-buy {
    font-size: 12px;
}

.offers .product-actions .btn-cart,
.offers .product-actions .btn-cart:hover,
.offers .product-actions .btn-cart:focus-visible {
    color: var(--blue) !important;
}

.offers .product-card .product-actions--home {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    height: auto;
    margin-top: 10px;
    padding: 0 10px 14px;
}

.offers .product-card .product-actions--home .btn-cart--home,
.offers .product-card .product-actions--home .btn-buy--home {
    min-height: 46px;
    border-radius: 8px !important;
}

.offers .product-card .product-actions--home .btn-cart--home {
    width: 46px;
    min-width: 46px;
    height: 46px;
    padding: 0;
    background: var(--yellow);
    color: var(--blue) !important;
    box-shadow: 0 10px 18px rgba(246, 183, 0, 0.22);
}

.offers .product-card .product-actions--home .btn-cart--home i {
    font-size: 18px;
    color: var(--blue) !important;
}

.offers .product-card .product-actions--home .btn-buy--home,
.offers .product-card .product-actions--home .btn-buy--home:visited {
    width: 100%;
    min-width: 0;
    padding: 0 16px;
    background: var(--blue);
    color: var(--white) !important;
    font-size: 12px !important;
    letter-spacing: 0.03em;
    box-shadow: 0 10px 18px rgba(23, 57, 107, 0.2);
}

.offers .product-card .product-actions--home .btn-buy--home:hover,
.offers .product-card .product-actions--home .btn-buy--home:focus-visible {
    background: #102a53;
    color: var(--white) !important;
}

.offers .product-card .product-actions--home .btn-cart--home:hover,
.offers .product-card .product-actions--home .btn-cart--home:focus-visible {
    background: var(--yellow-2);
    color: var(--blue) !important;
}

.offers .product-card .catalog-product-card__favorite {
    width: 42px !important;
    height: 42px !important;
}

.offers .product-card .catalog-product-card__favorite i {
    font-size: 20px !important;
}

.feature-cards {
    width: min(calc(100% - 24px), var(--content-max-width));
    max-width: var(--content-max-width);
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 88px;
}

.feature-card {
    height: var(--feature-card-height);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    background-size: cover;
    background-position: center;
    transition: box-shadow .6s ease;
}

.feature-1 {
    background:
        url('../img/corporativo.png') center/cover no-repeat;
}

.feature-2 {
    background:
        url('../img/interna.png') center/cover no-repeat;
}

.feature-3 {
    background:
        url('../img/externa.png') center/cover no-repeat;
}

.feature-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: none;
}

.feature-content {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    transform: translateY(6px);
    transition: transform .6s ease;
    
    & h3 {
        color: var(--white);
        font-size: 31px;
        font-weight: 800;
        line-height: 1.05;
        margin-bottom: 12px;
        text-transform: uppercase;
    }
    
    & span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100px;
        height: 31px;
        border-radius: 6px;
        background: var(--yellow);
        color: var(--blue);
        font-size: 12px;
        font-weight: 800;
    }
}

.feature-card:hover,
.feature-card:focus-visible {
    transform: none;
    box-shadow: 0 18px 34px rgba(12, 15, 22, 0.28);
}

.feature-card:hover .feature-content,
.feature-card:focus-visible .feature-content {
    transform: translateY(0);
}

.simple-head {
    margin-bottom: 22px;
    
    & h2 i {
        color: var(--red);
    }
}

.bottom-offers {
    margin-bottom: 66px;
    width: 100%;
    position: relative;
}

.bottom-carousel-controls {
    position: absolute;
    top: calc(50% + 12px);
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 8;
}

.bottom-carousel-arrow {
    position: absolute;
    top: 0;
    padding: 8px 4px;
    border: 0;
    background: transparent;
    color: var(--blue);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: none;
    transition: transform .2s ease, color .2s ease;
    transform: translateY(-50%);
}

.bottom-carousel-arrow--prev {
    left: -10px;
}

.bottom-carousel-arrow--next {
    right: -10px;
}

.bottom-carousel-arrow:hover,
.bottom-carousel-arrow:focus-visible {
    transform: translateY(calc(-50% - 1px));
    background: transparent;
    color: var(--red);
    box-shadow: none;
}

.bottom-grid-carousel {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    padding-right: 0;
}

.bottom-offers .bottom-grid {
    display: flex;
    gap: var(--product-grid-gap);
    width: max-content;
    grid-template-columns: none;
    justify-content: flex-start;
    transform: translateX(0);
    transition: transform .45s ease;
    will-change: transform;
}

.bottom-grid .product-card {
    max-width: none;
    flex: 0 0 auto;
}

.bottom-grid .product-image {
    width: 100%;
}

/* ===== PAGINA DE FAVORITOS ===== */
.favorites-page {
    width: 100%;
    padding: 30px 0 78px;
}

.favorites-page-heading__title {
    margin: 0;
    color: var(--blue);
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

.favorites-page-heading__text {
    margin: 10px 0 0;
    color: #55657e;
    font-size: 14px;
    line-height: 1.5;
}

.benefit-card span {
    line-height: 1.2;
}

.favorites-heading-section {
    text-align: left;
}

.favorites-actions-section {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    align-items: stretch;
    gap: 10px;
}

.favorites-btn {
    min-height: 42px;
    min-width: 0;
    width: 100%;
    border-radius: 13px !important;
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    text-transform: uppercase;
    border: 1px solid transparent;
    line-height: 1.15;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    
    &:hover {
        transform: translateY(-1px);
    }
}

.favorites-btn--continue {
    background: var(--blue);
    color: var(--white) !important;
    border-color: rgba(23, 57, 107, 0.85);
    box-shadow: 0 7px 14px rgba(23, 57, 107, 0.18);
}

.favorites-btn--add {
    background: linear-gradient(120deg, var(--yellow) 0%, #ffcc33 100%);
    color: var(--blue) !important;
    border-color: rgba(246, 183, 0, 0.45);
    box-shadow: 0 7px 14px rgba(246, 183, 0, 0.18);
}

.favorites-btn--lists {
    background: #eef3fb;
    color: var(--blue) !important;
    border-color: rgba(23, 57, 107, 0.18);
    box-shadow: 0 6px 12px rgba(23, 57, 107, 0.08);
}

.favorites-btn--lists.is-open {
    background: #dfe9f7;
    border-color: rgba(23, 57, 107, 0.28);
}

.favorites-btn--clear-all {
    background: #fff5f5;
    color: var(--red) !important;
    border-color: rgba(234, 75, 69, 0.45);
    box-shadow: 0 6px 12px rgba(234, 75, 69, 0.12);
}

.favorites-btn i,
.favorites-card__action i {
    flex-shrink: 0;
}

.favorites-btn--clear-all i {
    font-size: 14px;
}

.favorites-btn--clear-all:hover {
    background: var(--red);
    color: var(--white) !important;
}

.favorites-divider {
    margin-top: 40px;
    margin-bottom: 34px;
}

.favorites-page .is-hidden {
    display: none !important;
}

.favorites-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none;
}

.favorites-lists-section {
    width: min(calc(100% - 24px), var(--content-max-width));
    max-width: var(--content-max-width);
    margin: 28px auto 0;
    padding: 18px;
    background: linear-gradient(180deg, #f8fbff 0%, var(--white) 100%);
    border: 1px solid rgba(23, 57, 107, 0.1);
    border-radius: 16px;
    box-shadow: 0 14px 28px rgba(23, 57, 107, 0.08);
}

.favorites-lists-section__title {
    margin: 0;
    color: var(--blue);
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.08;
}

.favorites-lists-section__text {
    margin: 8px 0 0;
    color: #5e6d83;
    font-size: 13px;
    line-height: 1.55;
}

.favorites-lists-shell {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.favorites-lists-panel,
.favorites-list-detail,
.favorites-picker,
.favorites-shared-content {
    background: var(--white);
    border: 1px solid rgba(23, 57, 107, 0.12);
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(23, 57, 107, 0.12);
}

.favorites-lists-panel {
    padding: 16px;
    position: sticky;
    top: 18px;
}

.favorites-lists-panel__title {
    margin: 0;
    color: var(--blue);
    font-size: 22px;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
}

.favorites-list-form {
    margin-top: 12px;
    display: grid;
    gap: 10px;
}

.favorites-list-field {
    display: grid;
    gap: 6px;
}

.favorites-list-field span {
    color: #596a83;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.favorites-color-field--full {
    grid-column: 1 / -1;
}

.favorites-color-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.favorites-color-picker__option {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(23, 57, 107, 0.18);
    border-radius: 14px !important;
    background: #f8fbff;
    color: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.favorites-color-picker__option:hover,
.favorites-color-picker__option:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(23, 57, 107, 0.12);
}

.favorites-color-picker__option.is-active {
    border-color: var(--favorites-list-color);
    box-shadow: 0 0 0 2px var(--favorites-list-color);
}

.favorites-color-picker__swatch {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: var(--favorites-list-color);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.favorites-list-field input,
.favorites-list-field select,
.favorites-list-share__row input {
    width: 100%;
    min-height: 40px;
    border: 1px solid #c8d4e8;
    background: #fbfdff;
    color: var(--blue);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    padding: 0 12px;
    outline: none;
}

.favorites-list-field input:focus,
.favorites-list-field select:focus,
.favorites-list-share__row input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(23, 57, 107, 0.12);
}

.favorites-list-form__submit,
.favorites-list-btn,
.favorites-list-item__action,
.favorites-picker-card__btn,
.favorites-list-share__row button {
    min-height: 40px;
    border: 1px solid transparent;
    border-radius: 12px !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 12px;
    line-height: 1.15;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.favorites-list-form__submit:hover,
.favorites-list-btn:hover,
.favorites-list-item__action:hover,
.favorites-picker-card__btn:hover,
.favorites-list-share__row button:hover {
    transform: translateY(-1px);
}

.favorites-list-form__submit,
.favorites-list-btn--pick,
.favorites-list-item__action--view,
.favorites-picker-card__btn--add,
.favorites-list-share__row button {
    background: linear-gradient(120deg, var(--yellow) 0%, #ffcc33 100%);
    border-color: rgba(246, 183, 0, 0.5);
    color: var(--blue);
}

.favorites-lists-feedback {
    min-height: 18px;
    margin: 8px 0 0;
    color: #5b6b82;
    font-size: 12px;
    font-weight: 700;
}

.favorites-lists-feedback.is-error {
    color: var(--red);
}

.favorites-lists-feedback.is-success {
    color: #20794a;
}

.favorites-lists-menu {
    margin-top: 10px;
    display: grid;
    gap: 8px;
    max-height: 380px;
    overflow: auto;
    padding-right: 2px;
}

.favorites-lists-menu__empty {
    margin: 4px 0 0;
    color: #6a7990;
    font-size: 12px;
    line-height: 1.45;
}

.favorites-list-chip {
    width: 100%;
    padding: 12px 12px 12px 14px;
    background: #f6f9ff;
    border: 1px solid rgba(23, 57, 107, 0.14);
    border-left: 4px solid var(--favorites-list-color, var(--yellow));
    border-radius: 14px !important;
    color: var(--blue);
    text-align: left;
    display: grid;
    gap: 4px;
    cursor: pointer;
}

.favorites-list-chip.is-active {
    background: linear-gradient(180deg, #fffdf5 0%, #fff 100%);
    border-color: var(--favorites-list-color, rgba(246, 183, 0, 0.58));
    box-shadow: 0 0 0 1px var(--favorites-list-color, var(--yellow)), 0 10px 18px rgba(23, 57, 107, 0.08);
}

.favorites-list-chip__name {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
}

.favorites-list-chip__meta {
    color: #627289;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.favorites-list-detail {
    min-height: 280px;
    padding: 16px;
    border-top: 4px solid var(--favorites-list-color, var(--blue));
}

.favorites-list-empty {
    min-height: 240px;
    display: grid;
    place-items: center;
    text-align: center;
    gap: 8px;
    color: #5b6b82;
}

.favorites-list-empty__icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffe07e 0%, #f6b700 100%);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.favorites-list-empty__title {
    margin: 0;
    color: var(--blue);
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
}

.favorites-list-empty__text {
    margin: 0;
    max-width: 420px;
    font-size: 13px;
    line-height: 1.55;
}

.favorites-list-content {
    display: grid;
    gap: 12px;
}

.favorites-list-content__head {
    display: grid;
    gap: 10px;
}

.favorites-list-meta-form {
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 10px;
}

.favorites-list-meta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.favorites-list-content__meta {
    margin: 0;
    color: #5d6d84;
    font-size: 12px;
    font-weight: 700;
}

.favorites-list-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: stretch;
}

.favorites-list-btn--save,
.favorites-list-item__action--cart {
    background: var(--blue);
    border-color: rgba(23, 57, 107, 0.8);
    color: var(--white) !important;
}

.favorites-list-btn--share {
    background: #edf3ff;
    border-color: rgba(23, 57, 107, 0.22);
    color: var(--blue);
}

.favorites-list-btn--remove,
.favorites-list-item__action--remove,
.favorites-picker-card__btn--remove {
    background: #fff5f5;
    border-color: rgba(234, 75, 69, 0.44);
    color: var(--red) !important;
}

.favorites-list-item__action--view {
    color: var(--blue) !important;
}

.favorites-list-btn--remove:hover,
.favorites-list-item__action--remove:hover,
.favorites-picker-card__btn--remove:hover {
    background: var(--red);
    color: var(--white) !important;
}

.favorites-list-share {
    padding: 12px;
    background: #f8fbff;
    border: 1px dashed var(--favorites-list-color, rgba(23, 57, 107, 0.28));
    border-radius: 12px;
}

.favorites-list-share__label {
    display: block;
    margin-bottom: 8px;
    color: #576884;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.favorites-list-share__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 110px;
    gap: 8px;
}

.favorites-list-items {
    display: grid;
    gap: 12px;
}

.favorites-list-items-empty {
    border: 1px dashed var(--favorites-list-color, rgba(23, 57, 107, 0.24));
    background: #f8fbff;
    padding: 18px 14px;
    border-radius: 12px;
    color: #5f6f86;
    text-align: center;
    display: grid;
    gap: 8px;
}

.favorites-list-items-empty i {
    color: var(--blue);
    font-size: 28px;
}

.favorites-list-items-empty p {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
}

.favorites-list-item {
    background: #fff;
    border: 1px solid rgba(23, 57, 107, 0.12);
    border-left: 4px solid var(--favorites-list-color, var(--blue));
    border-radius: 16px;
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
    align-items: center;
}

.favorites-list-item__image-link,
.favorites-list-item__image {
    width: 100px;
    height: 100px;
    display: block;
}

.favorites-list-item__image {
    object-fit: cover;
}

.favorites-list-item__body {
    display: grid;
    gap: 6px;
}

.favorites-list-item__category {
    color: #b78307;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.favorites-list-item__title {
    margin: 0;
    color: var(--blue);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
}

.favorites-list-item__price small,
.favorites-list-item__price strong,
.favorites-list-item__price span {
    display: block;
}

.favorites-list-item__price small {
    color: #8e98a9;
    font-size: 11px;
    text-decoration: line-through;
}

.favorites-list-item__price strong {
    color: var(--blue);
    font-size: 20px;
    line-height: 1;
}

.favorites-list-item__price span {
    color: #6f7b90;
    font-size: 10px;
    font-weight: 600;
}

.favorites-list-item__actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    align-items: stretch;
}

.favorites-picker {
    width: min(calc(100% - 24px), var(--content-max-width));
    max-width: var(--content-max-width);
    margin: 14px auto 0;
    padding: 14px;
    border-top: 4px solid var(--favorites-list-color, var(--blue));
}

.favorites-picker__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.favorites-picker__title {
    margin: 0;
    color: var(--blue);
    font-size: 22px;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
}

.favorites-picker__close {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(23, 57, 107, 0.24);
    border-radius: 12px !important;
    background: #f2f6fd;
    color: var(--blue);
    cursor: pointer;
}

.favorites-picker__text {
    margin: 8px 0 0;
    color: #5f6f86;
    font-size: 12px;
    line-height: 1.55;
}

.favorites-picker__grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.favorites-picker__empty {
    margin: 10px 0 0;
    color: #5f6f86;
    font-size: 12px;
    font-weight: 700;
}

.favorites-picker-card {
    border: 1px solid rgba(23, 57, 107, 0.12);
    border-radius: 16px;
    background: #fff;
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
}

.favorites-picker-card__media,
.favorites-picker-card__media img {
    width: 84px;
    height: 84px;
    display: block;
}

.favorites-picker-card__media img {
    object-fit: cover;
}

.favorites-picker-card__body {
    display: grid;
    gap: 6px;
    align-content: start;
}

.favorites-picker-card__category {
    color: #b78307;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.favorites-picker-card__title {
    margin: 0;
    color: var(--blue);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
}

.favorites-picker-card__price {
    margin: 0;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
}

.favorites-shared-section {
    width: min(calc(100% - 24px), var(--content-max-width));
    max-width: var(--content-max-width);
    margin: 30px auto 0;
}

.favorites-shared-state {
    min-height: 190px;
    border: 1px dashed rgba(23, 57, 107, 0.24);
    background: #f8fbff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--blue);
    font-size: 16px;
    font-weight: 700;
}

.favorites-shared-state--error {
    color: var(--red);
    justify-content: flex-start;
    padding: 18px;
}

.favorites-shared-state--error strong {
    display: block;
    font-size: 18px;
    line-height: 1.2;
}

.favorites-shared-state--error p {
    margin: 4px 0 0;
    font-size: 13px;
    line-height: 1.5;
}

.favorites-shared-content {
    padding: 16px;
    border-top: 4px solid var(--favorites-list-color, var(--blue));
}

.favorites-shared-content__head {
    display: grid;
    gap: 8px;
}

.favorites-shared-content__title {
    margin: 0;
    color: var(--blue);
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.08;
}

.favorites-shared-content__meta {
    margin: 6px 0 0;
    color: #607189;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 700;
}

.favorites-shared-content__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.favorites-list-items--shared {
    margin-top: 14px;
}

.favorites-list-items--shared .favorites-list-item__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@keyframes favorites-empty-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes favorites-empty-beat {
    0%,
    100% {
        transform: scale(1);
    }
    35% {
        transform: scale(1.08);
    }
    60% {
        transform: scale(0.96);
    }
}

.favorites-empty-state {
    width: min(calc(100% - 24px), var(--content-max-width));
    max-width: var(--content-max-width);
    margin: 0 auto 12px;
    padding: 42px 22px;
    text-align: center;
    background: linear-gradient(180deg, #f6f9ff 0%, var(--white) 100%);
    border: 1px dashed rgba(23, 57, 107, 0.26);
    border-radius: 14px;
}

.favorites-empty-state__icon {
    width: 112px;
    height: 112px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffe07e 0%, #f6b700 100%);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    animation: favorites-empty-float 2.4s ease-in-out infinite;
}

.favorites-empty-state__icon i {
    display: block;
    transform-origin: center;
    animation: favorites-empty-beat 1.3s ease-in-out infinite;
}

.favorites-empty-state__title {
    margin: 0 0 10px;
    color: var(--blue);
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
}

.favorites-empty-state__text {
    margin: 0 auto;
    max-width: 760px;
    color: #5f6e84;
    font-size: 15px;
    line-height: 1.55;
}

.favorites-empty-state__text + .favorites-empty-state__text {
    margin-top: 4px;
}

.favorites-empty-state__cta {
    margin-top: 22px;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, var(--yellow) 0%, #ffcc33 100%);
    border: 1px solid rgba(246, 183, 0, 0.45);
    color: var(--blue) !important;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    box-shadow: 0 10px 20px rgba(246, 183, 0, 0.22);
}

.favorites-empty-state__cta:hover {
    transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
    .favorites-empty-state__icon,
    .favorites-empty-state__icon i {
        animation: none;
    }
}

.favorites-grid {
    width: min(calc(100% - 24px), var(--content-max-width));
    max-width: var(--content-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.favorites-card {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 16px;
    align-items: stretch;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid rgba(23, 57, 107, 0.1);
    box-shadow: 0 12px 24px rgba(23, 57, 107, 0.12);
    padding: 14px;
}

.favorites-card__image-link {
    display: block;
    width: 128px;
    height: 128px;
    align-self: stretch;
    border-radius: 18px;
    overflow: hidden;
    background: #f4f8ff;
}

.favorites-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.favorites-card__body {
    padding: 4px 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 10px 16px;
    align-items: start;
}

.favorites-card__category {
    display: inline-block;
    grid-column: 1;
    margin-bottom: 0;
    color: #b78307;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.favorites-card__title {
    grid-column: 1;
    margin: 0;
    color: var(--blue);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.18;
}

.favorites-card__price small,
.favorites-card__price strong,
.favorites-card__price span {
    display: block;
}

.favorites-card__price small {
    color: #8e98a9;
    font-size: 11px;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.favorites-card__price strong {
    color: var(--blue);
    font-size: 22px;
    line-height: 1;
    margin-bottom: 3px;
}

.favorites-card__price span {
    color: #6e7a8f;
    font-size: 10px;
    font-weight: 600;
}

.favorites-card__price {
    grid-column: 1;
}

.favorites-card__actions {
    grid-column: 2;
    grid-row: 1 / span 3;
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    align-self: center;
    align-content: center;
}

.favorites-card__action {
    width: 100%;
    min-height: 40px;
    border-radius: 12px !important;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 800;
    padding: 8px 12px;
    line-height: 1.15;
    white-space: normal;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.favorites-card__action:hover {
    transform: translateY(-1px);
}

.favorites-card__action--cart {
    background: linear-gradient(120deg, var(--yellow) 0%, #ffcc33 100%);
    color: var(--blue) !important;
    border-color: rgba(246, 183, 0, 0.45);
    box-shadow: 0 6px 12px rgba(246, 183, 0, 0.14);
}

.favorites-card__action--buy {
    background: var(--blue);
    color: var(--white) !important;
    border-color: rgba(23, 57, 107, 0.82);
    box-shadow: 0 6px 12px rgba(23, 57, 107, 0.16);
}

.favorites-card__action--remove {
    grid-column: 1 / -1;
    min-width: 0;
    background: #fff5f5;
    color: var(--red) !important;
    border-color: rgba(234, 75, 69, 0.45);
    box-shadow: 0 6px 12px rgba(234, 75, 69, 0.12);
}

.favorites-card__action--remove i {
    font-size: 12px;
}

.favorites-card__action--remove:hover {
    background: var(--red);
    color: var(--white) !important;
}

/* ===== PAGINA DE CARRINHO ===== */
.cart-page {
    width: 100%;
    padding: 30px 0 78px;
}

.cart-page-heading__title {
    margin: 0;
    color: var(--blue);
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -.02em;
    text-transform: capitalize;
}

.cart-page-heading__text {
    margin: 10px 0 0;
    color: #55657e;
    font-size: 14px;
    line-height: 1.5;
}

.cart-heading-section {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 16px;
    text-align: left;
}

.cart-actions-section {
    margin-top: 18px;
    display: grid;
    gap: 16px;
    justify-items: end;
    --cart-actions-inline-size: calc((190px * 2) + 10px);
}

.cart-heading-section__content {
    min-width: 0;
}

.cart-back-link {
    width: 52px;
    height: 52px;
    border-radius: 50% !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(23, 57, 107, 0.16);
    background: linear-gradient(180deg, var(--white) 0%, #eef4ff 100%);
    color: var(--blue) !important;
    box-shadow: 0 10px 22px rgba(23, 57, 107, 0.14);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.cart-back-link i {
    font-size: 18px;
}

.cart-back-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(23, 57, 107, 0.18);
    background: linear-gradient(180deg, #f7faff 0%, #e8f0ff 100%);
}

.cart-actions-section__buttons {
    width: min(100%, var(--cart-actions-inline-size));
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.cart-btn {
    min-height: 42px;
    min-width: 190px;
    width: auto;
    border-radius: 0 !important;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    
    &:hover {
        transform: translateY(-1px);
    }
    
    &:disabled {
        opacity: .55;
        cursor: not-allowed;
        transform: none !important;
        box-shadow: none;
    }
}

.cart-btn--continue {
    background: var(--blue);
    color: var(--white) !important;
    border-color: rgba(23, 57, 107, 0.85);
    box-shadow: 0 10px 20px rgba(23, 57, 107, 0.24);
}

.cart-btn--clear {
    background: #fff5f5;
    color: var(--red) !important;
    border-color: rgba(234, 75, 69, 0.45);
    box-shadow: 0 8px 16px rgba(234, 75, 69, 0.16);
    
    &:hover {
        background: var(--red);
        color: var(--white) !important;
    }
}

.cart-divider {
    margin-top: 36px;
    margin-bottom: 34px;
}

.cart-page .is-hidden {
    display: none !important;
}

.cart-content {
    width: min(calc(100% - 24px), var(--content-max-width));
    max-width: var(--content-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px !important;
    gap: 24px;
    align-items: start;
}

.cart-items {
    display: grid;
    gap: 16px;
}

.cart-item {
    background: var(--white);
    border: 1px solid rgba(23, 57, 107, 0.1);
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(23, 57, 107, 0.12);
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) minmax(180px, 220px);
    gap: 12px;
    align-items: center;
    padding: 12px;
}

.cart-item__image-link {
    width: 100px;
    height: 100px;
    display: block;
    justify-self: center;
}

.cart-item__image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    display: block;
}

.cart-item__category {
    display: inline-block;
    color: #b78307;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.cart-item__title {
    margin: 4px 0 6px;
    color: var(--blue);
    font-size: 19px;
    line-height: 1.2;
    font-weight: 700;
}

.cart-item__price small,
.cart-item__price strong {
    display: block;
}

.cart-item__price small {
    color: #8e98a9;
    font-size: 11px;
    text-decoration: line-through;
    margin-bottom: 1px;
}

.cart-item__price strong {
    color: var(--blue);
    font-size: 20px;
    line-height: 1;
}

.cart-item__qty-wrap {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item__qty-label {
    font-size: 11px;
    color: #5d6d86;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.cart-item__qty {
    display: grid;
    grid-template-columns: 36px 56px 36px;
    border: 1px solid #c8d4e8;
    border-radius: 0;
    overflow: hidden;
}

.cart-item__qty button {
    border: 0;
    background: #eef3fb;
    color: var(--blue);
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
}

.cart-item__qty button:hover {
    background: #dce8f7;
}

.cart-item__qty input {
    border: 0;
    border-left: 1px solid #d7e1ef;
    border-right: 1px solid #d7e1ef;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
    outline: none;
    padding: 0;
    background: var(--white);
}

.cart-item__qty input::-webkit-outer-spin-button,
.cart-item__qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-item__qty input[type=number] {
    -moz-appearance: textfield;
}

.cart-item__tools {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    min-height: 100px;
}

.cart-item__line-total span {
    display: block;
    color: #6e7a8f;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 3px;
}

.cart-item__line-total strong {
    display: block;
    color: var(--blue);
    font-size: 22px;
    line-height: 1;
}

.cart-item__remove {
    min-height: 42px;
    min-width: 130px;
    border-radius: 0;
    border: 1px solid rgba(234, 75, 69, 0.45);
    background: #fff5f5;
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    
    &:hover {
        background: var(--red);
        color: var(--white);
    }
}

.cart-summary {
    background: linear-gradient(180deg, var(--white) 0%, #f7faff 100%);
    border: 1px solid rgba(23, 57, 107, 0.14);
    border-radius: 14px;
    box-shadow: 0 18px 34px rgba(23, 57, 107, 0.14);
    padding: 20px;
    align-self: start;
    position: sticky !important;
    top: 24px;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
}

.cart-summary__title {
    margin: 0 0 14px;
    color: var(--blue);
    font-size: 26px;
    line-height: 1.08;
    font-weight: 800;
    text-transform: uppercase;
}

.cart-summary__timer {
    margin-bottom: 18px;
    padding: 16px;
    border: 1px solid rgba(23, 57, 107, 0.12);
    border-radius: 14px;
    background: linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
}

.cart-summary__timer--top {
    width: min(100%, var(--cart-actions-inline-size));
    margin-bottom: 0;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    gap: 0;
    border: 1px solid rgba(23, 57, 107, 0.12);
    border-radius: 14px;
    background: linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
    box-shadow: 0 10px 22px rgba(23, 57, 107, 0.10);
}

.cart-summary__timer-copy {
    min-width: 0;
}

.cart-summary__timer--top .cart-summary__timer-copy {
    display: none;
}

.cart-summary__timer--top .cart-summary__timer-note {
    margin-top: 6px;
    max-width: 620px;
}

.cart-summary__timer--top .cart-countdown {
    width: 100%;
    justify-content: center;
    flex-shrink: 0;
}

.cart-summary__timer-label {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 12px;
    line-height: 1.45;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.cart-countdown {
    padding: 0;
    gap: 8px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.cart-countdown .clock-icon {
    width: 54px;
    height: 54px;
    margin-right: 0;
    font-size: 24px;
    flex-shrink: 0;
}

.cart-countdown .clock-icon::after {
    inset: -5px;
}

.cart-countdown .count-box {
    width: 54px;
    height: 54px;
    font-size: 24px;
}

.cart-countdown > span {
    font-size: 24px;
    line-height: 1;
}

.cart-summary__timer-note {
    margin: 12px 0 0;
    color: #5d6d86;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 600;
}

.cart-summary__rows {
    border-top: 1px solid rgba(23, 57, 107, 0.14);
    border-bottom: 1px solid rgba(23, 57, 107, 0.14);
    padding: 12px 0;
}

.cart-summary__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: #4f6079;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 0;
    
    & strong {
        color: var(--blue);
        font-size: 14px;
        font-weight: 800;
    }
}

.cart-summary__row--total {
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px dashed rgba(23, 57, 107, 0.18);
}

.cart-summary__row--total span,
.cart-summary__row--total strong {
    font-size: 17px;
    color: var(--blue);
}

.cart-summary__coupon {
    margin-top: 16px;
}

.cart-summary__coupon label {
    display: block;
    margin-bottom: 8px;
    color: #4f6079;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.cart-summary__coupon-field {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.cart-summary__coupon-field input {
    width: 100%;
    height: 40px;
    border: 1px solid #c8d4e8;
    border-radius: 0;
    padding: 0 10px;
    color: var(--blue);
    font-size: 13px;
    background: #fbfdff;
    outline: none;
}

.cart-summary__coupon-field input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(23, 57, 107, 0.12);
}

.cart-summary__coupon-field button {
    min-height: 40px;
    min-width: 96px;
    border: 1px solid rgba(246, 183, 0, 0.5);
    background: linear-gradient(120deg, var(--yellow) 0%, #ffcc33 100%);
    color: var(--blue);
    border-radius: 0;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

.cart-summary__coupon-feedback {
    min-height: 20px;
    margin: 8px 0 0;
    color: #55657e;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
}

.cart-summary__checkout {
    margin-top: 10px;
    min-height: 48px;
    width: 100%;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    border: 1px solid rgba(23, 57, 107, 0.85);
    color: var(--white) !important;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
    box-shadow: 0 10px 20px rgba(23, 57, 107, 0.22);
    transition: transform .2s ease, filter .2s ease;
}

.cart-summary__checkout:hover {
    transform: translateY(-1px);
}

.cart-summary__checkout.is-disabled {
    opacity: .55;
    pointer-events: none;
    box-shadow: none;
}

.cart-summary--highlighted {
    animation: cart-summary-highlight 1.8s ease;
}

@keyframes cart-summary-highlight {
    0% {
        box-shadow: 0 18px 34px rgba(23, 57, 107, 0.14);
    }
    40% {
        box-shadow: 0 22px 40px rgba(246, 183, 0, 0.34);
    }
    100% {
        box-shadow: 0 18px 34px rgba(23, 57, 107, 0.14);
    }
}

.cart-empty-state {
    width: min(calc(100% - 24px), var(--content-max-width));
    max-width: var(--content-max-width);
    margin: 0 auto 12px;
    padding: 42px 22px;
    text-align: center;
    background: linear-gradient(180deg, #f6f9ff 0%, var(--white) 100%);
    border: 1px dashed rgba(23, 57, 107, 0.26);
    border-radius: 14px;
}

.cart-empty-state__icon {
    width: 112px;
    height: 112px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffe07e 0%, #f6b700 100%);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    animation: cart-empty-float 2.4s ease-in-out infinite;
}

.cart-empty-state__icon i {
    display: block;
    transform-origin: center;
    animation: cart-empty-bump 1.4s ease-in-out infinite;
}

@keyframes cart-empty-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes cart-empty-bump {
    0%, 100% {
        transform: scale(1);
    }
    35% {
        transform: scale(1.08);
    }
    60% {
        transform: scale(0.96);
    }
}

.cart-empty-state__title {
    margin: 0 0 10px;
    color: var(--blue);
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
}

.cart-empty-state__text {
    margin: 0 auto;
    max-width: 760px;
    color: #5f6e84;
    font-size: 15px;
    line-height: 1.55;
}

.cart-empty-state__text + .cart-empty-state__text {
    margin-top: 4px;
}

.cart-empty-state__cta {
    margin-top: 22px;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, var(--yellow) 0%, #ffcc33 100%);
    border: 1px solid rgba(246, 183, 0, 0.45);
    color: var(--blue) !important;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(246, 183, 0, 0.22);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.cart-empty-state__cta:hover {
    transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
    .cart-empty-state__icon,
    .cart-empty-state__icon i {
        animation: none;
    }
}

@media (max-width: 1100px) {
    .cart-content {
        grid-template-columns: 1fr !important;
    }

    .cart-summary {
        position: static !important;
        max-height: none;
        overflow: visible;
    }
}

@media (max-width: 992px) {
    .cart-heading-section {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 12px;
    }

    .cart-back-link {
        width: 44px;
        height: 44px;
    }

    .cart-summary__timer--top {
        justify-self: end;
        align-items: center;
    }

    .cart-summary__timer--top .cart-countdown {
        width: auto;
    }

    .cart-actions-section__buttons {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .cart-actions-section {
        --cart-actions-inline-size: calc((150px * 2) + 8px);
        margin-top: 14px;
    }
}


@media (prefers-reduced-motion: reduce) {
    .benefit-card,
    .benefit-card::before,
    .benefit-card i,
    .divider::before,
    .mini-box,
    .product-card,
    .feature-card,
    .search-box button,
    .header-icon-button,
    .menu-button,
    .hero-arrow,
    .buy-now,
    .btn-cart,
    .btn-buy,
    .clock-icon,
    .clock-icon::after,
    .clock-icon i,
    .count-box,
    .product-image,
    .product-body,
    .product-actions,
    .pd-main-image {
        animation: none;
        transition: none;
    }
}

.heart {
    background: #F6B700;
    position: relative;
    height: 10px;
    width: 10px;
    margin: 0 8px;
    margin-left: 10px !important;
    margin-right: 10px !important;
    
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.heart::before,
.heart::after {
    content: '';
    background: #F6B700;
    border-radius: 50%;
    position: absolute;
    height: 10px;
    width: 10px;
}

.heart::before {
    top: -5px;
    left: 0;
}

.heart::after {
    top: 0;
    right: -5px;
}

[vw-access-button] {
    right: 0px !important;
    bottom: 20px !important;
}

.copyright {
    background-color: var(--blue);
    padding: 20px 0;
}

.copyright-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright-box .left-side,
.copyright-box .right-side {
    display: flex;
    align-items: center;
}

.copyright-box .right-side a {
    color: white;
    text-decoration: none;
}


.footer {
    background: var(--blue);
    color: #cbd5e1;
    padding: 60px 20px;
}

.footer-container {
    width: min(calc(100% - 24px), var(--content-max-width));
    max-width: var(--content-max-width);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}


.footer-col h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 13px;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #f88538;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 20px;
}

.footer-social a {
    font-size: 20px;
    margin-right: 12px;
    color: #cbd5e1;
    transition: color 0.3s, transform 0.3s;
}

.footer-social a:hover {
    color: #f88538;
    transform: translateY(-3px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    background: #020617;
    color: #94a3b8;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

a.whats {
    position: fixed;
    width: 60px;
    height: 60px;
    right: 20px;
    bottom: 20px;
    background-color: #25d366;
    color: var(--white) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
    z-index: 99999999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.whats:hover,
a.whats:focus-visible {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.3);
}

a.whats i {
    margin-top: 0;
}

.whats-message-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #c40018;
    color: var(--white);
    border: 2px solid var(--white);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(196, 0, 24, 0.5);
    animation: whats-badge-bounce 1.6s ease-in-out infinite;
}

.whats-message-badge::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(196, 0, 24, 0.75);
    animation: whats-badge-ping 1.6s ease-out infinite;
}

body.entry-popup-open {
    overflow: hidden;
}

.entry-popup {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(1, 7, 18, 0.88);
    z-index: 2147483000;
    padding: 20px;
}

.entry-popup.is-hidden {
    display: none;
}

.entry-popup__content {
    width: 100%;
}

.entry-popup__shell {
    position: relative;
    width: min(92vw, 760px);
}

.entry-popup__link {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.42);
}

.entry-popup__image {
    width: 100%;
    height: auto;
    display: block;
}

.entry-popup__close {
    position: absolute;
    top: -54px;
    right: 0;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: var(--blue);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    transition: background .2s ease, transform .2s ease, color .2s ease;
}

.entry-popup__close:hover,
.entry-popup__close:focus-visible {
    background: #21477f;
    color: #ffcc33;
    transform: scale(1.06);
}

.highlight-page {
    width: 100%;
    padding: 30px 0 78px;
}

.highlight-hero {
    width: min(calc(100% - 24px), var(--content-max-width));
    max-width: var(--content-max-width);
    margin: 0 auto 18px;
}

.highlight-hero__copy {
    background: linear-gradient(100deg, var(--blue) 0%, #1f4b86 55%, #285da3 100%);
    border-radius: 14px;
    padding: 26px 28px;
    color: var(--white);
    box-shadow: 0 18px 34px rgba(15, 37, 73, 0.28);
}

.highlight-hero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(255, 204, 51, 0.2);
    border: 1px solid rgba(255, 204, 51, 0.5);
    color: #ffcc33;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.highlight-hero__title {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -.02em;
    text-transform: uppercase;
    max-width: 980px;
}

.highlight-hero__text {
    margin: 10px 0 0;
    max-width: 780px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 1.55;
}

.highlight-product {
    width: min(calc(100% - 24px), var(--content-max-width));
    max-width: var(--content-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
    gap: 26px;
    align-items: stretch;
}

.highlight-product__media {
    display: grid;
    grid-template-columns: 100px 480px;
    gap: 12px;
    align-items: start;
}

.highlight-product__thumbs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-product__thumb {
    width: 100px;
    height: 100px;
    border: 2px solid rgba(23, 57, 107, 0.45);
    background: var(--white);
    overflow: hidden;
}

.highlight-product__thumb.is-active {
    border-color: var(--blue);
}

.highlight-product__thumb-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-product__image-wrap {
    width: 480px;
    height: 480px;
    justify-self: start;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(23, 57, 107, 0.12);
    box-shadow: 0 18px 34px rgba(23, 57, 107, 0.16);
    background: var(--white);
}

.highlight-product__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-product__info {
    background: linear-gradient(180deg, var(--white) 0%, #f7faff 100%);
    border-radius: 14px;
    border: 1px solid rgba(23, 57, 107, 0.14);
    box-shadow: 0 16px 30px rgba(23, 57, 107, 0.12);
    padding: 22px;
}

.highlight-product__kicker {
    margin: 0 0 6px;
    color: #b78307;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.highlight-product__title {
    margin: 0;
    color: var(--blue);
    font-size: 34px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -.02em;
}

.highlight-product__subtitle {
    margin: 12px 0 0;
    color: #51627d;
    font-size: 15px;
    line-height: 1.55;
}

.highlight-product__price {
    margin-top: 16px;
}

.highlight-product__price small,
.highlight-product__price strong,
.highlight-product__price span {
    display: block;
}

.highlight-product__price small {
    color: #8b97ab;
    font-size: 13px;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.highlight-product__price strong {
    color: var(--blue);
    font-size: 43px;
    line-height: 1;
    font-weight: 800;
}

.highlight-product__price span {
    margin-top: 4px;
    color: #586987;
    font-size: 13px;
    font-weight: 700;
}

.highlight-product__benefits {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.highlight-product__benefits li {
    position: relative;
    padding-left: 20px;
    color: #3f4f68;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
}

.highlight-product__benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(120deg, var(--yellow) 0%, #ffcc33 100%);
    border: 1px solid rgba(246, 183, 0, 0.7);
}

.highlight-product__actions {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.highlight-product__btn {
    min-height: 48px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.highlight-product__btn:hover {
    transform: translateY(-1px);
}

.highlight-product__btn--buy {
    background: var(--blue);
    color: var(--white) !important;
    border-color: rgba(23, 57, 107, 0.8);
    box-shadow: 0 10px 20px rgba(23, 57, 107, 0.22);
}

.highlight-product__btn--cart {
    background: linear-gradient(120deg, var(--yellow) 0%, #ffcc33 100%);
    color: var(--blue) !important;
    border-color: rgba(246, 183, 0, 0.45);
    box-shadow: 0 10px 20px rgba(246, 183, 0, 0.2);
}

.highlight-product__urgency {
    margin: 14px 0 0;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px dashed rgba(23, 57, 107, 0.2);
    background: rgba(23, 57, 107, 0.04);
    color: #33445f;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 700;
}

.product-details-page {
    width: 100%;
    padding: 34px 0 70px;
    background: #ededed;
}

.product-details-main,
.product-details-content {
    width: min(calc(100% - 24px), 1220px);
    margin: 0 auto;
}

.product-details-main {
    display: grid;
    grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.pd-gallery {
    position: relative;
    display: grid;
    grid-template-columns: 100px 480px;
    column-gap: 18px;
    align-items: start;
    width: max-content;
}

.pd-thumbs-viewport {
    width: 100px;
    height: calc((100px * 4) + (12px * 3));
    overflow: hidden;
}

.pd-thumbs {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform: translate3d(0, 0, 0);
    transition: transform .34s ease;
    will-change: transform;
}

.pd-thumb {
    flex: 0 0 100px;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(23, 57, 107, 0.18);
    border-radius: 0 !important;
    background: var(--white);
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pd-thumb.is-active {
    border-color: var(--blue);
}

.pd-thumb__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 0;
}

.pd-main-image-wrap {
    width: 480px;
    height: 480px;
    border: 1px solid rgba(23, 57, 107, 0.18);
    border-radius: 0;
    background: var(--white);
    overflow: hidden;
    cursor: zoom-in;
}

.pd-main-image {
    --pd-main-zoom-x: 50%;
    --pd-main-zoom-y: 50%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 0;
    transform: scale(1);
    transform-origin: var(--pd-main-zoom-x) var(--pd-main-zoom-y);
    transition: transform var(--pd-main-image-zoom-duration) ease-out;
    will-change: transform;
}

.pd-main-image-wrap.is-zooming .pd-main-image {
    transform: scale(var(--pd-main-image-zoom-scale));
}

.pd-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid rgba(23, 57, 107, 0.42);
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.9);
    color: var(--blue);
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 12px rgba(23, 57, 107, 0.16);
    z-index: 2;
}

.pd-gallery-nav i {
    font-size: 24px;
    line-height: 1;
    color: var(--blue);
    font-weight: 700;
    transform: translateY(-1px);
    pointer-events: none;
}

.pd-gallery-nav--prev {
    left: calc(100px + 18px + 8px);
}

.pd-gallery-nav--next {
    left: calc(100px + 18px + 480px - 52px);
    right: auto;
}

.pd-summary {
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pd-summary__top {
    display: grid;
    gap: 6px;
}

.pd-summary__bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    padding-bottom: 0;
}

.pd-summary__middle {
    display: grid;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
}

.pd-option-title {
    margin: 0;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
}

.pd-color-selector {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 12px;
}

.pd-color-options {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pd-color-option {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50% !important;
    background: transparent;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .2s ease;
}

.pd-color-option.is-active {
    transform: scale(1.08);
}

.pd-color-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.22);
    flex-shrink: 0;
    transition: box-shadow .2s ease, transform .2s ease;
}

.pd-color-option.is-active .pd-color-swatch {
    box-shadow: 0 0 0 3px rgba(23, 57, 107, 0.22);
}

.pd-color-option:hover .pd-color-swatch {
    transform: translateY(-1px);
}

.pd-color-option:focus-visible {
    outline: 2px solid rgba(23, 57, 107, 0.35);
    outline-offset: 2px;
}

.pd-color-name {
    display: none;
}

.pd-color-selected {
    margin: 0;
    color: #4f607c;
    font-size: 11px;
}

.pd-color-selected strong {
    color: var(--blue);
}

.pd-shipping {
    display: grid;
    gap: 8px;
}

.pd-shipping--bottom {
    margin-top: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.pd-option-title--shipping {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pd-option-title--shipping i {
    color: var(--yellow);
    font-size: 13px;
}

.pd-shipping__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.pd-shipping__form input {
    border: 1px solid rgba(23, 57, 107, 0.28);
    background: var(--white);
    color: var(--blue);
    height: 36px;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 600;
    outline: none;
    border-radius: 0;
    box-shadow: inset 0 1px 2px rgba(23, 57, 107, 0.06);
}

.pd-shipping__form input::placeholder {
    color: #8a96ab;
}

.pd-shipping__form input:focus {
    border-color: var(--blue);
}

.pd-shipping__form button {
    border: 1px solid rgba(23, 57, 107, 0.8);
    background: linear-gradient(120deg, var(--blue) 0%, #21477f 100%);
    color: var(--white);
    min-width: 104px;
    height: 36px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 8px 14px rgba(23, 57, 107, 0.2);
}

.pd-shipping__form button i {
    font-size: 12px;
}

.pd-shipping__result {
    margin: 0;
    color: #3f4f68;
    font-size: 12px;
    min-height: 18px;
    line-height: 1.35;
}

.pd-shipping__result.is-error {
    color: #c03d37;
}

.pd-pricing {
    display: grid;
    gap: 3px;
    align-content: end;
}

.pd-summary__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pd-badge-discount {
    background: var(--red);
    color: var(--white);
    padding: 4px 8px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-transform: lowercase;
}

.pd-sku {
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.pd-countdown {
    margin: 0 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
}

.pd-countdown__label {
    font-weight: 700;
}

.pd-countdown__icon {
    width: 16px;
    height: 16px;
    border: 2px solid var(--red);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.pd-countdown__icon::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 2px;
    height: 5px;
    background: var(--red);
    border-radius: 2px;
}

.pd-countdown__icon::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 7px;
    width: 4px;
    height: 2px;
    background: var(--red);
    transform: rotate(35deg);
    transform-origin: left center;
    border-radius: 2px;
}

.pd-title {
    margin: 8px 0 8px;
    color: var(--blue);
    font-size: 24px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.pd-rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.pd-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 0;
}

.pd-star {
    color: var(--blue);
    font-size: 24px;
    line-height: 1;
}

.pd-rating-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.pd-rating-action {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(23, 57, 107, 0.16);
    border-radius: 50% !important;
    background: linear-gradient(180deg, #f8fbff 0%, #edf4ff 100%);
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    box-shadow: 0 6px 14px rgba(23, 57, 107, 0.08);
}

.pd-rating-action:hover,
.pd-rating-action:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(23, 57, 107, 0.14);
    background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
}

.pd-rating-action i {
    font-size: 14px;
    line-height: 1;
}

.pd-rating-action--favorite.is-active {
    color: var(--red);
    border-color: rgba(231, 26, 19, 0.24);
    background: linear-gradient(180deg, #fff4f3 0%, #ffe8e5 100%);
}

.pd-old-price {
    margin: 0;
    color: #8a94a5;
    font-size: 14px;
    font-weight: 600;
    text-decoration: line-through;
    line-height: 1;
}

.pd-current-price {
    margin: 2px 0 0;
    color: var(--blue);
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.pd-buy-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    column-gap: 18px;
    row-gap: 10px;
    margin-top: 10px;
}

.pd-saving {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #6da163;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    padding: 4px 9px;
    justify-self: start;
    
    & strong {
        color: #ffcc33;
        font-weight: 800;
    }

}

.pd-quantity {
    display: flex;
    align-items: center;
    justify-self: end;
    align-self: end;
    gap: 10px;
}

.pd-quantity__label {
    font-size: 11px;
    color: #5d6d86;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1;
}

.pd-quantity__control {
    display: grid;
    grid-template-columns: 36px 56px 36px;
    border: 1px solid #c8d4e8;
    border-radius: 0;
    overflow: hidden;
    width: auto;
    height: auto;
    background: var(--white);
    
    & button {
        border: 0;
        background: transparent;
        color: var(--blue);
        font-size: 18px;
        font-weight: 800;
        cursor: pointer;
        transition: color .2s ease, opacity .2s ease;
        
        &:hover {
            color: var(--blue-2);
        }
        
        &:disabled {
            opacity: 0.45;
            cursor: not-allowed;
        }
    }
    
    & input {
        border: 0;
        text-align: center;
        font-size: 14px;
        font-weight: 700;
        color: var(--blue);
        outline: none;
        padding: 0;
        background: var(--white);
        width: 56px;
        height: 36px;
    }
}

.pd-quantity__control input::-webkit-outer-spin-button,
.pd-quantity__control input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pd-quantity__control input[type=number] {
    -moz-appearance: textfield;
}

.pd-actions {
    margin-top: 0;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.pd-btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid transparent;
    transition: filter .2s ease;
    
    &:hover {
        filter: brightness(0.95);
    }
}

.pd-btn--cart {
    background: var(--yellow);
    border-color: rgba(246, 183, 0, 0.7);
    color: var(--blue) !important;
}

.pd-btn--buy {
    background: var(--blue);
    border-color: rgba(23, 57, 107, 0.85);
    color: var(--white) !important;
}

.product-details-content {
    margin-top: 54px;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 44px;
    align-items: start;
}

.pd-tabs {
    display: grid;
    gap: 12px;
    align-content: start;
}

.pd-tab {
    min-height: 78px;
    border: 2px solid var(--blue);
    background: transparent;
    color: var(--blue);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.pd-tab.is-active {
    background: var(--blue);
    color: var(--white);
}

.pd-tab-panels {
    border: 0;
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 12px 24px rgba(23, 57, 107, 0.12);
    padding: 14px;
}

.pd-tab-panel {
    display: none;
}

.pd-tab-panel.is-active {
    display: block;
}

.pd-specs-wrap {
    width: 100%;
    overflow-x: auto;
}

.pd-specs-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
}

.pd-specs-table th,
.pd-specs-table td {
    border: 1px solid rgba(23, 57, 107, 0.2);
    padding: 11px 12px;
    font-size: 14px;
    line-height: 1.35;
    color: #2f4770;
    text-align: left;
    vertical-align: top;
}

.pd-specs-table th {
    width: 36%;
    background: rgba(23, 57, 107, 0.08);
    font-weight: 700;
}

.pd-specs-table td {
    font-weight: 500;
}

.pd-important-text {
    display: grid;
    gap: 10px;
}

.pd-important-text p {
    margin: 0;
    color: #2f4770;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 500;
}

/* ===== PAGINA PERFIL DO CLIENTE ===== */
.profile-client-page {
    width: 100%;
    padding: 34px 0 78px;
}

.profile-client-shell {
    width: min(calc(100% - 24px), var(--content-max-width));
    max-width: var(--content-max-width);
    margin: 0 auto;
}

.profile-client-title {
    margin: 0;
    color: var(--blue);
}

.profile-client-steps {
    --profile-step-line-start: 42px;
    --profile-step-line-width: calc(100% - 84px);
    --profile-step-progress: 0px;
    position: relative;
    margin: 22px 0 28px;
    padding: 0 10px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.profile-client-steps::before {
    content: "";
    position: absolute;
    left: var(--profile-step-line-start);
    width: var(--profile-step-line-width);
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    border-radius: 999px;
    background: #cbccd1;
    z-index: 0;
}

.profile-client-steps::after {
    content: "";
    position: absolute;
    left: var(--profile-step-line-start);
    top: 50%;
    transform: translateY(-50%);
    width: var(--profile-step-progress);
    max-width: var(--profile-step-line-width);
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffd95c 0%, var(--yellow) 100%);
    z-index: 0;
    transition: width .28s ease;
}

.profile-client-step {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    justify-content: center;
}

.profile-client-step__dot {
    width: 62px;
    height: 62px;
    border-radius: 50% !important;
    border: 2px solid #cbccd1;
    background: #f2f3f5;
    color: #8f8f94;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
    transition:
        background .24s ease,
        border-color .24s ease,
        color .24s ease,
        transform .24s ease,
        box-shadow .24s ease;
}

.profile-client-step__dot i {
    color: inherit;
    transition: color .24s ease;
}

.profile-client-step__dot--button {
    border: 2px solid #cbccd1;
    background: #f2f3f5;
    padding: 0;
    font: inherit;
    cursor: pointer;
}

.profile-client-step__dot--button:not(:disabled):hover,
.profile-client-step__dot--button:not(:disabled):focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.10);
}

.profile-client-step__dot--button:disabled {
    cursor: not-allowed;
    opacity: .72;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.profile-client-step__dot--button:focus-visible {
    outline: 2px solid rgba(23, 57, 107, 0.24);
    outline-offset: 4px;
}

/* passo atual */
.profile-client-step.is-active .profile-client-step__dot {
    background: linear-gradient(180deg, #ffe07e 0%, var(--yellow) 100%);
    border-color: rgba(246, 183, 0, 0.95);
    color: var(--blue);
    box-shadow: 0 14px 26px rgba(246, 183, 0, 0.24);
}

.profile-client-step.is-completed .profile-client-step__dot {
    background: linear-gradient(180deg, #ffe07e 0%, var(--yellow) 100%);
    border-color: rgba(246, 183, 0, 0.95);
    color: var(--blue);
    box-shadow: 0 14px 26px rgba(246, 183, 0, 0.20);
}

.profile-client-step:not(.is-active):not(.is-completed) .profile-client-step__dot {
    background: #f2f3f5;
    border-color: #cbccd1;
    color: #8f8f94;
}

/* opcional: leve destaque ao clicar */
.profile-client-step.is-active .profile-client-step__dot,
.profile-client-step.is-completed .profile-client-step__dot {
    transform: translateY(-1px);
}

.profile-client-step__dot--button {
    border: 0;
    padding: 0;
    font: inherit;
    cursor: pointer;
}

.profile-client-step__dot--button:focus-visible {
    outline: 2px solid rgba(23, 57, 107, 0.45);
    outline-offset: 3px;
}

.profile-client-panel[hidden] {
    display: none !important;
}

.profile-client-address-view[hidden] {
    display: none !important;
}

.profile-client-address-view__title {
    margin: 0 0 16px;
    color: var(--blue);
    font-size: 24px;
    line-height: 1.08;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -.01em;
}

.profile-client-address-table-wrap {
    overflow-x: auto;
    border: 1px solid #d7e1ef;
    border-radius: 12px;
    background: #fbfdff;
}

.profile-client-address-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
    
    & th, td{
        border-bottom: 1px solid #e4ebf5;
        padding: 12px 14px;
        text-align: left;
        font-size: 13px;
        line-height: 1.35;
    }
    
    & th {
        width: 220px;
        color: var(--blue);
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .04em;
        background: #f3f7ff;
    }
    
    & td {
        color: #3f4f68;
        font-weight: 600;
    }
}

.profile-client-address-table tbody tr:last-child th,
.profile-client-address-table tbody tr:last-child td {
    border-bottom: 0;
}

.profile-client-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 18px 34px rgba(18, 35, 65, 0.16);
    padding: 28px 28px 24px;
}

.profile-client-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.profile-client-card__title {
    margin: 0;
    color: var(--blue);
    font-size: 32px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.profile-client-avatar {
    width: 96px;
    height: 96px;
    border: 3px solid var(--blue);
    border-radius: 50%;
    background: #f9fafc;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    overflow: visible;
}

.profile-client-avatar > i,
.profile-client-avatar__icon {
    font-size: 54px;
    line-height: 1;
    position: relative;
    z-index: 1;
    transition: opacity .2s ease, visibility .2s ease;
}

.profile-client-avatar__preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    display: none;
    z-index: 1;
    pointer-events: none;
    transform: translateZ(0);
}

.profile-client-avatar.has-image .profile-client-avatar__preview {
    display: block;
}

.profile-client-avatar.has-image .profile-client-avatar__icon {
    opacity: 0;
    visibility: hidden;
}

.profile-client-avatar__badge {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    border: 2px solid var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -10px;
    bottom: -8px;
    padding: 0;
    font-family: inherit;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    z-index: 2;
    transition: transform .2s ease, filter .2s ease;
    
    & i {
        font-size: 14px;
        line-height: 1;
    }
}

.profile-client-avatar__badge:hover,
.profile-client-avatar__badge:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.profile-client-card[data-profile-panel="cadastro"] .profile-client-card__head {
    align-items: center;
}

.profile-client-card[data-profile-panel="cadastro"] .profile-client-avatar {
    width: 132px;
    height: 132px;
    margin-right: 18px;
}

.profile-client-card[data-profile-panel="cadastro"] .profile-client-avatar__icon {
    font-size: 72px;
}

.profile-client-card[data-profile-panel="cadastro"] .profile-client-avatar__badge {
    width: 42px;
    height: 42px;
    right: -12px;
    bottom: -10px;
    border-radius: 50% !important;
    box-shadow: 0 8px 16px rgba(23, 57, 107, 0.28);
}

.profile-client-card[data-profile-panel="cadastro"] .profile-client-avatar__badge i {
    font-size: 16px;
}

.profile-client-form {
    display: grid;
    gap: 14px;
}

.profile-client-form__row {
    display: grid;
    gap: 12px;
}

.profile-client-form__row--name {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
}

.profile-client-form__row--contact,
.profile-client-form__row--address,
.profile-client-form__row--district {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2.1fr);
}

.profile-client-form__row--city {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-client-form__section-title {
    margin: 2px 0 0;
    color: var(--blue);
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 14px;
}

.profile-client-form__section-title::after {
    content: "";
    flex: 1;
    height: 2px;
    border-radius: 999px;
    background: #d0d1d4;
}

.profile-client-field {
    min-width: 0;
    display: grid;
    gap: 4px;
    
    & input {
        width: 100%;
        height: 40px;
        border: 1px solid #c8d4e8;
        border-radius: 12px;
        background: #fbfdff;
        color: var(--text);
        padding: 0 16px;
        font-family: 'Montserrat', sans-serif;
        font-size: 12px;
        font-weight: 500;
        outline: none;
        box-sizing: border-box;
        transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
        
        &:hover {
            border-color: #9ab0cf;
        }
    }
}

.profile-client-field__label {
    display: block;
    margin-bottom: 4px;
    color: var(--blue);
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.profile-client-field__label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 4px;
}

.profile-client-field__label-row .profile-client-field__label {
    margin-bottom: 0;
}

.profile-client-field__label-action {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border: 0;
    border-radius: 50% !important;
    background: #eef3fb;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.profile-client-field__label-action:hover,
.profile-client-field__label-action:focus-visible {
    transform: translateY(-1px);
    background: #dde7f7;
}

.profile-client-field__label-action i {
    font-size: 13px;
    line-height: 1;
}

.profile-client-password-field {
    position: relative;
}

.profile-client-password-field input {
    padding-right: 46px !important;
}

.profile-client-password-field__toggle {
    position: absolute;
    right: 7px;
    top: 50%;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    border: 0;
    border-radius: 50% !important;
    background: transparent;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.profile-client-password-field__toggle:hover,
.profile-client-password-field__toggle:focus-visible {
    transform: translateY(-1px);
    background: rgba(23, 57, 107, 0.08);
}

.profile-client-password-field__toggle i {
    font-size: 14px;
    line-height: 1;
    pointer-events: none;
}

.profile-client-field__hint {
    margin-top: 2px;
    color: #4f6079;
    font-size: 11px;
    line-height: 1.35;
    font-weight: 600;
}

.profile-client-field__hint.is-error {
    color: var(--red);
}

.profile-client-field__hint.is-success {
    color: #20804f;
}

.profile-client-field input::placeholder {
    color: #9aa6b7;
}

.profile-client-field input:focus {
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(23, 57, 107, 0.14);
}

.profile-client-field input[aria-invalid="true"] {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(234, 75, 69, 0.10);
}

.profile-client-form__actions {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.profile-client-form__submit {
    min-height: 44px;
    min-width: 240px;
    border: 1px solid rgba(246, 183, 0, 0.5);
    border-radius: 0;
    background: linear-gradient(120deg, var(--yellow) 0%, #ffcc33 100%);
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    box-shadow: 0 10px 20px rgba(246, 183, 0, 0.22);
    
    &:hover {
        transform: translateY(-1px);
    }
    
    &:disabled {
        opacity: .58;
        cursor: not-allowed;
        box-shadow: none;
        transform: none;
    }
}

.profile-client-form__feedback {
    min-height: 20px;
    margin: 2px 0 0;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #5f6e84;
}

.profile-client-form__feedback.is-error {
    color: var(--red);
}

.profile-client-form__feedback.is-success {
    color: #1f7a3d;
}

/* ===== PAGINA FAQ ===== */
.faq-page {
    width: 100%;
    padding: 34px 0 78px;
}

.faq-shell {
    width: min(calc(100% - 24px), var(--content-max-width));
    max-width: var(--content-max-width);
    margin: 26px auto 0;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    background: linear-gradient(180deg, var(--white) 0%, #f8fbff 100%);
    border: 1px solid rgba(23, 57, 107, 0.12);
    box-shadow: 0 12px 24px rgba(23, 57, 107, 0.1);
}

.faq-item__heading {
    margin: 0;
}

.faq-item__toggle {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--blue);
    font-family: 'Montserrat', sans-serif;
    text-align: left;
    cursor: pointer;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
}

.faq-item__question {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: .01em;
}

.faq-item__number,
.faq-item__icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    border: 2px solid rgba(246, 183, 0, .8);
    background: #fffaf0;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 8px 16px rgba(246, 183, 0, .12);
    transition: transform .25s ease, background .2s ease, box-shadow .2s ease;
}

.faq-item__number {
    font-weight: 800;
    line-height: 1;
}

.faq-item__icon i {
    transition: transform .25s ease;
}

.faq-item__toggle:hover .faq-item__icon,
.faq-item__toggle:focus-visible .faq-item__icon {
    box-shadow: 0 12px 20px rgba(246, 183, 0, .18);
}

.faq-item.is-open .faq-item__icon {
    background: linear-gradient(120deg, var(--yellow) 0%, #ffcc33 100%);
}

.faq-item.is-open .faq-item__icon i {
    transform: rotate(180deg);
}

.faq-item__content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .24s ease;
}

.faq-item.is-open .faq-item__content {
    grid-template-rows: 1fr;
}

.faq-item__content-inner {
    overflow: hidden;
}

.faq-item__answer {
    border-top: 1px solid rgba(23, 57, 107, 0.1);
    padding: 14px 18px 16px 62px;
    color: #4f6079;
    font-size: 14px;
    line-height: 1.62;
}

.faq-item__answer p {
    margin: 0;
}

.faq-item__answer p + p {
    margin-top: 9px;
}

.faq-item__answer ul {
    margin: 10px 0 0 18px;
    display: grid;
    gap: 7px;
}

.faq-item__answer li {
    margin: 0;
}

.faq-item__answer a {
    color: var(--blue) !important;
    text-decoration: underline !important;
    text-underline-offset: 2px;
}

.faq-item__answer a:hover,
.faq-item__answer a:focus-visible {
    color: #102a53 !important;
}

.terms-section{
    max-width:900px;
    margin:60px auto;
    line-height:1.7;
    color:#333;
    
    & h1{
        font-size:32px;
        font-weight:800;
        margin-bottom:20px;
        color:var(--blue);
    }
    
    & h2{
        font-size:22px;
        margin-top:40px;
        margin-bottom:12px;
        color:var(--blue);
    }
    
    p{
        margin-bottom:14px;
        font-size:15px;
    }

}

.terms-list{
    margin:16px 0 20px 20px;
    padding-left:10px;
    
    & li{
        margin-bottom:10px;
        font-size:15px;
    }
}


/* ===== PAGINA RASTREAMENTO ===== */
.tracking-page {
    width: 100%;
    padding: 34px 0 78px;
}

.tracking-hero {
    width: min(calc(100% - 24px), var(--content-max-width));
    max-width: var(--content-max-width);
    margin: 0 auto 18px;
}

.tracking-hero__copy {
    background: linear-gradient(100deg, var(--blue) 0%, #1f4b86 55%, #285da3 100%);
    border-radius: 14px;
    padding: 26px 28px;
    color: var(--white);
    box-shadow: 0 18px 34px rgba(15, 37, 73, 0.28);
}

.tracking-hero__kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(255, 204, 51, 0.2);
    border: 1px solid rgba(255, 204, 51, 0.5);
    color: #ffcc33;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.tracking-hero__title {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -.02em;
    text-transform: uppercase;
    max-width: 980px;
}

.tracking-hero__text {
    margin: 10px 0 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 1.55;
}

.tracking-form-section {
    width: min(calc(100% - 24px), var(--content-max-width));
    max-width: var(--content-max-width);
    margin: 28px auto 0;
    background: linear-gradient(180deg, var(--white) 0%, #f7faff 100%);
    border-radius: 14px;
    border: 1px solid rgba(23, 57, 107, 0.14);
    box-shadow: 0 16px 30px rgba(23, 57, 107, 0.12);
    padding: 24px;
}

.tracking-form__title {
    margin: 0 0 16px;
    color: var(--blue);
    font-size: 30px;
    line-height: 1.08;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -.01em;
}

.tracking-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
}

.tracking-form__group {
    display: flex;
    flex-direction: column;
}

.tracking-form__group--full {
    grid-column: 1 / -1;
}

.tracking-form__label {
    display: block;
    margin-bottom: 7px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.tracking-form__input,
.tracking-form__textarea {
    width: 100%;
    border: 1px solid #c8d4e8;
    border-radius: 12px;
    background: #fbfdff;
    color: #23334f;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    box-sizing: border-box;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    font-family: 'Montserrat', sans-serif;
}

.tracking-form__input {
    height: 52px;
    padding: 0 16px;
}

.tracking-form__textarea {
    min-height: 130px;
    padding: 12px 16px;
    resize: vertical;
}

.tracking-form__input:hover,
.tracking-form__textarea:hover {
    border-color: #9ab0cf;
}

.tracking-form__input:focus,
.tracking-form__textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(23, 57, 107, 0.14);
    background: var(--white);
}

.tracking-form__input::placeholder,
.tracking-form__textarea::placeholder {
    color: #9aa6b7;
}

.tracking-form__actions {
    display: grid;
    gap: 10px;
}

.tracking-form__submit {
    min-height: 52px;
    border: 1px solid rgba(246, 183, 0, 0.5);
    border-radius: 0;
    background: linear-gradient(120deg, #f6b700 0%, #ffcc33 100%);
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease, opacity .2s ease;
    box-shadow: 0 10px 20px rgba(246, 183, 0, 0.22);
}

.tracking-form__submit:hover {
    transform: translateY(-1px);
}

.tracking-form__submit:disabled {
    opacity: .58;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.tracking-form__feedback {
    min-height: 20px;
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 600;
    color: #5f6e84;
}

.tracking-form__feedback.is-success {
    color: #1f7a3d;
}

.tracking-form__feedback.is-error {
    color: var(--red);
}

/* ===== PAGINA CATALOGO DE PRODUTOS ===== */
.products-page {
    width: 100%;
    padding: 30px 0 78px;
}

.products-catalog {
    margin-top: 26px;
    display: grid;
    grid-template-columns: minmax(250px, 290px) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.products-filters {
    position: sticky;
    top: 18px;
    background: linear-gradient(180deg, var(--white) 0%, #f7faff 100%);
    border: 1px solid rgba(23, 57, 107, 0.14);
    border-radius: 14px;
    box-shadow: 0 16px 30px rgba(23, 57, 107, 0.12);
    padding: 18px;
}

.products-filters__title {
    margin: 0 0 14px;
    color: var(--blue);
    font-size: 24px;
    line-height: 1.08;
    font-weight: 800;
    text-transform: uppercase;
}

.products-filters__form {
    display: grid;
    gap: 16px;
}

.products-filters__group {
    margin: 0;
    padding: 0;
    border: 0;
    display: grid;
    gap: 10px;
}

.products-filters__group legend {
    margin-bottom: 2px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.products-filters__checks {
    display: grid;
    gap: 8px;
}

.products-filters__check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3e4f6a;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    
    & input {
        accent-color: var(--blue);
    }
}

.products-filters__price-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.products-filters__price-field {
    display: grid;
    gap: 5px;
    
    & span {
        color: #55657e;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .05em;
    }
    
    & input {
        width: 100%;
        height: 42px;
        border: 1px solid #c8d4e8;
        border-radius: 10px;
        padding: 0 10px;
        background: #fbfdff;
        color: #23334f;
        font-size: 13px;
        font-weight: 600;
        outline: none;
        box-sizing: border-box;
        font-family: 'Montserrat', sans-serif;
    }
}

.products-filters__price-field input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(23, 57, 107, 0.12);
}

.products-filters__actions {
    display: grid;
    gap: 8px;
}

.products-filters__btn {
    min-height: 40px;
    border-radius: 0;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.products-filters__btn--apply {
    background: linear-gradient(120deg, var(--yellow) 0%, #ffcc33 100%);
    color: var(--blue);
    border-color: rgba(246, 183, 0, 0.45);
}

.products-filters__btn--clear {
    background: var(--white);
    color: var(--blue) !important;
    border-color: rgba(23, 57, 107, 0.3);
    text-align: center;
    align-items: center;
}

.products-results {
    min-width: 0;
}

.products-results__head {
    margin-bottom: 12px;
}

.products-results__count {
    margin: 8px 0 0;
    color: #8a96a8;
    font-size: 18px;
    font-weight: 500;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.catalog-product-card {
    background: var(--white);
    border: 1px solid rgba(23, 57, 107, 0.1);
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(23, 57, 107, 0.12);
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.catalog-product-card.is-hidden {
    display: none;
}

.catalog-product-card__image-link {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f4f6fb;
}

.catalog-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 8px;
    background: #ffffff;
}

.catalog-product-card__body {
    padding: 8px 12px;
}

.catalog-product-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.catalog-product-card__department {
    display: inline-block;
    color: #b78307;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.catalog-product-card__favorite {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0;
    background: transparent;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .2s ease, color .2s ease;
}

.catalog-product-card__favorite i {
    font-size: 16px;
    line-height: 1;
}

.catalog-product-card__favorite:hover,
.catalog-product-card__favorite:focus-visible {
    transform: translateY(-1px);
    color: var(--red);
}

.catalog-product-card__favorite.is-active {
    border: 0;
    background: transparent;
    color: var(--red);
}

.catalog-product-card__favorite.is-active i {
    animation: catalog-favorite-pop .26s ease;
}

@keyframes catalog-favorite-pop {
    0% {
        transform: scale(0.8);
    }
    60% {
        transform: scale(1.16);
    }
    100% {
        transform: scale(1);
    }
}

.catalog-product-card__title {
    margin: 5px 0 6px;
    color: var(--blue);
    font-size: 16px;
    line-height: 1.22;
    font-weight: 700;
}

.catalog-product-card__price small,
.catalog-product-card__price strong,
.catalog-product-card__price span {
    display: block;
}

.catalog-product-card__price {
    & small {
        color: #8e98a9;
        font-size: 12px;
        text-decoration: line-through;
        margin-bottom: 2px;
    }
    
    & strong {
        color: var(--blue);
        font-size: 22px;
        line-height: 1;
        font-weight: 800;
    }
    
    & span {
        margin-top: 2px;
        color: #5f6e84;
        font-size: 12px;
        font-weight: 600;
    }
}

.catalog-product-card__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.catalog-product-card__btn {
    min-height: 38px;
    border-top: 1px solid rgba(23, 57, 107, 0.12);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.catalog-product-card__btn--buy {
    background: var(--blue);
    color: var(--white) !important;
}

.catalog-product-card__btn--cart {
    background: linear-gradient(120deg, #f6b700 0%, #ffcc33 100%);
    color: var(--blue) !important;
}

.catalog-product-card__btn + .catalog-product-card__btn {
    border-left: 1px solid rgba(23, 57, 107, 0.12);
}

.catalog-product-card__btn:hover,
.catalog-product-card__btn:focus-visible {
    transform: translateY(-1px);
}

.catalog-product-card__btn--buy:hover,
.catalog-product-card__btn--buy:focus-visible {
    box-shadow: 0 8px 14px rgba(23, 57, 107, 0.28);
}

.catalog-product-card__btn--cart:hover,
.catalog-product-card__btn--cart:focus-visible {
    box-shadow: 0 8px 14px rgba(246, 183, 0, 0.3);
}

.products-results__empty {
    margin: 14px 0 0;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px dashed rgba(23, 57, 107, 0.25);
    background: #f8fbff;
    color: #4f6079;
    font-size: 14px;
    font-weight: 600;
}

/* ===== AJUSTE FORCADO: CARD PRODUTOS ===== */
.offers .product-card .discount-badge {
    top: auto !important;
    right: auto !important;
    left: var(--product-badge-offset) !important;
    bottom: var(--product-badge-offset) !important;
    width: auto !important;
    min-width: 72px !important;
    height: var(--product-badge-height) !important;
    padding: 0 12px !important;
    border-radius: 4px !important;
    font-size: 13px !important;
}



.offers .product-card .rating {
    font-size: 14px !important;
}

.offers .product-card .rating small {
    font-size: 11px !important;
}

.offers .product-card .product-category {
    font-size: 12px !important;
}

.offers .product-card .product-body h3 {
    font-size: 19px !important;
    line-height: 1.12 !important;
}

.offers .product-card .price-block strong {
    font-size: 24px !important;
}

.offers .product-card .price-block small,
.offers .product-card .price-block span {
    font-size: 13px !important;
}

.offers .product-card .product-actions .btn-cart,
.offers .product-card .product-actions .btn-buy {
    font-size: 13px !important;
}

.offers .product-card .product-actions--home .btn-cart--home {
    font-size: 0 !important;
}

.offers .product-card .product-actions--home .btn-buy--home {
    font-size: 12px !important;
}

.products-grid .catalog-product-card__department {
    font-size: 11px !important;
}

.products-grid .catalog-product-card__favorite {
    width: 38px !important;
    height: 38px !important;
}

.products-grid .catalog-product-card__favorite i {
    font-size: 18px !important;
}

.products-grid .catalog-product-card__title {
    font-size: 18px !important;
}

.products-grid .catalog-product-card__price small,
.products-grid .catalog-product-card__price span {
    font-size: 13px !important;
}

.products-grid .catalog-product-card__price strong {
    font-size: 24px !important;
}

.product-title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
    line-height: 1.4;
}

.search-box {
    position: relative;
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    z-index: 80;
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.search-suggestions__inner {
    max-height: 420px;
    overflow-y: auto;
}

.search-suggestions__item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f1f1f1;
    background: var(--white);
    transition: background 0.2s ease;
}

.search-suggestions__item:last-child {
    border-bottom: none;
}

.search-suggestions__item:hover,
.search-suggestions__item.is-active {
    background: #f8fafc;
}

.search-suggestions__thumb {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #f1f1f1;
}

.search-suggestions__content {
    min-width: 0;
}

.search-suggestions__category {
    display: inline-block;
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--blue);
}

.search-suggestions__title {
    font-size: 14px;
    line-height: 1.35;
    color: #111827;
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-suggestions__price {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.search-suggestions__price-old {
    font-size: 12px;
    color: #9ca3af;
    text-decoration: line-through;
}

.search-suggestions__price-current {
    font-size: 15px;
    font-weight: 700;
    color: var(--blue);
}

.search-suggestions__footer {
    padding: 12px 14px;
    background: #f8fafc;
    border-top: 1px solid #eef2f7;
}

.search-suggestions__see-all {
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    color: var(--blue) !important;
}

.search-suggestions__empty,
.search-suggestions__loading {
    padding: 16px 14px;
    font-size: 14px;
    color: #6b7280;
}

@media (prefers-reduced-motion: reduce) {
    .catalog-product-card__favorite,
    .catalog-product-card__favorite.is-active i,
    .catalog-product-card__btn {
        animation: none;
        transition: none;
    }
}

.products-filters__group--price {
    gap: 14px;
}

.products-price-range {
    display: grid;
    gap: 14px;
}

.products-price-range__values {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.products-price-range__value-box {
    display: grid;
    gap: 2px;
}

.products-price-range__value-box span {
    color: #6a7890;
    font-size: 13px;
    font-weight: 500;
}

.products-price-range__value-box strong {
    color: #6a7890;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
}

.products-price-range__inputs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.products-price-range__text-input {
    width: 100%;
    height: 46px;
    border: 1px solid #d9dee8;
    border-radius: 8px;
    background: #fbfbfb;
    color: var(--blue);
    font-size: 16px;
    font-weight: 500;
    padding: 0 14px;
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

.products-price-range__text-input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(23, 57, 107, 0.10);
    background: var(--white);
}

.products-price-range__slider-wrap {
    position: relative;
    height: 34px;
    display: flex;
    align-items: center;
}

.products-price-range__track {
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 999px;
    background: #d7dce5;
}

.products-price-range__progress {
    position: absolute;
    height: 4px;
    border-radius: 999px;
    background: #0d8bff;
}

.products-price-range__range {
    position: absolute;
    left: 0;
    width: 100%;
    height: 34px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}

.products-price-range__range::-webkit-slider-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 0;
    background: #f2f2f2;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    pointer-events: auto;
    -webkit-appearance: none;
    appearance: none;
}

.products-price-range__range::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 0;
    background: #f2f2f2;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    pointer-events: auto;
}

.products-price-range__range::-webkit-slider-runnable-track {
    background: transparent;
}

.products-price-range__range::-moz-range-track {
    background: transparent;
}

.products-filters__ratings {
    display: grid;
    gap: 10px;
}

.products-filters__rating {
    display: grid;
    grid-template-columns: 18px auto 1fr;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #3e4f6a;
}

.products-filters__rating input {
    accent-color: var(--blue);
}

.products-filters__rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: var(--yellow);
    font-size: 13px;
    line-height: 1;
}

.products-filters__rating-label {
    font-size: 13px;
    font-weight: 600;
    color: #3e4f6a;
}

.products-filters__section {
    border-top: 1px solid rgba(23, 57, 107, 0.10);
    padding-top: 16px;
}

.products-filters__section:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.products-filters__section-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    color: var(--blue);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-align: left;
}

.products-filters__section-toggle i {
    font-size: 14px;
    transition: transform .2s ease;
}

.products-filters__section.is-open .products-filters__section-toggle i {
    transform: rotate(0deg);
}

.products-filters__section:not(.is-open) .products-filters__section-toggle i {
    transform: rotate(180deg);
}

.products-filters__section-content {
    display: none;
    padding-top: 12px;
}

.products-filters__section.is-open .products-filters__section-content {
    display: block;
}

.products-results__head--catalog {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(23, 57, 107, 0.12);
}

.products-results__summary {
    min-width: 0;
}

.products-results__title {
    margin: 0;
    color: #37465b;
    font-size: 28px;
    line-height: 1.12;
    font-weight: 500;
}

.products-results__title strong {
    color: var(--blue);
    font-weight: 800;
}

.products-results__topbar-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.products-results__page-status {
    color: #66758d;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.products-results__sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.products-results__sort-label {
    color: #4d5d75;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.products-results__sort-select {
    min-width: 190px;
    height: 42px;
    border: 1px solid #cfd7e4;
    border-radius: 10px;
    background: var(--white);
    color: #111827;
    font-size: 15px;
    font-weight: 500;
    padding: 0 14px;
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

.products-results__sort-select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(23, 57, 107, 0.10);
}

.products-results__top-pagination {
    margin-top: 28px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    
}

.products-results__top-pagination-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #d5dce7;
    border-radius: 8px;
    background: var(--white);
    color: var(--blue) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.products-results__top-pagination-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 14px rgba(23, 57, 107, 0.12);
}

.products-results__top-pagination-btn.is-disabled {
    opacity: .45;
    pointer-events: none;
}

.products-results__top-pagination-current {
    color: #4d5d75;
    font-size: 14px;
    font-weight: 700;
    min-width: 70px;
    text-align: center;
}

.products-results__top-pagination-number{
    color: var(--blue) !important;
}

.products-results__top-pagination-pages {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.products-results__top-pagination-btn,
.products-results__top-pagination-number {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #d5dce7;
    border-radius: 8px;
    background: var(--white);
    color: var(--blue) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.products-results__top-pagination-btn:hover,
.products-results__top-pagination-number:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 14px rgba(23, 57, 107, 0.12);
}

.products-results__top-pagination-number.is-current {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white) !important;
    pointer-events: none;
}

.products-results__top-pagination-ellipsis {
    min-width: 24px;
    text-align: center;
    color: #6b7a90;
    font-size: 14px;
    font-weight: 700;
}
/* ===== COMPLEMENTOS DO PERFIL DO CLIENTE - NOVOS CARDS ===== */

.profile-client-card[hidden],
.profile-client-empty-state[hidden],
.profile-client-address-view[hidden],
.profile-client-form[hidden],
.profile-client-panel[hidden],
.profile-client-card[data-profile-panel][hidden] {
    display: none !important;
}

.profile-client-step__dot--button {
    background: inherit;
}

.profile-client-step__dot--button:not(:disabled):hover,
.profile-client-step__dot--button:not(:disabled):focus-visible {
    filter: brightness(1.02);
    transform: translateY(-1px);
}

.profile-client-field select {
    width: 100%;
    height: 40px;
    border: 1px solid #c8d4e8;
    border-radius: 12px;
    background: #fbfdff;
    color: var(--text);
    padding: 0 40px 0 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    outline: none;
    box-sizing: border-box;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--blue) 50%),
        linear-gradient(135deg, var(--blue) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 2px),
        calc(100% - 12px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.profile-client-field select:hover {
    border-color: #9ab0cf;
}

.profile-client-field select:focus {
    border-color: var(--blue);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(23, 57, 107, 0.14);
}

.profile-client-field select[aria-invalid="true"] {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(234, 75, 69, 0.10);
}

.profile-client-empty-state {
    border: 1px dashed #d7e1ef;
    border-radius: 16px;
    background: linear-gradient(180deg, #fbfdff 0%, #f3f7ff 100%);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.65);
    padding: 34px 24px;
    text-align: center;
}

.profile-client-empty-state__icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffe07e 0%, var(--yellow) 100%);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    box-shadow: 0 16px 32px rgba(246, 183, 0, 0.32);
    animation: profile-client-empty-float 2.6s ease-in-out infinite;
    position: relative;
}

.profile-client-empty-state__icon::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(246, 183, 0, 0.45);
    animation: profile-client-empty-ring 2.6s ease-out infinite;
}

.profile-client-empty-state__icon i {
    animation: profile-client-empty-pulse 2.8s ease-in-out infinite;
    transform-origin: center;
}

.profile-client-empty-state__title {
    margin: 0 0 10px;
    color: var(--blue);
    font-size: 28px;
    line-height: 1.08;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -.01em;
}

.profile-client-empty-state__text {
    max-width: 720px;
    margin: 0 auto;
    color: #5b6b82;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

.profile-client-empty-state .profile-client-form__actions {
    justify-content: center;
    margin-top: 20px;
}

.profile-client-address-table thead th {
    border-bottom: 1px solid #d7e1ef;
    padding: 12px 14px;
    text-align: left;
    font-size: 12px;
    line-height: 1.25;
    color: var(--blue);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    background: #edf3fb;
    white-space: nowrap;
}

.profile-client-address-table thead th:last-child {
    text-align: center;
    width: 96px;
    min-width: 96px;
}

.profile-client-address-table tbody td {
    white-space: nowrap;
}

.profile-client-address-table tbody tr:hover td {
    background: #f7fbff;
}

.profile-client-address-table tbody tr:last-child td {
    border-bottom: 0;
}

.profile-client-address-table__actions {
    white-space: nowrap;
    min-width: 96px;
    width: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.profile-client-address-action {
    width: 20px;
    height: 20px;
    border: 0;
    background: transparent;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: transform .2s ease, color .2s ease, opacity .2s ease;
}

.profile-client-address-action + .profile-client-address-action {
    margin-left: 0;
}

.profile-client-address-action:hover,
.profile-client-address-action:focus-visible {
    transform: translateY(-1px);
    outline: none;
    opacity: .86;
}

.profile-client-address-action--edit {
    color: var(--blue);
}

.profile-client-address-action--delete {
    color: var(--red);
}

.profile-client-address-action--edit:hover,
.profile-client-address-action--edit:focus-visible {
    color: var(--blue);
}

.profile-client-address-action--delete:hover,
.profile-client-address-action--delete:focus-visible {
    color: var(--red);
}

.profile-client-form[data-profile-form="endereco"] {
    margin-top: 4px;
}

#modalPerfilEndereco .mm-modal__dialog {
    max-width: 920px;
}

#modalPerfilEndereco .mm-modal__brand {
    padding-bottom: 20px;
}

#modalPerfilEndereco .profile-client-form--modal-address {
    padding: 8px 32px 28px;
}

#modalPerfilEndereco .profile-client-form__actions {
    margin-top: 10px;
}

#modalPerfilEndereco .profile-client-form__submit {
    min-width: 280px;
}

#modalPerfilEndereco .profile-client-form__feedback {
    margin-top: 2px;
    text-align: center;
}

@media (max-width: 768px) {
    #modalPerfilEndereco .profile-client-form--modal-address {
        padding: 8px 16px 18px;
    }

    #modalPerfilEndereco .profile-client-form__submit {
        min-width: 0;
        width: 100%;
    }
}

.profile-client-form[data-profile-form="senha"] {
    width: min(100%, 620px);
    margin: 0 auto;
    gap: 12px;
}

.profile-client-form[data-profile-form="senha"] .profile-client-form__row--contact {
    grid-template-columns: 1fr;
    justify-items: center;
}

.profile-client-form[data-profile-form="senha"] .profile-client-field {
    width: min(100%, 520px);
}

.profile-client-form[data-profile-form="senha"] .profile-client-field input {
    height: 38px;
    font-size: 11px;
}

.profile-client-form[data-profile-form="senha"] .profile-client-form__actions {
    justify-content: center;
    margin-top: 4px;
}

.profile-client-form[data-profile-form="senha"] .profile-client-form__submit {
    min-width: 220px;
}

.profile-client-form[data-profile-form="cadastro"] .profile-client-form__row--contact + .profile-client-form__row--contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-client-card[data-profile-panel="cartoes"] .profile-client-empty-state__icon {
    color: var(--blue);
}

.profile-client-card[data-profile-panel="pedidos"] .profile-client-empty-state__icon {
    color: var(--blue);
}

.profile-client-card[data-profile-panel="endereco"] .profile-client-empty-state__icon {
    color: var(--blue);
}

.profile-client-card[data-profile-panel="senha"] .profile-client-form__feedback,
.profile-client-card[data-profile-panel="endereco"] .profile-client-form__feedback,
.profile-client-card[data-profile-panel="cadastro"] .profile-client-form__feedback {
    text-align: center;
}

.profile-client-form__feedback.is-error {
    color: var(--red);
}

.profile-client-form__feedback.is-success {
    color: #20804f;
}

.profile-client-card[data-profile-panel="pedidos"] .profile-client-address-table-wrap,
.profile-client-card[data-profile-panel="endereco"] .profile-client-address-table-wrap {
    margin-top: 2px;
}

.profile-client-card[data-profile-panel="pedidos"] .profile-client-address-table,
.profile-client-card[data-profile-panel="endereco"] .profile-client-address-table {
    min-width: 940px;
}

.profile-client-card[data-profile-panel="cartoes"] .profile-client-empty-state,
.profile-client-card[data-profile-panel="pedidos"] .profile-client-empty-state,
.profile-client-card[data-profile-panel="endereco"] .profile-client-empty-state {
    margin-top: 2px;
}

.profile-client-card[data-profile-panel="pedidos"] .profile-client-form__submit,
.profile-client-card[data-profile-panel="endereco"] .profile-client-form__submit,
.profile-client-card[data-profile-panel="cartoes"] .profile-client-form__submit {
    text-transform: uppercase;
}

.profile-client-card[data-profile-panel="pedidos"] .profile-client-form__submit,
.profile-client-card[data-profile-panel="pedidos"] .profile-client-form__submit:visited {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--blue) !important;
    -webkit-text-fill-color: var(--blue);
    text-decoration: none !important;
    line-height: 1;
}

.profile-client-card[data-profile-panel="pedidos"] .profile-client-form__submit:hover,
.profile-client-card[data-profile-panel="pedidos"] .profile-client-form__submit:focus-visible,
.profile-client-card[data-profile-panel="pedidos"] .profile-client-form__submit:active {
    color: var(--blue) !important;
    -webkit-text-fill-color: var(--blue);
}

#modalCadastro .mm-modal__dialog,
#modalCadastro .mm-modal__brand,
#modalCadastro .mm-modal__footer {
    background: var(--white) !important;
}

.profile-client-address-view__title + .profile-client-address-table-wrap {
    margin-top: 0;
}

.profile-client-empty-state + .profile-client-form,
.profile-client-form + .profile-client-address-view,
.profile-client-empty-state + .profile-client-address-view {
    margin-top: 0;
}

@keyframes profile-client-empty-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes profile-client-empty-pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}
.checkout-page {
    width: 100%;
    padding: 30px 0 82px;
}

.checkout-heading {
    margin-bottom: 26px;
}

.checkout-page-heading__title {
    margin: 0;
    color: var(--blue);
    font-size: 42px;
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

.checkout-page-heading__text {
    margin: 10px 0 0;
    color: #55657e;
    font-size: 14px;
    line-height: 1.6;
}

.checkout-steps {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 34px;
    padding: 0;
    list-style: none;
}

.checkout-steps::before {
    content: "";
    position: absolute;
    top: 31px;
    left: 90px;
    right: 90px;
    height: 4px;
    border-radius: 999px;
    background: #d3d7de;
}

.checkout-step {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 220px;
    text-align: center;
}

.checkout-step__dot {
    width: 62px;
    height: 62px;
    margin: 0 auto 12px;
    border-radius: 50%;
    border: 2px solid #c9ced8;
    background: #f2f4f7;
    color: #9098a7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .06);
}

.checkout-step__label {
    display: block;
    color: #69788f;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.checkout-step.is-completed .checkout-step__dot,
.checkout-step.is-active .checkout-step__dot {
    background: radial-gradient(circle at 30% 30%, #ffe07e 0%, var(--yellow) 100%);
    border-color: rgba(246, 183, 0, .9);
    color: var(--blue);
}

.checkout-step.is-completed .checkout-step__label,
.checkout-step.is-active .checkout-step__label {
    color: var(--blue);
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 24px;
    align-items: start;
}

.checkout-main,
.checkout-form {
    display: grid;
    gap: 18px;
}

.checkout-card,
.checkout-summary {
    background: var(--white);
    border: 1px solid rgba(23, 57, 107, .10);
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(23, 57, 107, .10);
}

.checkout-card {
    padding: 22px;
}

.checkout-card--compact {
    padding: 18px 20px;
}

.checkout-card__head {
    margin-bottom: 18px;
}

.checkout-card__head--between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.checkout-card__head--compact {
    margin-bottom: 14px;
}

.checkout-card__title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: var(--blue);
    font-size: 25px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.checkout-card__title i {
    color: var(--yellow);
    font-size: 20px;
}

.checkout-card__helper {
    min-height: 20px;
    margin: 12px 0 0;
    color: #5f6e84;
    font-size: 13px;
    font-weight: 600;
}

.checkout-card--compact .checkout-card__title {
    font-size: 21px;
}

.checkout-card--compact .checkout-card__title i {
    font-size: 17px;
}

.checkout-inline-action {
    min-width: 184px;
    height: 40px;
    padding: 0 16px;
    background: linear-gradient(120deg, var(--yellow) 0%, #ffcc33 100%);
    color: var(--blue) !important;
    border: 1px solid rgba(246, 183, 0, .55);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 10px 18px rgba(246, 183, 0, .18);
    transition: transform .2s ease, box-shadow .2s ease;
}

.checkout-inline-action:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 22px rgba(246, 183, 0, .24);
    color: var(--blue) !important;
}

.checkout-collapse-toggle {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 0;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    cursor: pointer;
    text-align: left;
}

.checkout-collapse-toggle__left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.checkout-collapse-toggle__left i {
    color: var(--yellow);
    font-size: 17px;
}

.checkout-collapse-toggle__right {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    border: 2px solid rgba(246, 183, 0, .8);
    background: #fffaf0;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 8px 16px rgba(246, 183, 0, .12);
    transition: transform .25s ease, background .2s ease, box-shadow .2s ease;
}

.checkout-collapse-toggle:hover .checkout-collapse-toggle__right {
    box-shadow: 0 12px 20px rgba(246, 183, 0, .18);
}

.checkout-card--collapse.is-open .checkout-collapse-toggle__right {
    transform: rotate(180deg);
    background: linear-gradient(120deg, var(--yellow) 0%, #ffcc33 100%);
}

.checkout-collapse-content[hidden] {
    display: none !important;
}

.checkout-compact-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
}

.checkout-compact-info__row {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(23, 57, 107, .08);
}

.checkout-compact-info__row--full {
    grid-column: 1 / -1;
}

.checkout-compact-info__label {
    color: #6c7a90;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
    line-height: 1.2;
}

.checkout-compact-info__row strong {
    color: var(--blue);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;
}

.checkout-shipping-list,
.checkout-payment-list,
.checkout-summary__products,
.checkout-summary__totals,
.checkout-summary__actions {
    display: grid;
}

.checkout-shipping-list,
.checkout-payment-list {
    gap: 12px;
}

.checkout-shipping-option {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(23, 57, 107, .12);
    background: #fbfdff;
    padding: 16px;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.checkout-shipping-option input {
    accent-color: var(--blue);
}

.checkout-shipping-option__content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.checkout-shipping-option__title,
.checkout-shipping-option__price {
    color: var(--blue);
    font-size: 15px;
    font-weight: 800;
}

.checkout-shipping-option__meta {
    color: #607089;
    font-size: 12px;
    font-weight: 500;
}

.checkout-shipping-option.is-selected {
    border-color: rgba(246, 183, 0, .65);
    background: linear-gradient(180deg, #fffdf5 0%, #fff 100%);
    box-shadow: 0 10px 18px rgba(246, 183, 0, .12);
}

.checkout-payment-option {
    position: relative;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    border: 1px solid rgba(23, 57, 107, .12);
    background: #fbfdff;
    padding: 18px;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease;
}

.checkout-payment-option:hover {
    transform: translateY(-1px);
}

.checkout-payment-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkout-payment-option__check {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #c7cfdb;
    background: #f2f4f8;
    color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.checkout-payment-option__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.checkout-payment-option__title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-size: 16px;
    font-weight: 800;
}

.checkout-payment-option__title i,
.checkout-summary__secure i {
    color: var(--yellow);
}

.checkout-payment-option__text {
    color: #62728a;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 500;
}

.checkout-payment-option.is-selected {
    border-color: rgba(246, 183, 0, .62);
    background: linear-gradient(180deg, #fffdf4 0%, #fff 100%);
    box-shadow: 0 12px 22px rgba(246, 183, 0, .12);
}

.checkout-payment-option.is-selected .checkout-payment-option__check {
    border-color: rgba(246, 183, 0, .95);
    background: radial-gradient(circle at 30% 30%, #ffe07e 0%, var(--yellow) 100%);
    color: var(--blue);
    box-shadow: 0 8px 16px rgba(246, 183, 0, .18);
}

.checkout-submit-feedback,
.checkout-coupon__feedback {
    font-weight: 700;
}

.checkout-submit-feedback {
    min-height: 20px;
    margin: 18px 0 0;
    font-size: 13px;
}

.checkout-coupon__feedback {
    min-height: 18px;
    margin: 10px 0 0;
    font-size: 12px;
}

.checkout-submit-feedback.is-error,
.checkout-coupon__feedback.is-error {
    color: var(--red);
}

.checkout-submit-feedback.is-success,
.checkout-coupon__feedback.is-success,
.checkout-summary__line--discount strong {
    color: #1f7a48;
}

.checkout-sidebar {
    position: sticky;
    top: 20px;
}

.checkout-summary {
    padding: 22px;
}

.checkout-summary__title {
    margin: 0 0 18px;
    color: var(--blue);
    font-size: 26px;
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
}

.checkout-summary__products {
    gap: 12px;
    margin-bottom: 18px;
}

.checkout-summary-item {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #e3e9f2;
}

.checkout-summary-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.checkout-summary-item__image {
    width: 68px;
    height: 68px;
    background: #f6f9ff;
    overflow: hidden;
}

.checkout-summary-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.checkout-summary-item__content h3 {
    margin: 0 0 4px;
    color: var(--blue);
    font-size: 14px;
    line-height: 1.25;
    font-weight: 700;
}

.checkout-summary-item__content p,
.checkout-summary-item__content small {
    display: block;
    color: #66758c;
    font-size: 11px;
    line-height: 1.5;
}

.checkout-summary-item strong {
    color: var(--blue);
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.checkout-coupon,
.checkout-summary__totals {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e3e9f2;
}

.checkout-coupon label {
    display: block;
    margin-bottom: 8px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.checkout-coupon__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 110px;
    gap: 10px;
}

.checkout-coupon__row input {
    height: 44px;
    border: 1px solid #c8d4e8;
    background: #fbfdff;
    padding: 0 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    outline: none;
}

.checkout-coupon__row button {
    height: 44px;
    border: 0;
    background: linear-gradient(120deg, var(--yellow) 0%, #ffcc33 100%);
    color: var(--blue);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

.checkout-summary__totals {
    gap: 12px;
}

.checkout-summary__line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.checkout-summary__line span {
    color: #5f6e84;
    font-size: 14px;
    font-weight: 600;
}

.checkout-summary__line strong {
    color: var(--blue);
    font-size: 15px;
    font-weight: 800;
}

.checkout-summary__line--total {
    padding-top: 12px;
    border-top: 1px dashed #d6deeb;
}

.checkout-summary__line--total span,
.checkout-summary__line--total strong {
    color: var(--blue);
    font-size: 20px;
    font-weight: 800;
}

.checkout-summary__secure {
    margin-top: 18px;
    padding: 14px;
    background: linear-gradient(180deg, #f7fbff 0%, #eef4fc 100%);
    border: 1px solid rgba(23, 57, 107, .08);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
}

.checkout-summary__secure i {
    font-size: 16px;
}

.checkout-summary__actions {
    margin-top: 22px;
    gap: 12px;
}

.checkout-finish-btn {
    position: relative;
    width: 100%;
    min-height: 60px;
    border: 0;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(120deg, var(--yellow) 0%, #ffcc33 50%, var(--yellow) 100%);
    color: var(--blue);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 18px 30px rgba(246, 183, 0, .28);
    transition: transform .2s ease, box-shadow .2s ease;
    animation: checkoutFinishPulse 2.2s ease-in-out infinite;
}

.checkout-finish-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 34px rgba(246, 183, 0, .34);
}

.checkout-finish-btn__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,.34) 35%,
        rgba(255,255,255,0) 60%
    );
    transform: translateX(-140%);
    animation: checkoutFinishShine 2.8s ease-in-out infinite;
}

.checkout-finish-btn__content {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.checkout-summary__back {
    min-height: 42px;
    background: var(--blue);
    color: var(--white) !important;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 18px rgba(23, 57, 107, .20);
    transition: transform .2s ease, box-shadow .2s ease;
}

.checkout-summary__back:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(23, 57, 107, .24);
}

@keyframes checkoutFinishShine {
    0% {
        transform: translateX(-140%);
    }
    55%,
    100% {
        transform: translateX(140%);
    }
}

@keyframes checkoutFinishPulse {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 18px 30px rgba(246, 183, 0, .28);
    }
    50% {
        transform: translateY(-1px);
        box-shadow: 0 22px 34px rgba(246, 183, 0, .34);
    }
}
.user-submenu__logged-layout {
    margin: 0;
}

.user-submenu__logged-main,
.user-submenu__logged-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.user-submenu__logged-links a {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== PADRONIZAÇÃO DOS CARDS DA LISTAGEM COM A HOME ===== */

.catalog-product-card {
    display: grid;
    grid-template-rows: auto 1fr auto;
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
}

.catalog-product-card__media {
    position: relative;
}

.catalog-product-card__image-link {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #ffffff;
}

.catalog-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 8px;
    background: #ffffff;
}

.catalog-product-card__discount-badge {
    position: absolute;
    left: var(--product-badge-offset);
    bottom: var(--product-badge-offset);
    min-width: 72px;
    max-width: calc(100% - (var(--product-badge-offset) * 2));
    height: var(--product-badge-height);
    padding: 0 12px;
    background: var(--red);
    color: var(--white);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 10px 20px rgba(231, 26, 19, 0.22);
}

.catalog-product-card__body {
    display: flex;
    flex-direction: column;
    padding: 14px 12px 0;
}

.catalog-product-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.catalog-product-card__department {
    display: block;
    color: var(--yellow);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 2px;
    text-transform: none;
    letter-spacing: 0;
}

.catalog-product-card__favorite {
    width: 38px;
    height: 38px;
    border-radius: 50% !important;
    border: 0;
    background: transparent;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.catalog-product-card__favorite i {
    font-size: 18px;
    line-height: 1;
}

.catalog-product-card__favorite:hover,
.catalog-product-card__favorite:focus-visible,
.catalog-product-card__favorite.is-active {
    color: var(--red);
}

.catalog-product-card__title {
    margin: 3px 0 4px;
    color: var(--blue);
    font-size: 18px;
    line-height: 1.18;
    font-weight: 600;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 64px;
}

.catalog-product-card__rating {
    color: var(--yellow);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 6px;
}

.catalog-product-card__rating small {
    color: #98a0ad;
    font-size: 11px;
    margin-left: 4px;
}

.catalog-product-card__price {
    margin-top: auto;
}

.catalog-product-card__price small,
.catalog-product-card__price strong,
.catalog-product-card__price span {
    display: block;
}

.catalog-product-card__price small {
    color: #9ba1ab;
    font-size: 13px;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.catalog-product-card__price strong {
    color: var(--blue);
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
}

.catalog-product-card__price span {
    margin-top: 2px;
    color: #9ba1ab;
    font-size: 13px;
    font-weight: 600;
}

.catalog-product-card__actions {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 0 10px 14px;
    margin-top: 10px;
}

.catalog-product-card__btn {
    min-height: 46px;
    border: 0;
    border-radius: 8px !important;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.catalog-product-card__btn--cart {
    width: 46px;
    min-width: 46px;
    height: 46px;
    padding: 0;
    background: var(--yellow);
    color: var(--blue) !important;
    box-shadow: 0 10px 18px rgba(246, 183, 0, 0.22);
    font-size: 0;
}

.catalog-product-card__btn--cart i {
    font-size: 18px;
    color: var(--blue) !important;
}

.catalog-product-card__btn--buy {
    width: 100%;
    min-width: 0;
    padding: 0 16px;
    background: var(--blue);
    color: var(--white) !important;
    box-shadow: 0 10px 18px rgba(23, 57, 107, 0.2);
}

.catalog-product-card__btn--buy:hover,
.catalog-product-card__btn--buy:focus-visible {
    background: #102a53;
    color: var(--white) !important;
}

.catalog-product-card__btn--cart:hover,
.catalog-product-card__btn--cart:focus-visible {
    background: var(--yellow-2);
    color: var(--blue) !important;
}

.catalog-product-card__btn:hover,
.catalog-product-card__btn:focus-visible {
    transform: translateY(-1px);
}

.checkout-inline-action.checkout-inline-action--minimal {
    min-width: 184px;
    height: 40px;
    padding: 0 16px;
    background: linear-gradient(120deg, var(--yellow) 0%, #ffcc33 100%);
    color: var(--blue) !important;
    border: 1px solid rgba(246, 183, 0, 0.55);
    box-shadow: 0 10px 18px rgba(246, 183, 0, 0.18);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.checkout-inline-action.checkout-inline-action--minimal:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 22px rgba(246, 183, 0, 0.24);
    color: var(--blue) !important;
}

.checkout-card--collapse .checkout-card__head {
    align-items: center;
}

.checkout-collapse-toggle {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.checkout-collapse-toggle__left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.checkout-collapse-toggle__left i {
    color: var(--yellow);
    font-size: 17px;
}

.checkout-collapse-toggle__right {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    border: 2px solid rgba(246, 183, 0, 0.8);
    background: #fffaf0;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: transform .25s ease, background .2s ease, box-shadow .2s ease;
    box-shadow: 0 8px 16px rgba(246, 183, 0, 0.12);
}

.checkout-collapse-toggle:hover .checkout-collapse-toggle__right {
    box-shadow: 0 12px 20px rgba(246, 183, 0, 0.18);
}

.checkout-card--collapse.is-open .checkout-collapse-toggle__right {
    transform: rotate(180deg);
    background: linear-gradient(120deg, var(--yellow) 0%, #ffcc33 100%);
}

.checkout-collapse-content[hidden] {
    display: none !important;
}
