/* ========================================
   CRAZY FANTASY - VERSÃO PREMIUM 2026
   ======================================== */

:root { 
    --bg: #050505; 
    --card-bg: #0d0d0d;
    --neon: #00ffff; 
    --magenta: #ff0055; 
    --whatsapp: #25d366;
    --text-gray: #b3b3b3;
}

body { 
    background: var(--bg); 
    color: #fff; 
    font-family: 'Inter', sans-serif; 
    margin: 0; 
    overflow-x: hidden; 
}

.container { 
    max-width: 1200px; 
    margin: auto; 
    padding: 0 20px; 
}

/* HERO */
.hero-banner img { 
    width: 100%; 
    display: block; 
}

/* VIBES */
.vibe-section h2 { 
    text-align: center; 
    font-size: 1.2rem; 
    margin-top: 30px; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
}

.vibe-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    gap: 15px; 
    margin: 20px 0; 
}

.vibe-btn { 
    background: #111; 
    border: 1px solid #333; 
    padding: 15px; 
    border-radius: 10px; 
    cursor: pointer; 
    transition: 0.3s; 
    color: #fff; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 5px; 
}

.vibe-btn.active { 
    border-color: var(--magenta); 
    box-shadow: 0 0 15px var(--magenta); 
}

/* SEARCH */
.search-filter {
    display: flex;
    align-items: center;
    background: #0d0d0d;
    border-radius: 50px;
    padding: 10px 20px;
    gap: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    margin: 20px 0;
    flex-wrap: wrap;
}

.search-input { 
    display: flex; 
    align-items: center; 
    flex: 2; 
    gap: 10px; 
    min-width: 200px; 
}

.search-input input { 
    background: transparent; 
    border: none; 
    outline: none; 
    color: white; 
    width: 100%; 
}

.divider { 
    width: 1px; 
    height: 24px; 
    background: rgba(255,255,255,0.1); 
}

/* FILTERS */
.filters { 
    display: flex; 
    gap: 10px; 
    flex: 3; 
    justify-content: flex-end; 
}

.custom-select { 
    position: relative; 
    min-width: 110px; 
}

.selected { 
    background: #111; 
    border: 1px solid #333; 
    border-radius: 25px; 
    padding: 8px 15px; 
    cursor: pointer; 
    color: #fff; 
    font-size: 13px; 
    text-align: center; 
}

.options { 
    position: absolute; 
    top: 120%; 
    left: 0; 
    width: 100%; 
    background: #0d0d0d; 
    border: 1px solid #222; 
    border-radius: 12px; 
    display: none; 
    z-index: 100; 
}

.custom-select.open .options { display: block; }

.options div { 
    padding: 10px; 
    cursor: pointer; 
    font-size: 13px; 
    border-bottom: 1px solid #111; 
}

.options div:hover { 
    background: var(--magenta); 
}

/* COLLECTIONS */
.collections-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 15px; 
    margin-bottom: 40px; 
}

.col-item img { 
    width: 100%; 
    border-radius: 15px; 
    cursor: pointer; 
    transition: 0.3s; 
    border: 2px solid transparent; 
}

.col-item:hover img { 
    border-color: var(--neon); 
    transform: scale(1.03); 
}

/* PRODUCT GRID */
.product-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); 
    gap: 25px; 
    padding: 20px 0; 
}

/* CARD */
.card {
    background: var(--card-bg);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
    cursor: pointer;
    position: relative;
}

.card:hover {
    transform: translateY(-6px);
    border-color: var(--magenta);
    box-shadow: 0 15px 30px rgba(255,0,85,0.15);
}

.card-img-container {
    width: 100%;
    aspect-ratio: 3/4;
    background: #000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-img-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.card-content {
    padding: 14px;
}

.card-price {
    color: var(--magenta);
    font-weight: bold;
}

/* MODAL */
.modal { 
    position: fixed; 
    inset: 0; 
    background: rgba(0,0,0,0.9); 
    z-index: 1000; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 20px; 
}

.modal-content { 
    background: #0a0a0a; 
    padding: 30px; 
    border-radius: 20px; 
    max-width: 800px; 
    width: 100%; 
    position: relative; 
    border: 1px solid #222; 
}

.modal-layout { 
    display: flex; 
    gap: 30px; 
    flex-wrap: wrap; 
}

.modal-left img { 
    width: 100%; 
    max-width: 300px; 
    border-radius: 12px; 
}

.modal-right { 
    flex: 1; 
    min-width: 250px; 
}

.hidden { 
    display: none !important; 
}

/* 🔥 ACESSÓRIOS PREMIUM */
.acc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 10px;
    transition: 0.2s;
    cursor: pointer;
}

.acc-item:hover {
    background: rgba(255,255,255,0.04);
}

.acc-item img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 8px;
}

.acc-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.acc-preco {
    color: var(--magenta);
    font-size: 12px;
}

/* BOTÃO */
.btn-whatsapp-neon { 
    background: var(--whatsapp); 
    color: #fff; 
    padding: 15px; 
    border-radius: 50px; 
    font-weight: bold; 
    border: none; 
    cursor: pointer; 
    width: 100%; 
    margin-top: 20px; 
    box-shadow: 0 0 15px rgba(37,211,102,0.4); 
    transition: 0.2s;
}

.btn-whatsapp-neon:hover {
    transform: scale(1.03);
}

/* PREÇO MODAL */
.new-price {
    font-size: 28px;
    color: var(--neon);
    font-weight: bold;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .modal-layout { flex-direction: column; }
}







/* FOOTER PREMIUM */
.main-footer {
    background: #070707;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 40px;
}

.footer-top {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 30px 0;
}

.footer-col h4 {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-col p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-col a {
    color: var(--neon);
    text-decoration: none;
    font-weight: bold;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    font-size: 12px;
    color: #888;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}






/* ========================================
   MOBILE FIXES - CRAZY FANTASY
   ======================================== */

@media (max-width: 768px) {

    /* 🔎 SEARCH + FILTER */
    .search-filter {
        flex-direction: column;
        align-items: stretch;
        border-radius: 15px;
        padding: 12px;
        gap: 10px;
    }

    .search-input {
        width: 100%;
    }

    .filters {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 8px;
    }

    .custom-select {
        flex: 1;
        min-width: 30%;
    }

    /* 🧍 CARDS */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .card-content h3 {
        font-size: 13px;
    }

    .card-price {
        font-size: 13px;
    }

    /* 🪟 MODAL */
    .modal {
        padding: 10px;
    }

    .modal-content {
        padding: 20px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-layout {
        flex-direction: column;
        gap: 20px;
    }

    .modal-left img {
        max-width: 100%;
    }

    /* 🔥 BOTÃO NÃO SUMIR */
    .btn-whatsapp-neon {
        position: sticky;
        bottom: 10px;
    }

    /* 🦶 FOOTER */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        margin-bottom: 10px;
    }

    .footer-top {
        flex-direction: column;
        gap: 10px;
    }
}




.card-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 11px;
    opacity: 0;
    transition: 0.2s;
}

.card-overlay {
    backdrop-filter: blur(4px);
}


.card:hover .card-overlay {
    opacity: 1;
}

/* 🔥 MOBILE: sempre visível */
@media (max-width: 768px) {
    .card-overlay {
        opacity: 1;
    }
}
