/* Estilos para a Listagem de Lojas Premium */

.premium-store-grid {
    padding: 10px 0;
}

.premium-store-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    border: none;
    display: flex;
    flex-direction: column;
}

.premium-store-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.card-banner-wrapper {
    height: 180px;
    position: relative;
    background: linear-gradient(135deg, #6b2278 0%, #37a5d4 100%);
    overflow: hidden;
}

.card-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.5s ease;
}

.premium-store-card:hover .card-banner-img {
    transform: scale(1.1);
}

.card-logo-container {
    width: 140px;
    height: 140px;
    margin: -70px auto 10px;
    position: relative;
    z-index: 2;
    border: 6px solid #fff;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.card-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0;
}

.card-info {
    padding: 5px 15px 20px;
    flex-grow: 1;
}

.store-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #250f55;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.store-meta {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 0.85rem;
    color: #6c757d;
}

.store-meta i {
    color: #37a5d4;
    margin-right: 4px;
}

/* Badges */
.status-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 5;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.status-badge.opened {
    background: #28a745;
    color: #fff;
}

.status-badge.closed {
    background: #dc3545;
    color: #fff;
}

.sponsored-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #6b2278;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 800;
    z-index: 5;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 3px;
}

.trending-badge {
    background: #FFD700;
    color: #250f55;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    margin-top: 8px;
    display: inline-block;
}

/* Fix text color for links */
a:hover {
    text-decoration: none;
}
