.product-ribbon { display: grid; grid-template-columns: 245px minmax(0,1fr); gap: 28px; padding: 34px 6%; background: linear-gradient(135deg, #f7f2eb 0%, #fff 48%, #edf4fb 100%); overflow: hidden; align-items: center; position: relative; }
.product-ribbon::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 85% 20%, #1356b90d, transparent 38%), linear-gradient(90deg, transparent 0 18%, #f4860010 18% 18.2%, transparent 18.2%); }
.product-ribbon-intro { color: #0b2856; position: relative; z-index: 1; }
.product-ribbon-kicker { color: #8a8177; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.product-ribbon-intro h2 { margin: 8px 0 8px; font-size: 28px; font-weight: 800; line-height: 1.08; letter-spacing: -.025em; }
.product-ribbon-intro h2 em { color: #1356b9; font-style: normal; }
.product-ribbon-intro p { max-width: 210px; margin: 0; color: #687389; font-size: 12px; line-height: 1.5; }
.product-ribbon-controls { display: flex; gap: 10px; margin-top: 18px; }
.product-ribbon-arrow { width: 38px; height: 38px; border: 1px solid #d8d1c8; border-radius: 50%; background: #fff; color: #0b2856; font-size: 18px; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease; }
.product-ribbon-arrow:hover { transform: translateY(-2px); background: #0b3e9e; color: #fff; }
.product-ribbon-arrow:focus-visible { outline: 3px solid #f48600; outline-offset: 3px; }
.product-ribbon-viewport { min-width: 0; overflow-x: auto; overflow-y: hidden; scrollbar-width: none; }
.product-ribbon-viewport::-webkit-scrollbar { display: none; }
.product-ribbon-track { display: flex; gap: 14px; width: max-content; animation: productRibbonDrift 32s linear infinite; }
.product-ribbon-viewport:hover .product-ribbon-track, .product-ribbon-viewport:focus-within .product-ribbon-track { animation-play-state: paused; }
.product-card { width: 194px; overflow: hidden; border-radius: 18px; background: #fff; color: #102b55; text-decoration: none; box-shadow: 0 10px 24px #102b5518, 0 2px 5px #102b550d; transition: transform .25s ease, box-shadow .25s ease; position: relative; }
.product-card::after { content: ''; display: block; height: 4px; background: linear-gradient(90deg, #1356b9, #f48600); }
.product-card:hover { transform: translateY(-7px) scale(1.015); box-shadow: 0 16px 32px #102b5528; }
.product-card:focus-visible { outline: 3px solid #f48600; outline-offset: 3px; }
.product-card img { display: block; width: 100%; height: 142px; object-fit: cover; filter: saturate(1.08) contrast(1.03); transition: transform .35s ease, filter .35s ease; }
.product-card:hover img { transform: scale(1.05); filter: saturate(1.18) contrast(1.06); }
.product-card strong, .product-card span { display: block; padding: 0 13px; }
.product-card strong { padding-top: 12px; font-size: 13px; font-weight: 800; letter-spacing: -.01em; }
.product-card span { padding-top: 4px; padding-bottom: 13px; color: #69758a; font-size: 11px; }
@keyframes productRibbonDrift { from { transform: translateX(0); } to { transform: translateX(-31.5%); } }
@media (max-width: 800px) {
    .product-ribbon { grid-template-columns: 1fr; gap: 18px; padding: 25px 8%; }
    .product-ribbon-intro p { max-width: 280px; }
    .product-ribbon-controls { display: none; }
    .product-ribbon-track { animation-duration: 38s; }
    .product-card { width: 174px; }
    .product-card img { height: 126px; }
}
@media (prefers-reduced-motion: reduce) { .product-ribbon-track { animation: none; } }
