/* 索兮商城 - 前端样式 */

/* 商品列表 */
.suoxi-shop {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.suoxi-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.suoxi-product-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.suoxi-product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.suoxi-product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.suoxi-product-info {
    padding: 15px;
}

.suoxi-product-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.suoxi-product-price {
    font-size: 20px;
    font-weight: bold;
    color: #e4393c;
    margin-bottom: 10px;
}

.suoxi-product-original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

.suoxi-product-sales {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.suoxi-product-actions {
    display: flex;
    gap: 10px;
}

.suoxi-btn {
    flex: 1;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.suoxi-btn-primary {
    background: #2271b1;
    color: #fff;
}

.suoxi-btn-primary:hover {
    background: #135e96;
}

.suoxi-btn-secondary {
    background: #f0f0f0;
    color: #333;
}

.suoxi-btn-secondary:hover {
    background: #e0e0e0;
}

/* 商品详情 */
.suoxi-product-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.suoxi-product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.suoxi-product-gallery {
    position: sticky;
    top: 20px;
}

.suoxi-product-main-image {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.suoxi-product-details h1 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 15px;
}

.suoxi-product-details .price {
    font-size: 32px;
    font-weight: bold;
    color: #e4393c;
    margin-bottom: 20px;
}

.suoxi-product-meta {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 20px;
}

.suoxi-product-meta-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.suoxi-product-meta-item:last-child {
    border-bottom: none;
}

.suoxi-product-quantity {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.suoxi-quantity-input {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.suoxi-quantity-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: #f0f0f0;
    cursor: pointer;
    font-size: 18px;
}

.suoxi-quantity-btn:hover {
    background: #e0e0e0;
}

.suoxi-quantity-value {
    width: 60px;
    height: 36px;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
    font-size: 16px;
}

.suoxi-product-content {
    padding: 30px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* 购物车 */
.suoxi-cart {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.suoxi-cart-table {
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.suoxi-cart-table thead {
    background: #f9f9f9;
}

.suoxi-cart-table th,
.suoxi-cart-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.suoxi-cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.suoxi-cart-total {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    text-align: right;
}

.suoxi-cart-total-amount {
    font-size: 24px;
    font-weight: bold;
    color: #e4393c;
    margin: 10px 0;
}

/* 响应式 */
@media (max-width: 768px) {
    .suoxi-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .suoxi-product-main {
        grid-template-columns: 1fr;
    }
    
    .suoxi-product-gallery {
        position: static;
    }
}

/* 加载动画 */
.suoxi-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    border-top-color: #2271b1;
    animation: suoxi-spin 0.8s linear infinite;
}

@keyframes suoxi-spin {
    to { transform: rotate(360deg); }
}
