.products-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.products-grid {
    /* Bootstrap grid kullanıldığı için grid CSS'leri kaldırıldı */
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.product-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #f9f9f9;
}

.product-thumbnail .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.product-thumbnail .product-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.product-card.has-video:hover .product-thumbnail .product-video {
    opacity: 1;
}

.product-card-content {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.product-info {
    flex: 1;
}

.product-title {
    margin: 0 0 0.25rem 0;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.product-subtitle {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.3;
}

.details-link {
    background: #34495e;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #2c3e50;
}

.details-link:hover {
    background: #2c3e50;
    color: white;
    border-color: #1a252f;
}

.details-text {
    font-size: 0.9rem;
}

.no-products {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.page-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.page-links a, .page-links .current {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.page-links a:hover {
    background: #34495e;
    color: white;
    border-color: #34495e;
}

.page-links .current {
    background: #2c3e50;
    color: white;
    border-color: #2c3e50;
    font-weight: 500;
}

@media (max-width: 768px) {
    .products-hero {
        padding: 6rem 1rem 3rem;
    }
    
    .products-container {
        padding: 2rem 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
