body {
    margin: 0;
    padding: 0;
}

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

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

:root {
    --rosa: #e36880;
    --laranja: #f2d88f;
    --creme: #efefe8;
    --bgads: #fff9d9;
    --gap: 12px;
    --radius: 20px;
}

.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;
    flex-direction: row;
}

.navbar {
    background-color: var(--laranja);
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: row;
}

.nav-logo {
    height: 100%;
    width: 100px;
    cursor: pointer;
    background-image: url(imagens/lumi_complete_logo.png);
    background-size: 80px 80px;
    background-repeat: no-repeat;
    background-position: center;

}

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

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

    .navbar {
        height: 60px;
    }

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

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

    .burger {
        scale: 0.9;
    }

    .banner {
        position: relative;
        top: -50px;
    }

    .search-icon {
        scale: 1.2;
    }

    .bento-section {
        top: -50px;
        position: relative;
    }

    .products {
        top: -50px;
        position: relative;
    }

    .product-left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        text-align: center;
        margin: 0 auto;
        left: auto;
        transform: none;
        position: static;
    }

    .product-left h2,
    .product-left span {
        width: 100%;
        text-align: center;
    }

    .product-actions {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: 100%;
        position: relative;
    }

    .dropdown {
        top: calc(100% + 10px);
        left: 50% !important;
        transform: translateX(-50%);
        width: min(220px, 90vw);
    }
}

.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;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.burger span:nth-of-type(1) {
    top: 0px;
    transform-origin: left center;
}

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

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

.input-container {
    position: relative;
    margin: 50px auto;
    width: 200px;
    padding-left: 50px;
}

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

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

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

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

.input-container .underline {
    position: absolute;
    bottom: 0;
    left: 50px;
    height: 2px;
    width: calc(100% - 50px);
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.3s ease;
}

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

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

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

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

.search {
    background: transparent;
    border-bottom: 3px solid white;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
    font-size: 1rem;
}

.main-content {
    position: relative;
    background-color: var(--creme);
    top: 110px;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: clamp(320px, 42vw, 620px);
    overflow: hidden;
    background: #f5f5f5;
}

.banner-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .55s ease-in-out;
    will-change: transform;
}

.banner-slide {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.slide1 img {
    object-position: center 50%;
}

.slide2 img {
    object-position: center 50%;
}

.slide4 img {
    object-position: center 50%;
}

.slide3 img {
    object-position: center 55%;
}

.banner-arrow {
    outline: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: .25s ease;
}

.banner-arrow.prev {
    left: 16px;
}

.banner-arrow.next {
    right: 16px;
}

.banner-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    cursor: pointer;
    transition: .25s ease;
}

.banner-dot.active {
    background: white;
    transform: scale(1.15);
}

.banner-dot:hover {
    background: white;
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .banner-slider {
        height: 260px;
    }

    .banner-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.6rem;
    }

    .banner-dot {
        width: 10px;
        height: 10px;
    }
}

.nav-line {
    width: 90px;
    height: 5px;
    background: rgba(255, 255, 255, .3);
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: .5s;
}

.nav-line:hover {
    background-color: white;
    transition: .5s;
}

.nav-line::after {
    content: "";
    display: block;
    width: 0%;
    height: 100%;
    background: white;
}

.nav-line.active::after {
    animation: fillBar 5s linear forwards;
}

@keyframes fillBar {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.ads {
    height: 100vh;
    width: 100%;
    background-color: var(--bgads);
}

body {
    background-color: #f5f5f5;
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

.bento-section {
    display: grid;
    width: 100%;
    max-width: 100vw;
    min-height: 80vh;
    padding: 15px;
    gap: 15px;
    background-color: var(--bgads);
    grid-template-columns: 1.75fr 1fr 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    grid-template-areas:
        "pink beach beach yellow"
        "pink flower green green";
}

.card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    background-size: cover;
    background-position: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.288);
}

.card-pink {
    grid-area: pink;
    background-color: #ff4a9e;
}

.card-beach {
    grid-area: beach;
    background-color: #2a52be;
}

