/* ExpoProduct.css - Sadece ürün kartları ve genel layout için CSS */

.product-container {
    width: 100%;
    max-width: 1440px;
    margin: 1rem auto;
    padding: 0 1.25rem;
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.product-list-container-product {
    flex: 1;
    min-width: 0;
}

.load-more-container {
    text-align: center;
    padding: 2rem 0;
    width: 100%;
    clear: both;
}

.scroll-to-top-button {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8006, #ff6b6b);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.load-more-button {
    background: linear-gradient(135deg, #ff6b6b, #ff8006);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

    .load-more-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(255, 140, 66, 0.2);
    }

    .load-more-button i {
        font-size: 0.9rem;
    }

.section-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding: 0 2rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #6B6A6A;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
    padding: 0 1rem;
}

.section-line {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, rgba(255, 128, 6, 0.1) 0%, rgba(255, 128, 6, 0.8) 20%, rgba(107, 106, 106, 0.8) 80%, rgba(255, 128, 6, 0.1) 100% );
    margin: 0 auto;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ff8006;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    z-index: 9999;
    border: none;
}

    .back-to-top:hover {
        background-color: #ff8006;
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

.show-result {
    margin-bottom: 0;
    color: #6B6A6A;
    font-size: 0.95rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 992px) {
    .product-container {
        flex-direction: column;
        align-items: center;
    }

    .product-list-container-product {
        margin: 0;
        width: 100%;
        max-width: 920px;
    }

    .scroll-to-top-button {
        bottom: 72px;
        right: 10px;
        width: 45px;
        height: 45px;
        font-size: 15px;
    }

}

/* Breadcrumb and Checkbox Container */
.breadcrumb-container {
    width: 100%;
    max-width: 1440px;
    margin: 1rem auto;
    padding: 0 1.25rem;
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    flex-wrap: wrap;
    gap: 3.5rem;
}

.search-description-checkbox {
    display: flex;
    align-items: center;
}

@media (max-width: 576px) {
    .breadcrumb-container {
        flex-direction: column;
        align-items: start;
        gap: 1.5rem;
    }
}