/* Styles moved to style.css to avoid conflicts *//* Main Section Styling */
.verified-authors-section {
    padding: 30px 0;
    background: #f9fafb;
}

.verified-section-title {
    text-align: center;
    margin-bottom: 30px;
}

.verified-section-title h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

/* Card Styling */
.verified-author-card {
    background: #ffffff !important;
    border: 1px solid #eeeeee !important;
    border-radius: 12px !important;
    padding: 15px !important;
    text-align: center !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: none !important;
    margin-bottom: 20px !important;
}

/* Hover effects removed as requested */
.verified-author-card:hover,
.verified-author-card:focus,
.verified-author-card:active {
    border-color: #eeeeee !important;
    box-shadow: none !important;
    transform: none !important;
}

/* 1. Store Logo */
.store-logo-wrap {
    width: 64px !important;
    height: 64px !important;
    margin-bottom: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.store-logo-wrap a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

.store-logo {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    background: #f3f4f6 !important;
    border: 1px solid #f3f4f6 !important;
}

/* 2. Store Info */
.store-info {
    /* Removed flex-grow to keep things compact */
    margin-bottom: 12px !important;
    width: 100% !important;
}

.store-name h2 {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #374151 !important;
    margin: 0 0 8px !important;
    line-height: 1.4 !important;
}

.store-rating {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    color: #4b5563 !important;
}

.rating-value {
    font-size: 13px !important;
    font-weight: 700 !important;
}

.rating-count {
    font-size: 12px !important;
    color: #9ca3af !important;
}

    color: #9ca3af !important;
}

/* Star icon removed in PHP, but ensure no styling remains */
.store-rating i {
    display: none !important;
}

/* 3. Product Thumbnails */
.store-products-thumbs {
    display: flex !important;
    gap: 6px !important;
    justify-content: center !important;
    min-height: 40px !important;
}

.product-thumb {
    width: 40px !important;
    height: 40px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background: #f9fafb !important;
    border: 1px solid #f3f4f6 !important;
}

.product-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.product-thumb-placeholder {
    height: 40px !important;
}

/* Grid Adjustments for Mobile */
@media (max-width: 767px) {
    .verified-author-col {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    
    .verified-author-card {
        padding: 10px 5px !important;
        border-radius: 8px !important;
    }
    
    .store-logo-wrap {
        width: 44px !important;
        height: 44px !important;
        margin-bottom: 8px !important;
    }
    
    .store-logo {
        width: 44px !important;
        height: 44px !important;
    }
    
    .store-info {
        margin-bottom: 6px !important;
    }

    .store-name h2 {
        font-size: 13px !important;
        margin-bottom: 2px !important;
    }

    .rating-value {
        font-size: 11px !important;
    }

    .rating-count {
        font-size: 10px !important;
    }

    /* Thumbnails on mobile */
    .store-products-thumbs {
        min-height: 30px !important;
        gap: 4px !important;
    }

    .product-thumb {
        width: 30px !important;
        height: 30px !important;
        border-radius: 4px !important;
    }

    .product-thumb-placeholder {
        height: 30px !important;
    }
}
