/* Card layout - vertical with large centered logo */
.shop-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 16px !important;
    padding: 16px !important;
    box-sizing: border-box !important;
}

.shop-logo {
    width: 100% !important;
    max-width: 350px !important;
    position: relative !important;
    padding-bottom: 100% !important; /* Square aspect ratio */
    max-height: 350px !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
    flex-shrink: 0 !important;
}

.shop-logo img,
.shop-logo video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.no-logo {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 5rem !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary)) !important;
    color: white !important;
}

.shop-info {
    width: 100% !important;
}

.shop-name {
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
}

.shop-rating {
    justify-content: center !important;
    margin-bottom: 0 !important;
}

.shop-actions {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    margin-top: auto !important;
    width: 100% !important;
    justify-content: center !important;
}

/* Responsive for tablets */
@media (max-width: 1400px) {
    .shop-logo {
        max-width: 280px !important;
        max-height: 280px !important;
    }
}

@media (max-width: 1100px) {
    .shop-logo {
        max-width: 220px !important;
        max-height: 220px !important;
    }
}

/* Mobile - 2 columns */
@media (max-width: 900px) {
    .shop-logo {
        max-width: 180px !important;
        max-height: 180px !important;
    }
    .shop-name {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 600px) {
    .shop-logo {
        max-width: 140px !important;
        max-height: 140px !important;
        border-radius: 16px !important;
    }
    .shop-card {
        padding: 10px !important;
        gap: 8px !important;
    }
    .shop-name {
        font-size: 1rem !important;
    }
    .no-logo {
        font-size: 2.5rem !important;
    }
}
