/* ===== 商家列表大图横版卡片样式 ===== */

/* 主容器 */
.shops-horizontal-cards {
    padding: 3rem 0;
    background: #f8fafc;
}

.shops-horizontal-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* 横版卡片 */
.shop-horizontal-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.shop-horizontal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #cbd5e0;
}

/* 图片区域 */
.shop-image-area {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.shop-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.shop-emoji-avatar {
    font-size: 4rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    z-index: 2;
    position: relative;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    padding: 1rem;
    z-index: 1;
}

.image-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* 内容区域 */
.shop-content-area {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* 标题区域 */
.shop-title-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.shop-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.shop-status-badge {
    flex-shrink: 0;
}

.status-hot {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.status-quality {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.status-vip {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.status-normal {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    color: #2d3748;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* 描述区域 */
.shop-description-section {
    flex: 1;
}

.shop-description-text {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* 评分区域 */
.shop-rating-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.rating-stars-large {
    font-size: 1.2rem;
}

.star-filled {
    color: #fbbf24;
}

.star-empty {
    color: #d1d5db;
}

.rating-score-large {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

/* 详细信息区域 */
.shop-details-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.detail-text {
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
}

/* 操作区域 */
.shop-action-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-label {
    color: #6b7280;
    font-size: 0.8rem;
    font-weight: 500;
}

.price-value {
    color: #1a202c;
    font-size: 1.25rem;
    font-weight: 700;
}

.action-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-secondary-horizontal {
    padding: 10px 20px;
    background: transparent;
    color: #4a5568;
    border: 2px solid #e2e8f0;
    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;
    white-space: nowrap;
}

.btn-secondary-horizontal:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
    color: #2d3748;
    text-decoration: none;
}

.btn-primary-horizontal {
    padding: 10px 20px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    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;
    box-shadow: var(--shadow-primary);
    white-space: nowrap;
}

.btn-primary-horizontal:hover {
    background: linear-gradient(135deg, var(--primary-hover), var(--primary-dark));
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary-lg);
    text-decoration: none;
    color: white;
}

/* 响应式设计 */
@media (min-width: 768px) {
    .shop-horizontal-card {
        flex-direction: row;
        min-height: 280px;
    }
    
    .shop-image-area {
        width: 35%;
        height: auto;
        min-height: 280px;
    }
    
    .shop-content-area {
        width: 65%;
        padding: 2rem;
    }
    
    .shop-title {
        font-size: 1.75rem;
    }
    
    .shop-description-text {
        font-size: 1.1rem;
    }
    
    .shop-details-section {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .detail-info {
        flex: 0 0 auto;
        min-width: 150px;
    }
    
    .shop-action-section {
        flex-direction: row;
        align-items: center;
    }
    
    .action-buttons {
        flex-shrink: 0;
    }
}

@media (min-width: 1024px) {
    .shops-horizontal-grid {
        gap: 2rem;
    }
    
    .shop-content-area {
        padding: 2.5rem;
    }
    
    .shop-title {
        font-size: 2rem;
    }
    
    .btn-secondary-horizontal,
    .btn-primary-horizontal {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .shops-horizontal-cards {
        padding: 2rem 0;
    }
    
    .shops-horizontal-grid {
        gap: 1rem;
    }
    
    .shop-content-area {
        padding: 1.25rem;
    }
    
    .shop-title {
        font-size: 1.25rem;
    }
    
    .shop-description-text {
        font-size: 0.95rem;
    }
    
    .shop-action-section {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .action-buttons {
        width: 100%;
    }
    
    .btn-secondary-horizontal,
    .btn-primary-horizontal {
        flex: 1;
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .price-info {
        text-align: center;
    }
    
    .price-value {
        font-size: 1.1rem;
    }
}