.card-yellow {
    grid-area: yellow;
    background-color: #f4b400;
}

.card-flower {
    grid-area: flower;
    background-color: #ff85be;
}

.card-green {
    grid-area: green;
    background-color: #4f8f2b;
}

.card .content h2 {
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.card .content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

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

    .bento-section {
        grid-template-columns: 2fr 2fr;
        grid-template-rows: auto;
        grid-template-areas:
            "beach beach"
            "pink yellow"
            "pink flower"
            "green green";
    }

    .card {
        min-height: 250px;
    }

}

@media (max-width:1024px) and (min-width: 768px ){
    .bento-section {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        grid-template-rows: repeat(2, 2fr);
        grid-template-areas: 
        "pink beach beach yellow"
        "pink flower green green"
        ;
    }
}

.card2 {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.card2:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.card2:hover .box {
    transform: none;
}

.card2:hover img {
    transform: translateY(-120px) scale(1.015);
}

.card2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.card2 .box {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 120px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 8px;
    background: linear-gradient(to top, rgba(255, 255, 255, .96), rgba(255, 255, 255, .82), transparent);
    z-index: 2;
    transform: none;
    transition: none;
}

.products {
    width: 100%;
    background: var(--creme);
    align-items: center;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-bottom: .5px solid;
}

.product-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    padding: 20px;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    margin-left: 30px;
    margin-right: 30px;
    height: 120px;
    width: 100%;
    background-color: var(--creme);
    border-bottom: .5px solid;
}

.product-left {
    display: flex;
    flex-direction: column;
}

.product-actions button {
    padding: 8px 14px;
    border: 1px solid #ccc;
    background: white;
    cursor: pointer;
    font-size: 14px;
}

.social-icons a {
    background-color: var(--laranja);
}

#btnFilter {
    background-color: var(--creme);
    width: 150px;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
    gap: 20px;
    border: .5px solid;
}

#btnOrganize {
    background-color: var(--creme);
    width: 150px;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
    gap: 20px;
    border: .5px solid;
}

.organizeicon {
    height: 20px;
}

.filtericon {
    height: 20px;
}

.dropdown button {
    padding: 10px 15px;
    border: none;
    background: white;
    cursor: pointer;
    text-align: left;
}

.dropdown button:hover {
    background: #f2f2f2;
}

.card2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box {
    padding: 15px;
}

.box h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f1f1f;
    line-height: 1.35;
    margin-bottom: 8px;
}

.box p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--rosa);
    opacity: 1;
    margin-bottom: 12px;
}


#categories-title {
    font-size: 14px;
    opacity: .7;
}

.product-actions button {
    padding: 8px 14px;
    border: 1px solid #ccc;
    background: white;
    cursor: pointer;
}

.dropdown button {
    padding: 10px;
    border: none;
    background: white;
    cursor: pointer;
    text-align: left;
}

.dropdown button:hover {
    background: #f2f2f2;
}


.card2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card2 {
    min-width: 250px;
    min-height: 500px;
}

.main-footer {
    background-color: var(--creme);
    padding: 200px 20px 20px;
    color: #333;
    font-family: 'Segoe UI', sans-serif;
    border-top: 5px solid var(--laranja);

}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    color: var(--rosa);
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--rosa);
}

.footer-logo {
    width: 100px;
    height: 100px;
    background-image: url('imagens/lumi_complete_logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 15px;
}

.logo-column {
    top: -30px;
    position: relative;
}

#coming-soon {
    display: flex;
    flex-direction: column;
    font-weight: 400;
    color: #555;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.icon-ig {
    height: 50px;
    width: 50px;
    background-image: url(imagens/insta-removebg-preview.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #777;
}

@media (max-width: 992px) {
    .footer-column {
        flex: 1 1 40%;
    }
}

@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        min-width: 100%;
    }

    .footer-logo {
        margin: 0 auto 15px;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
}

.modal-overlay.active {
    display: flex;
}

.popup-content {
    background: var(--creme);
    width: 80%;
    height: 60%;
    max-width: 900px;
    border-radius: 20px;
    padding: 20px;
    position: relative;
}

