/* Стили как на Wildberries */
.sticky-buy-block {
    position: sticky;
    top: 90px;
    z-index: 100;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #e83e8c;
}

.old-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 1rem;
}

.btn-wb {
    background-color: #cb11ab;
    color: white;
    border: none;
    padding: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-wb:hover {
    background-color: #a80e8a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(203,17,171,0.3);
}

.btn-ym{
    background-color: #fc3f1d;
    color: #ffd600;
    border: none;
    padding: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.2s;
}
.btn-ym:hover{
    background-color: #de2402;
    color: #ffd600;
    transform: translateY(-2px);
}
.btn-ozon {
    background-color: #005bff;
    color: white;
    border: none;
    padding: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-ozon:hover {
    background-color: #003bb3;
    color: white;
    transform: translateY(-2px);
}

.btn-avito {
    background-color: #00aa00;
    color: white;
    border: none;
    padding: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-avito:hover {
    background-color: #008800;
    color: white;
    transform: translateY(-2px);
}

.characteristics {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.characteristic-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.characteristic-item:last-child {
    border-bottom: none;
}

.characteristic-label {
    color: #666;
    font-weight: 500;
}

.characteristic-value {
    font-weight: 600;
    color: #333;
}

.gallery-thumb {
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-thumb:hover {
    opacity: 1;
}

.gallery-thumb.active {
    opacity: 1;
    border: 2px solid #e83e8c;
}

.partner-badge {
    background: linear-gradient(135deg, #e83e8c, #9c27b0);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Добавленные стили для улучшения */
.breadcrumb a:hover {
    color: #e83e8c !important;
}

.card-hover {
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(232,62,140,0.2) !important;
}

/* 👇 НОВЫЕ СТИЛИ ДЛЯ ВИДЕО */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #e83e8c, #9c27b0);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}