.quick-view-btn {
    opacity: 1 !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    background: transparent !important;
    border-radius: 0 !important;
}

header[style*="text-align: center"] {
    background: var(--box-surface);
    color: inherit;
    padding: 3rem 1.5rem;
    border-bottom: 5px solid var(--box-brand);
    border-radius: var(--box-radius-sm);
    box-shadow: none;
    margin-bottom: 3rem !important;
}
@media (max-width: 480px) {
    .tienda-banner {
        margin-bottom: 1rem !important;
        border-radius: 0 !important;
    }
    .tienda-banner img {
        height: 200px !important;
    }

    .store-info {
        margin-bottom: 1.5rem !important;
        padding: 0 10px !important;
    }
    .store-desc {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }
    .contact-data {
        gap: 0.5rem 1rem !important;
        font-size: 0.85rem !important;
    }

    .search-container {
        margin-bottom: 1.5rem !important;
        padding: 0 10px !important;
    }
    .search-container form {
        gap: 5px !important;
    }
    .search-container input[type="search"] {
        font-size: 0.9rem !important;
        height: 42px !important;
        padding-left: 2.2rem !important;
        border: 1px solid var(--box-border) !important;
        -webkit-appearance: none !important;
        border-radius: 8px !important;
    }
    .search-container .fa-search {
        left: 0.8rem !important;
        z-index: 2;
    }
    .search-container button {
        height: 42px !important;
        padding: 0 1rem !important;
        font-size: 0.9rem !important;
        background-color: var(--box-brand) !important;
        border: none !important;
    }

    
    .handshake-badge {
        width: 26px !important;
        height: 26px !important;
        bottom: 8px !important;
        right: 8px !important;
        border-radius: 6px !important;
        background: #27ae60 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: absolute !important;
        z-index: 5 !important;
        top: auto !important;
        left: auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .handshake-badge i {
        font-size: 0.8rem !important;
        color: white !important;
    }

    .tags-cloud-container {
        margin-top: 2rem !important;
        padding: 1.5rem 10px !important;
    }
}

/* El badge de handshake lo hacemos más pequeño para que no estorbe */
.handshake-badge {
    position: absolute !important;
    bottom: 8px !important;
    right: 8px !important;
    background: #27ae60 !important;
    width: 28px !important;
    height: 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 6px !important;
    box-shadow: 0 2px 6px rgba(39, 174, 96, 0.3) !important;
    z-index: 10 !important;
    top: auto !important;
    left: auto !important;
}

.handshake-badge i {
    color: #ffffff !important;
    font-size: 0.9rem !important;
}

.add-to-cart {
    white-space: nowrap !important;
    font-size: 0.9rem !important;
    padding: 0.6rem 0.5rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin: 0;
}

/* Ocultar icono nativo de búsqueda */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

/* Ensure no background image (like from Pico CSS) shows up */
input[type="search"] {
    background-image: none !important;
}

[data-tooltip][data-placement=left]:hover::after {
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background-color: transparent; /* Transparent background */
}

::-webkit-scrollbar-track {
    background-color: transparent; /* Transparent track */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--box-brand); /* Theme color */
    border-radius: 10px;
    border: 3px solid transparent; /* Creates space around thumb */
    background-clip: content-box; /* Makes thumb smaller inside border */
    opacity: 0.8;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--box-brand);
    opacity: 1;
    border-width: 2px; /* Slightly larger on hover */
}