.popup-body {
    display: flex;
    gap: 20px;
    height: 100%;
    align-items: stretch;
}

.popup-left {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.popup-img {
    width: 100%;
    border-radius: 15px;
}

.img-arrow.left {
    left: 10px;
}

.img-arrow.right {
    right: 10px;
}

.popup-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.sizes .active {
    background-color: var(--rosa);
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
}

.sizes button {
    margin-right: 5px;
}

.sizes button {
    border: none;
    cursor: pointer;
    height: 30px;
    width: 30px;
    text-transform: uppercase;
    transition: .5s;
    background-color: var(--laranja);
}

.sizes button:hover {
    scale: 0.9;
    transition: .2s;
}



.buy {
    border: none;
    background: black;
    color: white;
    padding: 10px;
    cursor: pointer;
}

.cart-add {
    padding: 10px;
    border: 1px solid;
    cursor: pointer;
}

@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);
    }
}

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

.close-popup {
    height: 30px;
    width: 30px;
    background-color: transparent;
    border: none;
    position: absolute;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
}

.sizes button:disabled {
    opacity: 0.4;
    cursor: default;
}

.sizes button:disabled:hover {
    scale: 1;
}

.cart-add:disabled {
    background-color: #4caf50;
    color: white;
    cursor: default;
}

.social-icons a {
    transition: .5s;
}

.popup-img {
    width: 100%;
    opacity: 1;
    height: 100%;
    object-fit: cover;
    transition: opacity .25s ease;
}

.popup-img.fade {
    opacity: 0.1;
}

.img-arrow {
    cursor: pointer;
    transition: transform .1s ease;
}

.quantity {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

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

.qty-box button {
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    border: 1px solid;
    transition: .1s;
}

.qty-box button:active {
    background-color: black;
    color: white;
    transition: .1s;
}

.qty-value {
    min-width: 20px;
    text-align: center;
    font-weight: bold;
}

.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;
}

.banner-left,
.banner-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 10;
}

.banner-left {
    left: 10px;
}

.banner-right {
    right: 10px;
}

.product-actions {
    display: flex;
    gap: 10px;
    position: relative;
}

.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    background: white;
    border: 1px solid #ccc;
    display: none;
    flex-direction: column;
    z-index: 3;
    min-width: 160px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    position: absolute;
    right: 20px;
    top: 80px;
}

#dropFilter {
    left: 0;
}

#dropOrganize {
    left: 170px;
}

.dropdown button {
    padding: 10px;
    border: none;
    background: white;
    cursor: pointer;
    text-align: left;
    width: 100%;
}

.dropdown button:hover {
    background: #f2f2f2;
}

@media (max-width: 768px) {
    .product-actions {
        width: 100%;
        justify-content: center;
        position: static;
    }

    .dropdown {
        position: absolute;
        top: calc(100% + 10px);
        left: 50% !important;
        transform: translateX(-50%);
        width: min(220px, 90vw);
    }
}

@media (max-width: 768px) {
    .card2 {
        display: flex;
        flex-direction: column;
        height: auto;
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .card2 img {
        width: 100%;
        height: auto;
        display: block;
        transform: none !important;
    }

    .box {
        position: static;
        transform: none !important;
        opacity: 1 !important;
        height: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 16px;
        background: white;
    }

    .box h3 {
        font-size: 1rem;
        font-weight: 700;
        color: #222;
        margin-bottom: 6px;
    }

    .box p {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--rosa);
        opacity: 1;
    }
}

.card-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.size-chip {
    min-width: 30px;
    height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #222;
    cursor: pointer;
    text-transform: uppercase;
    transition: .5s;
    background-color: var(--laranja);
}

.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);
}

body {
    margin: 0;
    padding: 0;
    background: #f8f8f8;
    font-family: Arial, sans-serif;
    color: #111;
}

* {
    box-sizing: border-box;
}

