.product_shop_detail {
    font-family: 'Segoe UI', Roboto, sans-serif;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.product_shop_detail .product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product_shop_detail .product-card:hover {
    transform: translateY(-5px);
}

.product_shop_detail .product-gallery {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.product_shop_detail .main-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    background: white;
    max-width: 100%;
    height: auto;
}

.product_shop_detail .price-block {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-bottom: 4px solid #fd7e14;
}

.product_shop_detail .current-price {
    font-size: 28px;
    font-weight: 700;
    color: forestgreen;
    /* Оранжевый цвет */
}
.product_shop_detail .current-price-text {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    /* Оранжевый цвет */
}

.product_shop_detail .old-price {
    font-size: 18px;
    text-decoration: line-through;
    color: #6c757d;
}

.product_shop_detail .specs-list {
    list-style-type: none;
    padding-left: 0;
}

.product_shop_detail .specs-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.product_shop_detail .specs-list li:last-child {
    border-bottom: none;
}

/* Матовые кнопки */
.product_shop_detail .btn-primary {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.product_shop_detail .btn-primary:hover {
    background: rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #000;
}

.product_shop_detail .btn-outline-secondary {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.product_shop_detail .btn-outline-secondary:hover {
    background: rgba(0, 0, 0, 0.03);
    transform: translateY(-2px);
}

.product_shop_detail .matte-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}