.catalog {
    padding-top: 100px;
}

.product-card {
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card .card {
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.product-card .card-img-top {
    height: 250px;
    object-fit: contain;
    border-bottom: 1px solid #e0e0e0;
    background: #f8f9fa;
    padding: 10px;
}

.product-images {
    position: relative;
    background: #f8f9fa;
}

.product-images {
    cursor: pointer;
}

.product-gallery-thumbs {
    display: none;
}

.filters {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    padding: 5px 15px;
    margin: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-tag:hover {
    background-color: #e9ecef;
    border-color: #ced4da;
}

.remove-filter {
    cursor: pointer;
    margin-left: 8px;
    color: #6c757d;
    transition: color 0.3s ease;
}

.remove-filter:hover {
    color: #dc3545;
}

.btn-secondary:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

#noResultsMessage {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

#noResultsMessage h4 {
    color: #495057;
    margin-bottom: 1rem;
}

#noResultsMessage a {
    color: #0d6efd;
    text-decoration: none;
}

#noResultsMessage a:hover {
    text-decoration: underline;
}

/* Lightbox özelleştirmeleri */
.lb-data .lb-caption {
    font-size: 16px;
    font-weight: bold;
}

.lb-data .lb-number {
    font-size: 14px;
}
