/* Ana sayfa — Ofset Ürünleri (kategori 5) */

.ofset-urunleri-section {
    background: #fff;
    padding: 2.75rem 0 3rem;
}

.ofset-urunleri-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.ofset-urunleri-title {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
}

.ofset-urunleri-title i {
    color: #1e3a5f;
    font-size: 1.25rem;
}

.ofset-urunleri-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e3a5f;
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
}

.ofset-urunleri-more:hover {
    color: #cc0000;
    gap: 0.55rem;
}

.ofset-urunleri-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.ofset-urun-card {
    background: #fff;
    border: 1px solid #edf0f4;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ofset-urun-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
    border-color: rgba(30, 58, 95, 0.28);
}

.ofset-urun-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.ofset-urun-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f1f5f9;
}

.ofset-urun-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.ofset-urun-card:hover .ofset-urun-image img {
    transform: scale(1.06);
}

.ofset-urun-placeholder {
    width: 100%;
    height: 100%;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #64748b;
    font-size: 2rem;
}

.ofset-urun-title {
    margin: 0;
    padding: 0.75rem 0.7rem;
    font-size: 0.88rem;
    font-weight: 650;
    line-height: 1.35;
    text-align: center;
    color: #1e293b;
}

.ofset-urun-link:hover .ofset-urun-title {
    color: #1e3a5f;
}

@media (max-width: 991.98px) {
    .ofset-urunleri-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .ofset-urunleri-section {
        padding: 2rem 0;
    }

    .ofset-urunleri-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .ofset-urunleri-title {
        font-size: 1.15rem;
    }

    .ofset-urun-title {
        font-size: 0.78rem;
        padding: 0.55rem 0.45rem;
    }
}
