:root {
    --primary: #6610f2;
    --dark: #212529;
    --red: #a40000;
}
body {
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE10+/Edge */
  user-select: none;         /* Standart */
  
}


.navbar {
    background-color: transparent;

}

.top-bar {
    background-color: transparent;
}

.back {
    background-color: #f8f9fa;
}

.top-bar {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: transparent;
}

.btn-light {
    background-color: #fff;
    border-color: #dee2e6;
    color: #212529;
}

.bg-primary,
.btn-primary {
    background-color: var(--primary) !important;
}

.navbar-brand {
    color: var(--red);
}

.navbar-brand:hover {
    color: var(--red);
    text-shadow: 2px 2px 4px rgb(87, 0, 0);
}

.btn-light i {
    color: var(--primary);
}

.slider_nav {
    max-height: 250px;
}


@media (min-width: 1200px) {
    .slider_nav {
        max-height: 300px;
    }
}

@media (min-width: 1400px) {
    .slider_nav {
        max-height: 350px;
    }
}


.img-wrap span {
    position: absolute;
    top: 10px;
    right: 10px;
}

.info-wrap {
    padding: 1rem 1.2rem;
}

.info-wrap .title {
    display: block;
    text-decoration: none;
    color: #51585e;
}


.img-wrap {
    position: relative;
    padding: 1rem;
    height: 240px;
    text-align: center;
}

.img-wrap img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: cover;
    cursor: pointer;
}

.breadcrumb a {
    color: #fff;
    opacity: .9;
}

.breadcrumb .breadcrumb-item {
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}


.gallery-wrap .img-big-wrap {
    width: 100%;
    height: 400px;
    margin-bottom: 1rem;
    text-align: center;
}

.gallery-wrap .img-big-wrap img {
    max-width: 100%;
}

.gallery-wrap .thumbs-wrap {
    text-align: center;
}



.gallery-wrap .thumbs-wrap a {
    width: 60px;
    height: 60px;
    border: 1px solid #dde2e6;
    border-radius: .4rem;
    margin: 3px;
    display: inline-block;
    overflow: hidden;
}

.gallery-wrap .thumbs-wrap img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.checked {
    color: orange;
}

.btn {
    background-color: var(--red);

}

.btn:hover {
    background-color: #fff;
    color: var(--red);
}

.fa {
    color: #fff;

}

.fa:hover {
    color: var(--red);
}

footer {
    background-color: var(--red);
}

.video-bg {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow:hidden;
    z-index: -1;
    pointer-events: none;
    object-fit: cover;
}

.video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.nav-link {
    color: var(--red);
    font-size: 1.25rem;
}


.content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    top: 35%;
    font-size: 1.5rem;

}

@media (max-width: 991.98px) {
    .nav-top {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 3;
    }
}

.navbar-toggler {
    background-color: var(--red);
}



.table-link {
    text-decoration: none;
    color: #fff;
}

.table-link:hover {
    color: var(--red);
}

.details-page {
    margin-top: 7rem;
}

.product-img {
    border-radius: 0.75rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    
}

.product-img:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 32px rgba(164, 0, 0, 0.4);
}


.product-info-card {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-left: 5px solid var(--red);
    transition: box-shadow 0.3s ease;
}

.product-info-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


.price {
    color: var(--red);
   
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-info {
    animation: fadeInUp 0.6s ease-out;
}


#ok {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }
}

.content {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 1s ease, transform 1s ease;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -30px);
    text-align: center;
    color: white;
    z-index: 2;
}

/* Yukarıdan animasyonla görünme */
.content.show {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* Aşağı kayınca akıcı şekilde yok olma */
.content.fade {
    opacity: 0;
    transform: translate(-50%, -20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}


@keyframes slideTopAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    border-radius: 0.75rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 32px 64px rgba(164, 0, 0, 0.4);
}

.main-content {
    min-height: calc(100vh - 200px);
    padding-bottom: 100px;
}


.table-link {
    text-decoration: none;
    color: #212529;
}

.table-link:hover {
    color: var(--red);
    font-weight: bold;
}


.form-select {
    max-width: 200px;
    max-height: fit-content;
   
}

.nav-top {
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
    background-color: transparent;
    backdrop-filter: none;
    z-index: 999;
}

.nav-top.scrolled {
    background-color: rgba(128, 128, 128, 0.5);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.fade-out-on-scroll {
    transition: opacity 0.5s ease-out;
}

.fade-out-on-scroll.hidden {
    opacity: 0;
    pointer-events: none;
}

#suggestionsList {
    display: none;
    max-height: 300px;
    overflow-y: auto;
}

#suggestionsList li {
    cursor: pointer;
}

#suggestionsList li:hover {
    background-color: #f0f0f0;
}
td.clText {
    color: #bfbdbd !important;
}
thead th {
    position: sticky;
    top: 0;
    z-index: 2;
  }

  /* Başlıklar daha önde olsun */
  .table-responsive {
    max-height: 600px; /* İstediğin yüksekliği belirle */
    overflow-y: auto;
  }
  

  .overflow-description {
    white-space: pre-wrap;
    font-size: 0.95rem;
    line-height: 1.4;
    
    padding: 0.75rem;
    border: 1px solid #eee;
    border-radius: 6px;
    max-height: none;
    overflow: scroll;
}

.scrollable {
    max-height: 100px;
    overflow-y:scroll;
}
/* Genel stil */
.swiper-button-next,
.swiper-button-prev {
    color: var(--red) !important;
}

/* Eğer Swiper iç ikonlar ::after ile geliyorsa bunu da override ediyoruz */
.swiper-button-next::after,
.swiper-button-prev::after {
    color: var(--red) !important;

}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--red) !important;
     transform: scale(1.2);

}

/* Custom oklar */
.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--red);
    color: white;
    padding: 12px;
    border-radius: 50%;
    font-size: 1.25rem;
    z-index: 100;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.swiper-button-prev.custom-arrow {
    left: -60px;
}

.swiper-button-next.custom-arrow {
    right: -60px;
}

.custom-arrow:hover {
    color: var(--red) !important;
    background-color: white;
    transform: translateY(-50%) scale(1.1);
}

.date-timess{
     color: var(--red) !important;
}

.table-top {
    margin-top: 8rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.inNumber{
    max-width: 85px;

    
}

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-inner-spin-button, 
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

@media (max-width: 768px) {
    .table-top {
        flex-direction: column;
        align-items: stretch;
        margin-left: auto;
        margin-right: auto;
        padding: 0 1rem;
    }

    .inNumber {
        width: 100%;
        max-width: none;
    }

    .form-select {
        width: 100%;
        max-width: none;
    }
}

