/* 模玩商品详情页样式 - 优化版 */
.toy-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f9fa;
}

.breadcrumb {
    padding: 15px 0;
    color: #6c757d;
    font-size: 14px;
}

.breadcrumb a {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #0a58ca;
    text-decoration: underline;
}

.toy-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.toy-gallery {
    flex: 1;
    min-width: 300px;
}

.main-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.toy-info {
    flex: 1;
    min-width: 300px;
}

.toy-info h1 {
    margin: 0 0 15px;
    color: #212529;
    font-size: 28px;
}

.price {
    font-size: 24px;
    color: #dc3545;
    margin: 15px 0;
    font-weight: 600;
}

.description {
    margin: 20px 0;
    color: #495057;
    line-height: 1.6;
}

.actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.add-to-cart, .buy-now {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.add-to-cart {
    background-color: #0d6efd;
    color: white;
}

.add-to-cart:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
}

.buy-now {
    background-color: #dc3545;
    color: white;
}

.buy-now:hover {
    background-color: #bb2d3b;
    transform: translateY(-2px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .toy-detail {
        flex-direction: column;
    }
}