/* ===== ABD BUSINESS LISTING STYLES ===== */

/* Container */
.abd-listing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ===== HEADER SECTION ===== */
.abd-listing-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.abd-listing-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.abd-listing-header-content {
    position: relative;
    z-index: 2;
}

.abd-listing-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.abd-listing-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

/* ===== FILTERS SECTION ===== */
.abd-filters {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.abd-filters-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr auto;
    gap: 20px;
    align-items: end;
}

.abd-filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.abd-filter-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.abd-search-input,
.abd-search-select {
    appearance: none;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: #495057;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
}

.abd-search-select {
    padding-right: 40px;
}

.abd-search-input {
    background-image: none;
}

.abd-search-input:focus,
.abd-search-select:focus {
    outline: none;
    border-color: #667eea;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.abd-search-input:hover,
.abd-search-select:hover {
    border-color: #dee2e6;
    background-color: white;
}

.abd-filter-actions {
    display: flex;
    gap: 10px;
}

.abd-search-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
}

.abd-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.abd-clear-btn {
    background: #f8f9fa;
    color: #6c757d;
    border: 2px solid #e9ecef;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
}

.abd-clear-btn:hover {
    background: #e9ecef;
    color: #495057;
}

/* ===== RESULTS INFO & VIEW TOGGLE ===== */
.abd-results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 0;
    border-bottom: 2px solid #f8f9fa;
}

.abd-results-count {
    font-size: 1.1rem;
    color: #6c757d;
}

.abd-results-count strong {
    color: #2c3e50;
    font-weight: 700;
}

.abd-view-toggle {
    display: flex;
    gap: 8px;
}

.abd-view-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    color: #6c757d;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.abd-view-btn.active,
.abd-view-btn:hover {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

/* ===== BUSINESS GRID ===== */
.abd-business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.abd-business-grid.list-view {
    grid-template-columns: 1fr;
}

/* ===== BUSINESS CARD ===== */
.abd-business-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.abd-business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.15);
}

/* LIST VIEW */
.abd-business-card.list-view {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 20px;
    flex-direction: initial;
}

/* ===== BUSINESS IMAGE ===== */
.abd-business-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    flex-shrink: 0;
}

.abd-business-card.list-view .abd-business-image {
   width: 100px;
   height: 100px;
   border-radius: 12px;
   flex-shrink: 0;
}

.abd-business-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.3s ease;
}

.abd-business-card:hover .abd-business-image img {
   transform: scale(1.05);
}

.abd-business-image .no-image {
   display: flex;
   align-items: center;
   justify-content: center;
   color: #adb5bd;
   font-size: 48px;
   width: 100%;
   height: 100%;
}

.abd-business-card.list-view .abd-business-image .no-image {
   font-size: 32px;
}