.produto-page {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.produto-img-box {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.img-slider {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.img-track {
    display: flex;
    width: 100%;
    height: 100%;
}

.img-track img {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}

.img-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: black;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
    transition: 0.2s;
}

.img-arrow:hover {
    color: #e36880;
}

.img-left {
    left: 15px;
}

.img-right {
    right: 15px;
}

#produto-nome {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

#produto-preco {
    font-size: 1.6rem;
    font-weight: bold;
    color: #e36880;
    margin: 0;
}

#tamanho {
    width: 120px;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    outline: none;
    cursor: pointer;
}

#buy,
#cart {
    width: 100%;
    max-width: 320px;
    padding: 15px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s;
}

#buy {
    background: #111;
    color: #fff;
}

#buy:hover {
    background: #000;
}

#cart {
    background: #e36880;
    color: #fff;
}

#cart:hover {
    background: #cc5870;
}

.produto-page {
    padding: 15px;
}

.img-slider {
    height: 400px;
}

#produto-nome {
    font-size: 1.6rem;
}

#produto-preco {
    font-size: 1.3rem;
}

#buy,
#cart {
    max-width: 100%;
}

::-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 {
    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;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    align-items: start;
    padding: 0 14px;
}

.card2 {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
}

.card2:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .08);
}

.img-box {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #f7f7f7;
    position: relative;
    flex-shrink: 0;
}

.img-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 52%;
    transform: scale(1.04) translateY(10px);
    transition: transform .35s ease;
}

.card2:hover .img-box img {
    transform: scale(1.08) translateY(10px);
}

@media (min-width: 1401px) {
    .card2:first-child .img-box img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        transform: scale(1.5) translateY(18px);
    }

    .card2:first-child:hover .img-box img {
        transform: scale(1.58) translateY(18px);
    }
}

.box {
    min-height: 230px;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
}

.box h3 {
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    color: #111;
    margin: 0 0 10px 0;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f06b81;
    margin: 0 0 14px 0;
}

.card-sizes {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.size-chip {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e8c86b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 600;
    color: #222;
    flex-shrink: 0;
}

.card-btn {
    width: 100%;
    height: 42px;
    border: none;
    border-radius: 12px;
    background: #111;
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: .25s ease;
    margin-top: auto;
}

.card-btn:hover {
    transform: scale(.98);
    background: var(--rosa);
}

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

.login-icon {
    width: 24px;
    height: 24px;
    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);
}

@media (max-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .box {
        min-height: 210px;
        padding: 14px 12px;
    }

    .box h3 {
        font-size: .95rem;
        margin-bottom: 8px;
    }

    .price {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .card-sizes {
        margin-bottom: 14px;
    }

    .size-chip {
        width: 28px;
        height: 28px;
        font-size: .75rem;
    }

    .card-btn {
        height: 38px;
        font-size: .85rem;
    }
}

@media (max-width: 520px) {
    .box {
        min-height: 195px;
        padding: 12px 10px;
    }

    .box h3 {
        font-size: .9rem;
    }

    .price {
        font-size: 1rem;
    }
}


.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;
}

.card2 .box {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 92px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 5px;
    background: linear-gradient(to top, rgba(255, 255, 255, .96), rgba(255, 255, 255, .82), transparent);
    z-index: 2;
    transform: none;
    transition: none;
}

.card2 .box h3 {
    font-size: .95rem;
    line-height: 1.1;
    margin: 0;
}

.card2 .price {
    font-size: .9rem;
    margin: 0;
}

.card2 .card-sizes {
    gap: 5px;
    margin-top: 2px;
}

.card2 .size-chip {
    font-size: .72rem;
    padding: 4px 8px;
}

.card2 .card-btn {
    margin-top: 4px;
    padding: 8px 12px;
    font-size: .78rem;
}

.card-beach {
    background-image: url(imagens/slide\ 5.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 10%;
}

.card-green {
    background-image: url(imagens/1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.card-pink {
    background-image: url(imagens/bent.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.card-yellow {
    background-color: var(--laranja);
    background-image: url(imagens/lumi_logo.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.card-flower {
    background-image: url(imagens/5.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.top-ad a {
    color: white;
}