* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.login-page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: transparent;
    color: #222;
}

.login-area {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.login-icon {
    width: 26px;
    height: 26px;
    background: url(imagens/icon-profile.png) center/contain no-repeat;
    flex-shrink: 0;
}

.cart-qty-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.cart-qty-minus,
.cart-qty-plus {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 8px;
    background: #ececec;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}

.cart-qty-minus:hover,
.cart-qty-plus:hover {
    background: #ddd;
}

.cart-qty-value {
    min-width: 18px;
    text-align: center;
    font-size: .95rem;
    font-weight: 600;
}

.cart-subtotal {
    margin-top: 8px;
    font-size: .95rem;
    font-weight: 700;
}

.login-area a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: .2s ease;
}

.login-area:hover a {
    color: var(--rosa);
}

.login-card {
    width: 100%;
    max-width: 980px;
    min-height: 620px;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.login-left {
    background: linear-gradient(135deg, #f7d7df, #f3e8d1);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-left h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #111;
}

.login-left p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    max-width: 420px;
}

.login-right {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-right h2 {
    font-size: 2rem;
    margin-bottom: 28px;
    color: #111;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: .95rem;
    font-weight: 600;
    color: #222;
}

.input-group input {
    width: 100%;
    height: 52px;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 0 16px;
    font-size: .95rem;
    outline: none;
    transition: .2s ease;
}

.input-group input:focus {
    border-color: #111;
}

.login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: .9rem;
}

.remember {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.login-options a,
.register-text a {
    color: #111;
    font-weight: 600;
    text-decoration: none;
}

.login-btn {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 14px;
    background: #111;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: .25s ease;
}

.login-btn:hover {
    transform: scale(.98);
}

.register-text {
    font-size: .95rem;
    text-align: center;
    margin-top: 8px;
    color: #555;
}

@media (max-width: 900px) {
    .login-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .login-left {
        padding: 40px;
    }

    .login-left h1 {
        font-size: 2.2rem;
    }

    .login-right {
        padding: 40px;
    }
}

@media (max-width: 520px) {
    .login-page {
        padding: 14px;
    }

    .login-left,
    .login-right {
        padding: 28px;
    }

    .login-left h1 {
        font-size: 1.8rem;
    }

    .login-right h2 {
        font-size: 1.6rem;
    }

    .input-group input,
    .login-btn {
        height: 48px;
    }
}

.nav-box {
    width: 100%;
    height: 110px;
    position: fixed;
    top: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.top-ad {
    background-color: var(--rosa);
    width: 100%;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.navbar {
    background-color: var(--laranja);
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: fixed;
    z-index: 100;
}

.nav-logo {
    height: 100%;
    width: 100px;
    cursor: pointer;
    background: url(imagens/lumi_complete_logo.png) center/80px no-repeat;
    flex-shrink: 0;
}

.menu-side {
    height: 100%;
    width: 30%;
    min-width: 400px;
    max-width: 500px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.a-side {
    display: flex;
    gap: 20px;
    align-items: center;
}

.a-side a {
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.search-side {
    margin-left: auto;
    gap: 18px;
    display: flex;
    align-items: center;
}

.input-container {
    position: relative;
    width: 200px;
    padding-left: 40px;
}

.input-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 28px;
    width: 28px;
    background: url(imagens/iconpesquisa.png) center/cover no-repeat;
}

.input-container input[type="text"] {
    font-size: 1rem;
    width: 100%;
    border: none;
    border-bottom: 2px solid #ffffff80;
    padding: 5px 0;
    background: transparent;
    outline: none;
    color: white;
}

.input-container .label {
    position: absolute;
    top: 5px;
    left: 40px;
    color: #ffffff80;
    transition: .3s ease;
    pointer-events: none;
}

.input-container input[type="text"]:focus ~ .label,
.input-container input[type="text"]:valid ~ .label {
    top: -15px;
    opacity: 0;
}

.input-container .underline {
    position: absolute;
    bottom: 0;
    left: 40px;
    height: 2px;
    width: calc(100% - 40px);
    background: white;
    transform: scaleX(0);
    transform-origin: left;
    transition: .3s ease;
}

.input-container input[type="text"]:focus ~ .underline,
.input-container input[type="text"]:valid ~ .underline {
    transform: scaleX(1);
}

.burger {
    margin-left: 20px;
    position: relative;
    width: 40px;
    height: 30px;
    background: transparent;
    cursor: pointer;
    display: block;
}

.burger input {
    display: none;
}

.burger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: white;
    border-radius: 9px;
    left: 0;
    transition: .25s ease-in-out;
}

.burger span:nth-of-type(1) {
    top: 0;
}

.burger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}

.burger span:nth-of-type(3) {
    top: 100%;
    transform: translateY(-100%);
}

.menu-panel {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background: white;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.12);
    transition: left .3s ease;
}

.menu-panel.active {
    left: 0;
}

.menu-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-content a {
    text-decoration: none;
    color: #222;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 16px;
    border-radius: 12px;
    transition: .2s ease;
}

.menu-content a:hover {
    background: rgba(0,0,0,.05);
    transform: translateX(4px);
}

.menu-footer {
    margin-top: auto;
    padding-top: 20px;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(0,0,0,.45);
    border-top: 1px solid rgba(0,0,0,.08);
}

.cart {
    position: relative;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cart img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 0;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--rosa);
    color: white;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-dropdown {
    position: absolute;
    top: 85px;
    right: 20px;
    width: 340px;
    max-height: 420px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ddd;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 15px;
    display: none;
    z-index: 120;
}

.cart-dropdown.active {
    display: block;
}

.cart-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cart-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-item {
    display: flex;
    gap: 12px;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 10px;
    background: #f5f5f5;
}

.cart-info {
    flex: 1;
}

.cart-info h4 {
    font-size: 14px;
    font-weight: 600;
}

.cart-info p {
    font-size: 12px;
    opacity: 0.75;
}

.cart-remove {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
}

.cart-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.cart-popup.active {
    display: flex;
}

.cart-box {
    width: min(520px, 92vw);
    max-height: 80vh;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}

.close-cart {
    position: absolute;
    top: 15px;
    right: 20px;
    border: none;
    background: none;
    font-size: 2rem;
    cursor: pointer;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 8px;
}

.cart-footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cart-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.clear-cart,
.finish-buy,
.remove-item {
    border: none;
    padding: 10px 16px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
}

.clear-cart {
    background: #ececec;
}

.finish-buy {
    background: #111;
    color: white;
}

.remove-item {
    background: #e53935;
    color: white;
}

@media (max-width: 768px) {
    .top-ad {
        display: none;
    }

    .nav-box {
        height: 60px;
    }

    .navbar {
        height: 60px;
    }

    .a-side,
    .input-container {
        display: none;
    }

    .menu-side {
        min-width: 200px;
        gap: 0;
    }

    .nav-logo {
        background-size: 60px;
    }

    .menu-panel {
        width: 280px;
        left: -280px;
    }

    .cart-dropdown {
        top: 75px;
        right: 10px;
        width: calc(100vw - 20px);
        max-width: 360px;
    }
}

@media (max-width: 768px) {
    .input-container {
        display: none;
    }

    .search-icon {
        width: 30px;
        height: 30px;
        background: url(imagens/iconpesquisa.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        cursor: pointer;
        display: block;
    }

    .mobile-search {
        position: absolute;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        height: 55px;
        background: var(--creme);
        display: none;
        align-items: center;
        justify-content: center;
        padding: 0 15px;
        box-sizing: border-box;
        z-index: 90;
        border-bottom: 1px solid rgba(0,0,0,.08);
    }

    .mobile-search.active {
        display: flex;
    }

    .mobile-search input {
        width: 100%;
        max-width: 95%;
        height: 38px;
        border: none;
        border-bottom: 2px solid rgba(0,0,0,.15);
        background: transparent;
        outline: none;
        font-size: 1rem;
        padding: 0 8px;
        color: #222;
    }

    .mobile-search input:focus {
        border-bottom: 2px solid var(--rosa);
    }

    .a-side {
        display: none;
    }

    .menu-side {
        min-width: 200px;
        gap: 0;
    }

    .navbar {
        height: 60px;
    }

    .nav-box {
        height: 60px;
    }

    .nav-logo {
        background-size: 60px 60px;
    }

    .burger {
        scale: 0.9;
    }
}

.menu-panel {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background: white;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.12);
    transition: left .3s ease;
}

.menu-panel.active {
    left: 0;
}

.menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.menu-logo {
    width: 100px;
    height: 100px;
    background: url(imagens/lumi_complete_logo.png) center/contain no-repeat;
    flex-shrink: 0;
    cursor: pointer;
}

.menu-close {
    border: none;
    background: transparent;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.menu-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-content a {
    text-decoration: none;
    color: #222;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 16px;
    border-radius: 12px;
    transition: .2s ease;
}

.menu-content a:hover {
    background: rgba(0, 0, 0, .05);
    transform: translateX(4px);
}

.menu-footer {
    margin-top: auto;
    padding-top: 20px;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(0, 0, 0, .45);
    border-top: 1px solid rgba(0, 0, 0, .08);
}

@media (max-width: 768px) {
    .menu-panel {
        width: 280px;
        left: -280px;
    }
}

#alphanyx:hover {
    color: blueviolet;
    transition: .5s;
}

#alphanyx {
    font-weight: 500;
    cursor: pointer;
    transition: .5s;
}

#alphanyx strong {
    font-weight: 800;
}

.menu-footer:hover {
    color: blueviolet;
    transition: .5s;
}

.menu-footer {
    font-weight: 500;
    cursor: pointer;
}

.menu-footer strong {
    font-weight: 800;
}

.menu-content a:hover {
    color: var(--rosa);
}

.mobile-search {
    display: none;
    outline: none;
}

@media (max-width:768px) {
    .input-container {
        display: none;
    }

    .search-icon {
        width: 30px;
        height: 30px;
        background: url(imagens/iconpesquisa.png);
        background-size: cover;
        cursor: pointer;
    }

    .mobile-search {
        position: absolute;
        top: 60px;
        left: 50%;
        height: 35px;
        transform: translateX(-50%);
        width: 100vw;
        background: var(--creme);
        box-sizing: border-box;
        padding: 10px;
        display: none;
        transition: .5s ease-in-out;
    }

    .mobile-search input:focus {
        border-bottom: 2px solid var(--creme);
        outline: none;
    }

    .mobile-search input {
        top: -5px;
        border: none;
        height: 18px;
        background-color: transparent;
        position: relative;
        width: calc(90% - 2px);
        left: 50%;
        transform: translateX(-50%);
        padding: 10px;
        box-sizing: border-box;
        border-bottom: 2px solid var(--creme);
    }
}

@media (max-width: 768px) {
    .cart {
        width: 38px;
        height: 38px;
    }

    .cart img {
        width: 22px;
        height: 22px;
    }

    .cart-dropdown {
        top: 75px;
        right: 10px;
        width: calc(100vw - 20px);
        max-width: 360px;
    }
}

.cart {
    position: relative;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 20px;
}

.cart img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.cart-count {
    position: absolute;
    top: 0px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--rosa);
    color: white;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cart-dropdown {
    position: absolute;
    top: 85px;
    right: 20px;
    width: 340px;
    max-height: 420px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ddd;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 15px;
    display: none;
    z-index: 120;
}

.cart-dropdown.active {
    display: block;
}

.cart-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cart-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-item {
    display: flex;
    gap: 12px;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 10px;
    background: #f5f5f5;
}

.cart-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-info h4 {
    font-size: 14px;
    font-weight: 600;
}

.cart-info p {
    font-size: 12px;
    opacity: 0.75;
}

.cart-remove {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

.cart-footer {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 700;
}

.cart-checkout {
    width: 100%;
    border: none;
    padding: 12px;
    border-radius: 999px;
    background: black;
    color: white;
    cursor: pointer;
}

.empty-cart {
    font-size: 14px;
    opacity: 0.7;
    text-align: center;
    padding: 20px 0;
}

@media (max-width: 768px) {
    .cart {
        width: 38px;
        height: 38px;
    }

    .cart img {
        width: 22px;
        height: 22px;
    }

    .cart-dropdown {
        top: 75px;
        right: 10px;
        width: calc(100vw - 20px);
        max-width: 360px;
    }
}

.cart-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.cart-popup.active {
    display: flex;
}

.cart-box {
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    overflow-y: auto;
    position: relative;
}

.close-cart {
    position: absolute;
    top: 15px;
    right: 20px;
    border: none;
    background: none;
    font-size: 2rem;
    cursor: pointer;
}

.cart-box h2 {
    margin-bottom: 20px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.cart-item img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
}

.cart-info {
    flex: 1;
}

.cart-info h4 {
    margin-bottom: 5px;
}

.cart-info p {
    margin: 2px 0;
    font-size: 0.95rem;
}

.remove-item {
    border: none;
    background: crimson;
    color: #fff;
    padding: 8px 14px;
    border-radius: 10px;
    cursor: pointer;
}

.cart-footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.finish-buy {
    border: none;
    background: #111;
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
}

.cart-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.remove-item,
.clear-cart,
.finish-buy {
    border: none;
    padding: 10px 16px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: .2s ease;
}

.remove-item {
    background: #e53935;
    color: white;
}

.remove-item:hover {
    transform: scale(1.05);
}

.clear-cart {
    background: #ececec;
    color: #222;
}

.clear-cart:hover {
    background: #ddd;
}

.finish-buy {
    background: #111;
    color: white;
}

.finish-buy:hover {
    transform: scale(1.05);
    background: var(--rosa);
}

.cart-box {
    width: min(520px, 92vw);
    max-height: 80vh;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 8px;
}

.cart-items::-webkit-scrollbar {
    width: 8px;
}

.cart-items::-webkit-scrollbar-track {
    background: transparent;
}

.cart-items::-webkit-scrollbar-thumb {
    background: #cfcfcf;
    border-radius: 20px;
}

.cart-items::-webkit-scrollbar-thumb:hover {
    background: #b5b5b5;
}
.cart-dropdown,
.cart-box {
    max-width: 100%;
    box-sizing: border-box;
}

.cart-item {
    min-width: 0;
}

.cart-info {
    min-width: 0;
    overflow-wrap: break-word;
}

@font-face {
    font-family: montserrat;
    src: url(fontes/Montserrat/Montserrat-VariableFont_wght.ttf);
}

:root {
    --rosa: #e36880;
    --laranja: #f2d88f;
    --creme: #efefe8;
    --bgads: #fff9d9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: montserrat;
    user-select: none;
    -webkit-user-drag: none;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #cfcfcf;
}

::-webkit-scrollbar-thumb {
    background: #e36880;
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(227, 104, 129, 0.842);
    background-clip: content-box;
}

html {
    scrollbar-width: thin;
    scrollbar-color: rgb(227, 104, 129) transparent;
}


.cart-box {
    width: min(520px, 92vw);
    max-height: 80vh;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 8px;
}

.cart-items::-webkit-scrollbar {
    width: 8px;
}

.cart-items::-webkit-scrollbar-track {
    background: transparent;
}

.cart-items::-webkit-scrollbar-thumb {
    background: #cfcfcf;
    border-radius: 20px;
}

.cart-items::-webkit-scrollbar-thumb:hover {
    background: #b5b5b5;
}
.cart-dropdown,
.cart-box {
    max-width: 100%;
    box-sizing: border-box;
}

.cart-item {
    min-width: 0;
}

.cart-info {
    min-width: 0;
    overflow-wrap: break-word;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.cart-item img {
    width: 105px;
    height: 105px;
    object-fit: cover;
    border-radius: 14px;
    background: #f5f5f5;
}

.cart-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
}

.cart-info p {
    font-size: .95rem;
    margin: 0;
    opacity: 0.85;
}

.cart-subtotal {
    margin-top: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: #111;
}

.cart-qty-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.cart-qty-minus,
.cart-qty-plus {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 10px;
    background: #ececec;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
}

.cart-qty-value {
    min-width: 22px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
}

.remove-item {
    border: none;
    background: #e53935;
    color: white;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-size: .9rem;
    font-weight: 600;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f8f3ed;
    background-image: url("imagens/bg-mobile.png");
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

@media (max-width: 768px) {
    body {
        background-image: url("imagens/bg-desktop.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }
}