﻿.header-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: #f7b800;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.header-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}
.header-btn:hover::before {
    left: 100%;
}

    .header-btn:hover {
        background-color: #e6a700;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(247, 184, 0, 0.3);
        color: #fff;
    }

.header-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-btn i {
    font-size: 16px;
}
.language-dropdown {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    padding: 10px;
    list-style: none;
    z-index: 999;
    min-width: 150px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 4px;
}
.header-search-container {
    position: relative;
    display: inline-block;
    width: 380px;
    margin-right:15px;
}

.header-search-input {
    width: 100%;
    padding: 18px 50px 12px 20px;
    border-bottom: 3px solid #dddddd9e;
    border-left: none;
    border-right: none;
    border-radius: 10px;
    background: #fff;
    color: #333;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

    .header-search-input::placeholder {
        color: #999;
    }

    .header-search-input:focus {
        border-color: #FFC107 !important;
    }

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s;
}

    .search-icon:hover {
        color: #FFC107;
    }

.header-search-input:focus + .search-icon {
    color: #FFC107 !important;
}
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255 255 255 / 0.85);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.load-containerr {
    z-index: 99999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top:42vh;
}

    .load-containerr img {
        width: 130px;
        margin-bottom: 25px;
        filter: drop-shadow(0 0 5px #f1c40f88);
    }

.linespinnerr {
    width: 60px;
    height: 60px;
    border: 6px solid transparent;
    border-top-color: #f1c40f; /* sarı */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 8px #f1c40faa;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.product-box {
    position: relative;
    width: 220px;
    height: 220px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

    .product-box:hover {
        transform: translateY(-4px);
    }

.product-box-title,
.product-box-img {
    z-index: 2;
    position: relative;
}

/* Aktif durum: sarı kayar border */
.product-box.aktif::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(120deg, transparent, #fdb913, transparent);
    background-size: 200% 200%;
    animation: animate-border 2s linear infinite;
    z-index: 1;
    border-radius: 18px;
}

.product-box.aktif::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: white;
    z-index: 1;
    border-radius: 12px;
}

@keyframes animate-border {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}
.page-item.active .page-link {
    background-color: #343a40;
    border-color: #343a40;
}
.page-link {
    color: #343a40;
}
.section-header{
    padding-top:25px !important;
}