.product-buy-with-fullwidth {
    margin-top: 20px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.product-buy-with-horizontal {
    width: 100%;
    margin: 0 auto;
}

.buy-with-container {
    position: relative;
    width: 100%;
}

.buy-with-header {
    margin-bottom: 12px;
}

.buy-with-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
    letter-spacing: -0.3px;
}

.buy-with-links {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.buy-with-links::-webkit-scrollbar {
    display: none;
}

.buy-with-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    color: #555;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
}

.buy-with-link:hover {
    background: #FFD700;
    border-color: #FFD700;
    color: #333;
}

.buy-with-link:active {
    transform: scale(0.97);
}

.buy-with-link:focus-visible {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

.buy-with-link-text {
    line-height: 1.2;
}

/* МОБИЛЬНЫЕ */
@media (max-width: 767px) {
    .product-buy-with-fullwidth {
        margin-top: 15px;
    }
    
    .buy-with-header {
        margin-bottom: 10px;
    }
    
    .buy-with-title {
        font-size: 16px;
    }
    
    .buy-with-links {
        gap: 6px;
        margin: 0 -5px;
        padding: 0 5px 4px;
    }
    
    .buy-with-link {
        padding: 7px 14px;
        font-size: 12px;
    }
}