/* ===== STATUS BADGES ===== */
/* ===== FEATURED STAR BADGE - TOP LEFT ===== */
.abd-featured-star {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.abd-featured-star .dashicons {
    color: white;
    font-size: 16px;
    line-height: 1;
}

.abd-featured-star:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Hide in list view if you want */
.abd-business-card.list-view .abd-featured-star {
    display: none;
}

/* Optional: Add subtle glow to featured business cards */
.abd-business-card:has(.abd-featured-star) {
    position: relative;
}

.abd-business-card:has(.abd-featured-star):hover {
    box-shadow: 0 16px 50px rgba(102, 126, 234, 0.08), 0 0 0 1px rgba(102, 126, 234, 0.1);
}






.abd-status-badge-image {
   position: absolute;
   top: 12px;
   right: 12px;
   color: white;
   padding: 6px 12px;
   border-radius: 20px;
   font-size: 0.75rem;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   display: flex;
   align-items: center;
   gap: 4px;
   z-index: 2;
   backdrop-filter: blur(10px);
}

.abd-status-badge-image.verified {
   background: linear-gradient(135deg, #ffd700, #ffb347);
   box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
   border: 2px solid rgba(255, 255, 255, 0.3);
}

.abd-business-card.list-view .abd-status-badge-image {
   display: none;
}

/* Verified Business Enhancement */
.abd-business-card.verified {
   border: 2px solid rgba(255, 215, 0, 0.2);
   position: relative;
}

.abd-business-card.verified::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 4px;
   /*background: linear-gradient(90deg, #ffd700, #ffb347, #ffd700);*/
   border-radius: 16px 16px 0 0;
   z-index: 1;
}

.abd-business-card.verified:hover {
   box-shadow: 0 16px 50px rgba(255, 215, 0, 0.1), 0 0 0 1px rgba(255, 215, 0, 0.2);
}

/* ===== BUSINESS CONTENT ===== */
.abd-business-content {
   padding: 25px;
   display: flex;
   flex-direction: column;
   flex: 1;
}

.abd-business-card.list-view .abd-business-content {
   padding: 0;
   flex: 1;
   display: block;
}

/* ===== CONTENT ROWS ===== */
.abd-business-title-row {
   margin-bottom: 15px;
}

.abd-business-meta-row {
   margin-bottom: 15px;
   min-height: 32px;
}

.abd-business-description-row {
   margin-bottom: 15px;
   flex: 1;
}

.abd-business-contact-row {
   margin-bottom: 20px;
}

.abd-business-actions-row {
   margin-top: auto;
}

/* LIST VIEW - Adjust row spacing */
.abd-business-card.list-view .abd-business-title-row,
.abd-business-card.list-view .abd-business-meta-row,
.abd-business-card.list-view .abd-business-description-row,
.abd-business-card.list-view .abd-business-contact-row,
.abd-business-card.list-view .abd-business-actions-row {
   margin-bottom: 10px;
   margin-top: 0;
   flex: initial;
}

.abd-business-card.list-view .abd-business-actions-row {
   margin-bottom: 0;
}

/* ===== BUSINESS TITLE ===== */
.abd-business-title {
   font-size: 1.4rem;
   font-weight: 700;
   color: #2c3e50;
   margin: 0;
   line-height: 1.3;
   overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
}

.abd-business-title a {
   color: inherit;
   text-decoration: none;
   transition: color 0.3s ease;
}

.abd-business-title a:hover {
   color: #667eea;
}

/* ===== META TAGS ===== */
.abd-business-meta {
   display: flex;
   gap: 8px;
   margin: 12px 0 15px 0;
   flex-wrap: wrap;
   align-items: center;
}

.abd-business-card.list-view .abd-business-meta {
   margin: 12px 0;
}

.abd-meta-tag {
   background: linear-gradient(135deg, #f8f9ff, #e8f0ff);
   color: #667eea;
   padding: 6px 12px;
   border-radius: 20px;
   font-size: 0.75rem;
   font-weight: 600;
   display: flex;
   align-items: center;
   gap: 5px;
   white-space: nowrap;
   flex-shrink: 0;
   border: 1px solid rgba(102, 126, 234, 0.15);
   transition: all 0.3s ease;
   margin-bottom: 5px;
}

.abd-meta-tag:hover {
   transform: translateY(-1px);
   box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.abd-meta-tag .dashicons {
   font-size: 12px;
}

.abd-meta-tag .abd-count,
.abd-meta-tag .abd-rating {
   font-weight: 700;
   font-size: 0.9em;
}

/* ===== MODULE-SPECIFIC META TAGS ===== */

/* Category */
.abd-meta-tag.abd-category {
   background: linear-gradient(135deg, #e3f2fd, #bbdefb);
   color: #1976d2;
   border: 1px solid rgba(33, 150, 243, 0.2);
}

.abd-meta-tag.abd-category:hover {
   background: linear-gradient(135deg, #bbdefb, #90caf9);
}

/* Location */
.abd-meta-tag.abd-location {
   background: linear-gradient(135deg, #f3e5f5, #e1bee7);
   color: #7b1fa2;
   border: 1px solid rgba(156, 39, 176, 0.2);
}

.abd-meta-tag.abd-location:hover {
   background: linear-gradient(135deg, #e1bee7, #ce93d8);
}

/* Opening Hours */
.abd-meta-tag.abd-opening-hours {
   background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
   color: #2e7d32;
   border: 1px solid rgba(76, 175, 80, 0.2);
}

.abd-meta-tag.abd-opening-hours:hover {
   background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
}

/* Maps */
.abd-meta-tag.abd-maps {
   background: linear-gradient(135deg, #e8f4fd, #cce7ff);
   color: #0277bd;
   border: 1px solid rgba(2, 119, 189, 0.2);
}

.abd-meta-tag.abd-maps:hover {
   background: linear-gradient(135deg, #cce7ff, #b3daff);
}

/* Gallery */
.abd-meta-tag.abd-gallery {
   background: linear-gradient(135deg, #fff3e0, #ffe0b2);
   color: #ef6c00;
   border: 1px solid rgba(255, 152, 0, 0.2);
}

.abd-meta-tag.abd-gallery:hover {
   background: linear-gradient(135deg, #ffe0b2, #ffcc80);
}

/* Website */
.abd-meta-tag.abd-website {
   background: linear-gradient(135deg, #fce4ec, #f8bbd9);
   color: #c2185b;
   border: 1px solid rgba(233, 30, 99, 0.2);
}

.abd-meta-tag.abd-website:hover {
   background: linear-gradient(135deg, #f8bbd9, #f48fb1);
}

/* Contact */
.abd-meta-tag.abd-contact {
   background: linear-gradient(135deg, #f1f8e9, #dcedc8);
   color: #558b2f;
   border: 1px solid rgba(139, 195, 74, 0.2);
}

.abd-meta-tag.abd-contact:hover {
   background: linear-gradient(135deg, #dcedc8, #c5e1a5);
}

/* Reviews */
.abd-meta-tag.abd-reviews {
   background: linear-gradient(135deg, #fff3cd, #ffeaa7);
   color: #856404;
   border: 1px solid rgba(255, 193, 7, 0.2);
}

.abd-meta-tag.abd-reviews:hover {
   background: linear-gradient(135deg, #ffeaa7, #ffdc00);
}

.abd-meta-tag.abd-reviews .dashicons-star-filled {
   color: #ffc107;
   text-shadow: 0 1px 2px rgba(255, 193, 7, 0.3);
}

/* Enhanced styling for verified businesses with reviews */
.abd-business-card.verified .abd-meta-tag.abd-reviews {
   background: linear-gradient(135deg, #fff8e1, #fff3c4);
   border-color: rgba(255, 215, 0, 0.3);
   box-shadow: 0 2px 8px rgba(255, 215, 0, 0.1);
}

.abd-business-card.verified .abd-meta-tag.abd-reviews .dashicons-star-filled {
   color: #ff6f00;
   text-shadow: 0 1px 2px rgba(255, 111, 0, 0.3);
}

/* ===== LIST VIEW ADJUSTMENTS FOR META TAGS ===== */
.abd-business-card.list-view .abd-meta-tag {
   font-size: 0.7rem;
   padding: 4px 8px;
}

.abd-business-card.list-view .abd-meta-tag .dashicons {
   font-size: 11px;
}

/* ===== BUSINESS DESCRIPTION ===== */
.abd-business-excerpt {
   color: #6c757d;
   font-size: 0.95rem;
   line-height: 1.6;
   margin: 0;
   display: -webkit-box;
   -webkit-line-clamp: 3;
   -webkit-box-orient: vertical;
   overflow: hidden;
   text-overflow: ellipsis;
}

.abd-business-card.list-view .abd-business-excerpt {
   -webkit-line-clamp: 2;
}

/* ===== BUSINESS CONTACT ===== */
.abd-business-contact {
   display: flex;
   gap: 15px;
   margin: 0;
   flex-wrap: wrap;
}

.abd-contact-tag {
   display: flex;
   align-items: center;
   gap: 6px;
   color: #495057;
   font-size: 0.9rem;
   background: #f8f9fa;
   padding: 4px 8px;
   border-radius: 8px;
   transition: all 0.3s ease;
}

.abd-contact-tag:hover {
   background: #e9ecef;
}

.abd-contact-tag .dashicons {
   color: #667eea;
   font-size: 16px;
}

/* ===== BUSINESS ACTIONS ===== */
.abd-business-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-direction: row;
}

.abd-business-card.list-view .abd-business-actions {
   /*flex-direction: column;*/
   align-items: stretch;
   gap: 8px;
}

.abd-action-link {
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 10px 16px;
   border-radius: 8px;
   text-decoration: none;
   font-weight: 600;
   font-size: 0.9rem;
   transition: all 0.3s ease;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 6px;
   min-width: 100px;
}

.abd-action-link:hover {
   transform: translateY(-2px);
   box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
   color: white;
}

.abd-action-link.secondary {
   background: #f8f9fa;
   color: #6c757d;
   border: 2px solid #e9ecef;
}

.abd-action-link.secondary:hover {
   background: #e9ecef;
   color: #495057;
   box-shadow: 0 4px 12px rgba(108, 117, 125, 0.2);
}

.abd-action-link .dashicons {
   font-size: 16px;
}

/* ===== EMPTY STATE ===== */
.abd-empty-state {
   text-align: center;
   padding: 60px 20px;
   background: white;
   border-radius: 16px;
   border: 2px dashed #dee2e6;
   margin: 40px 0;
}

.abd-empty-icon {
   font-size: 64px;
   color: #adb5bd;
   margin-bottom: 20px;
}

.abd-empty-title {
   font-size: 1.5rem;
   font-weight: 700;
   color: #6c757d;
   margin: 0 0 10px 0;
}

.abd-empty-message {
   color: #adb5bd;
   font-size: 1rem;
   margin: 0 0 20px 0;
}

.abd-empty-action {
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 12px 24px;
   border-radius: 12px;
   text-decoration: none;
   font-weight: 600;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   transition: all 0.3s ease;
}

.abd-empty-action:hover {
   transform: translateY(-2px);
   box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
   color: white;
}

/* ===== PAGINATION ===== */
.abd-pagination-wrapper {
   margin: 40px auto 20px auto;
   text-align: center;
}

.abd-pagination-info {
   color: #666;
   font-size: 14px;
   margin-bottom: 15px;
}

.abd-pagination-links {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 10px;
   margin-top: 15px;
}

.abd-pagination-links ul {
   display: flex;
   gap: 10px;
   list-style: none;
   margin: 0;
   padding: 0;
}

.abd-pagination-links .page-numbers {
   background: white;
   border: 2px solid #e9ecef;
   color: #6c757d;
   padding: 8px 12px;
   border-radius: 8px;
   text-decoration: none;
   font-weight: 600;
   transition: all 0.3s ease;
   min-width: 40px;
   text-align: center;
   display: flex;
   align-items: center;
   justify-content: center;
}

.abd-pagination-links .page-numbers:hover,
.abd-pagination-links .page-numbers.current {
   background: #667eea;
   border-color: #667eea;
   color: white;
}

.abd-pagination-links .page-numbers .dashicons {
   font-size: 16px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
   .abd-listing-container {
       padding: 15px;
   }
   
   .abd-listing-header {
       padding: 25px;
   }
   
   .abd-listing-title {
       font-size: 2rem;
   }
   
   .abd-filters {
       padding: 20px;
   }
   
   .abd-filters-grid {
       grid-template-columns: 1fr;
       gap: 15px;
   }
   
   .abd-filter-actions {
       flex-direction: column;
   }
   
   .abd-business-grid {
       grid-template-columns: 1fr;
       gap: 20px;
   }
   
   .abd-business-card.list-view {
       grid-template-columns: 80px 1fr;
       gap: 15px;
   }
   
   .abd-business-card.list-view .abd-business-actions {
       grid-column: 1 / -1;
       flex-direction: row;
       margin-top: 15px;
   }
   
   .abd-results-info {
       flex-direction: column;
       gap: 15px;
       align-items: stretch;
   }
   
   .abd-business-meta {
       align-items: flex-start;
   }
   
   .abd-meta-tag.abd-reviews {
       order: 3;
       margin-top: 5px;
       flex-basis: auto;
   }
   
   .abd-pagination-links {
       gap: 5px;
   }
}

@media (max-width: 480px) {
   .abd-listing-title {
       font-size: 1.5rem;
   }
   
   .abd-business-meta {
       flex-direction: column;
       gap: 8px;
   }
   
   .abd-business-contact {
       flex-direction: column;
       gap: 8px;
   }
   
   .abd-business-actions {
       flex-direction: column;
       gap: 8px;
   }
   
   .abd-meta-tag {
       font-size: 0.7rem;
       padding: 4px 8px;
   }
}

/* ===== LOADING STATE ===== */
.abd-loading {
   display: flex;
   justify-content: center;
   align-items: center;
   padding: 60px;
}

.abd-loading-spinner {
   width: 50px;
   height: 50px;
   border: 4px solid #f3f3f3;
   border-top: 4px solid #667eea;
   border-radius: 50%;
   animation: spin 1s linear infinite;
}

@keyframes spin {
   0% { transform: rotate(0deg); }
   100% { transform: rotate(360deg); }
}

/* ===== ACCESSIBILITY ===== */
.abd-meta-tag:focus,
.abd-action-link:focus,
.abd-search-btn:focus,
.abd-view-btn:focus {
   outline: 2px solid #667eea;
   outline-offset: 2px;
}

/* ===== HOVER EFFECTS FOR CARDS ===== */
.abd-business-card:has(.abd-reviews):hover .abd-meta-tag.abd-reviews {
   transform: scale(1.05);
}

/* ===== PRINT STYLES ===== */
@media print {
   .abd-filters,
   .abd-view-toggle,
   .abd-pagination-wrapper {
       display: none;
   }
   
   .abd-business-card {
       box-shadow: none;
       border: 1px solid #ccc;
       break-inside: avoid;
   }
   
   .abd-business-card:hover {
       transform: none;
   }
}


/* ===== FORCE MODULE ICONS STYLING - HIGH SPECIFICITY ===== */

/* Base meta tag reset */
.abd-business-card .abd-business-meta .abd-meta-tag {
    background: linear-gradient(135deg, #f8f9ff, #e8f0ff) !important;
    color: #667eea !important;
    padding: 6px 12px !important;
    border-radius: 20px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    border: 1px solid rgba(102, 126, 234, 0.15) !important;
    transition: all 0.3s ease !important;
    margin-bottom: 5px !important;
}

/* ===== FORCE SPECIFIC MODULE COLORS ===== */

/* Category - Blue */
.abd-business-card .abd-business-meta .abd-meta-tag.abd-category {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb) !important;
    color: #1976d2 !important;
    border: 1px solid rgba(33, 150, 243, 0.2) !important;
}

.abd-business-card .abd-business-meta .abd-meta-tag.abd-category:hover {
    background: linear-gradient(135deg, #bbdefb, #90caf9) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.2) !important;
}

/* Location - Purple */
.abd-business-card .abd-business-meta .abd-meta-tag.abd-location {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7) !important;
    color: #7b1fa2 !important;
    border: 1px solid rgba(156, 39, 176, 0.2) !important;
}

.abd-business-card .abd-business-meta .abd-meta-tag.abd-location:hover {
    background: linear-gradient(135deg, #e1bee7, #ce93d8) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(156, 39, 176, 0.2) !important;
}

/* Opening Hours - Green */
.abd-business-card .abd-business-meta .abd-meta-tag.abd-opening-hours {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9) !important;
    color: #2e7d32 !important;
    border: 1px solid rgba(76, 175, 80, 0.2) !important;
}

.abd-business-card .abd-business-meta .abd-meta-tag.abd-opening-hours:hover {
    background: linear-gradient(135deg, #c8e6c9, #a5d6a7) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2) !important;
}

/* Maps - Light Blue */
.abd-business-card .abd-business-meta .abd-meta-tag.abd-maps {
    background: linear-gradient(135deg, #e8f4fd, #cce7ff) !important;
    color: #0277bd !important;
    border: 1px solid rgba(2, 119, 189, 0.2) !important;
}

.abd-business-card .abd-business-meta .abd-meta-tag.abd-maps:hover {
    background: linear-gradient(135deg, #cce7ff, #b3daff) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(2, 119, 189, 0.2) !important;
}

/* Gallery - Orange */
.abd-business-card .abd-business-meta .abd-meta-tag.abd-gallery {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2) !important;
    color: #ef6c00 !important;
    border: 1px solid rgba(255, 152, 0, 0.2) !important;
}

.abd-business-card .abd-business-meta .abd-meta-tag.abd-gallery:hover {
    background: linear-gradient(135deg, #ffe0b2, #ffcc80) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.2) !important;
}

/* Website - Pink */
.abd-business-card .abd-business-meta .abd-meta-tag.abd-website {
    background: linear-gradient(135deg, #fce4ec, #f8bbd9) !important;
    color: #c2185b !important;
    border: 1px solid rgba(233, 30, 99, 0.2) !important;
}

.abd-business-card .abd-business-meta .abd-meta-tag.abd-website:hover {
    background: linear-gradient(135deg, #f8bbd9, #f48fb1) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.2) !important;
}

/* Contact - Light Green */
.abd-business-card .abd-business-meta .abd-meta-tag.abd-contact {
    background: linear-gradient(135deg, #f1f8e9, #dcedc8) !important;
    color: #558b2f !important;
    border: 1px solid rgba(139, 195, 74, 0.2) !important;
}

.abd-business-card .abd-business-meta .abd-meta-tag.abd-contact:hover {
    background: linear-gradient(135deg, #dcedc8, #c5e1a5) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(139, 195, 74, 0.2) !important;
}

/* Reviews - Yellow (Override existing) */
.abd-business-card .abd-business-meta .abd-meta-tag.abd-reviews {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7) !important;
    color: #856404 !important;
    border: 1px solid rgba(255, 193, 7, 0.2) !important;
}

.abd-business-card .abd-business-meta .abd-meta-tag.abd-reviews:hover {
    background: linear-gradient(135deg, #ffeaa7, #ffdc00) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.2) !important;
}

.abd-business-card .abd-business-meta .abd-meta-tag.abd-reviews .dashicons-star-filled {
    color: #ffc107 !important;
    text-shadow: 0 1px 2px rgba(255, 193, 7, 0.3) !important;
}

/* ===== COUNT AND RATING STYLING ===== */
.abd-business-card .abd-business-meta .abd-meta-tag .abd-count,
.abd-business-card .abd-business-meta .abd-meta-tag .abd-rating {
    font-weight: 700 !important;
    font-size: 0.9em !important;
}

/* ===== LIST VIEW OVERRIDES ===== */
.abd-business-card.list-view .abd-business-meta .abd-meta-tag {
    font-size: 0.7rem !important;
    padding: 4px 8px !important;
}

.abd-business-card.list-view .abd-business-meta .abd-meta-tag .dashicons {
    font-size: 11px !important;
}

/* ===== VERIFIED BUSINESS OVERRIDES ===== */
.abd-business-card.verified .abd-business-meta .abd-meta-tag.abd-reviews {
    background: linear-gradient(135deg, #fff8e1, #fff3c4) !important;
    border-color: rgba(255, 215, 0, 0.3) !important;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.1) !important;
}

.abd-business-card.verified .abd-business-meta .abd-meta-tag.abd-reviews .dashicons-star-filled {
    color: #ff6f00 !important;
    text-shadow: 0 1px 2px rgba(255, 111, 0, 0.3) !important;
}

/* ===== RESPONSIVE OVERRIDES ===== */
@media (max-width: 768px) {
    .abd-business-card .abd-business-meta .abd-meta-tag.abd-reviews {
        order: 3 !important;
        margin-top: 5px !important;
        flex-basis: auto !important;
    }
}