/* 店铺详情页样式 */
.shop-info-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 20px;
    clear: both;
}

/* 店铺招牌图 */
.shop-banner {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.shop-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 店铺头部 */
.shop-header-section {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.shop-header-top {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.shop-logo-large {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 20px;
    border: 2px solid #f0f0f0;
}

.shop-header-info {
    flex: 1;
}

.shop-name-large {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.shop-type-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 3px;
    font-size: 12px;
    color: #fff;
    margin-left: 10px;
}

.shop-type-badge.official {
    background: #ff6b6b;
}

.shop-type-badge.flagship {
    background: #4ecdc4;
}

.shop-type-badge.self {
    background: #45b7d1;
}

.shop-owner {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.shop-rating {
    display: flex;
    gap: 30px;
}

.shop-rating-item {
    text-align: center;
}

.shop-rating-value {
    font-size: 20px;
    font-weight: bold;
    color: #ff6b00;
}

.shop-rating-label {
    font-size: 12px;
    color: #999;
}

.shop-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-collect {
    padding: 10px 30px;
    background: #ff6b00;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-collect:hover {
    background: #e55a00;
}

/* 店铺公告 */
.shop-notice {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 4px;
    margin-top: 20px;
}

.shop-notice strong {
    color: #ff6b00;
}

.shop-notice p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* 联系方式 */
.shop-contact {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.shop-contact-item {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.shop-contact-item i {
    margin-right: 8px;
    color: #ff6b00;
    font-size: 16px;
}

.shop-contact-item a {
    color: #666;
    text-decoration: none;
}

.shop-contact-item a:hover {
    color: #ff6b00;
}

/* 推荐商品 */
.shop-recommend {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.section-title {
    font-size: 20px;
    color: #333;
}

.section-more {
    color: #ff6b00;
    text-decoration: none;
    font-size: 14px;
}

.section-more:hover {
    text-decoration: underline;
}

/* 商品网格 */
.goods-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .goods-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .goods-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .goods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.goods-item {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.goods-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.goods-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.goods-thumb {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.goods-title {
    padding: 10px;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
