@charset "utf-8";
@import url("../../../webfonts/NotoSans_Regular/stylesheet.css");

/* Genel */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "NotoSans Regular", Tahoma, Geneva, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

.mall {
    background-color: #F0F3F7;
    padding: 20px 0;
    width: 100%;
    margin-top: 95px;
}

.mall .margin {
     width: 98%;
     max-width: 1400px;
     background: #fff;
     border: 1px solid #ccc;
     border-radius: 8px;
     box-shadow: 0 0 3px rgb(153,153,153);
     margin-top: 20px;
     margin-right: auto;
     margin-bottom: 20px;
     margin-left: auto;
     padding: 0 24px 24px 24px;
}

.mall .margin .tmargin {
    width: 100%;
}

/* Filter */
.mall .margin .filter .etiket {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 20px;
}

.mall .margin .filter .etiket form input {
    background: #fff;
    border: thin solid #39C;
    border-radius: 25px;
    padding: 8px 16px;
    cursor: pointer;
    transition: 0.4s;
    font-size: 14px;
}

.mall .margin .filter .etiket form input:hover {
    background: #369;
    color: #fff;
}

.mall .margin .filter #cizgi {
    background: #DEDEDE;
    height: 2px;
    width: 100%;
    margin: 20px 0;
}

/* ===== TOURS FLEX LAYOUT ===== */
#load_data1 {
     margin-top: 10px;
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 20px;
     width: 100%;
     padding-top: 0px;
     padding-right: 0;
     padding-bottom: 20px;
     padding-left: 0;
}

/* Kartlar */
#load_data1 .tour {
   position: relative;
     height: 410px;
     flex: 1 1 320px;
     max-width: 340px;
     background: #fff;
     border-radius: 12px;
     box-shadow: 0 4px 15px rgba(0,0,0,0.1);
     overflow: hidden;
     transition: all 0.4s ease;
     display: flex;
     flex-direction: column;
     margin-bottom: 20px;
}

#load_data1 .tour:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

#load_data1 .tour a {
    display: block;
    color: inherit;
}

/* Resim */
#load_data1 .tour .titleup {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

#load_data1 .tour .titleup picture,
#load_data1 .tour .titleup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Root Overlay */
#load_data1 .tour .root {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(20, 121, 188, 0.9);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    padding: 15px 25px;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    width: 85%;
    max-width: 300px;
    z-index: 10;
    pointer-events: none;
    white-space: normal;
    line-height: 1.4;
}

#load_data1 .tour:hover .root {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1.05);
}

/* Badge'ler (days ve hot) */
#load_data1 .tour .titleup .days,
#load_data1 .tour .titleup .hot {
    position: absolute;
    top: 10px;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: bold;
    z-index: 3;
}

#load_data1 .tour .titleup .days {
    left: 10px;
    background: rgba(255,255,255,0.95);
    color: #333;
    display: none;
}

#load_data1 .tour .titleup .days:not(:empty) {
    display: block;
}

#load_data1 .tour .titleup .hot {
    right: 10px;
    background: #C81E3A;
    color: #fff;
    display: none;
}

#load_data1 .tour .titleup .hot:not(:empty) {
    display: block;
}

/* Alt Bilgi */
#load_data1 .tour .titledown {
   flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

#load_data1 .tour .titledown .dur {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
}

#load_data1 .tour .titledown .title {
     font-size: 20px;
     font-weight: bold;
     color: #000;
     line-height: 1.4;
     overflow: hidden;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     flex-grow: 1; /* Başlık alanı büyüsün */
     margin-bottom: 25px;
}

/* ===== İNDİRİM FİYAT - SAĞ ALTTA SABİT ===== */
#load_data1 .tour .price-wrapper {
   position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    z-index: 5;
}

#load_data1 .tour .old-price-part {
   display: flex;
    align-items: center;
    gap: 5px;
    color: #aaa;
    font-size: 13px;
}

#load_data1 .tour .old-price {
    text-decoration: line-through;
    font-weight: normal;
}

#load_data1 .tour .new-price {
   background: #4CAF50;
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
}

#load_data1 .tour .new-price::after {
    content: attr(data-per-person);
    display: block;
    font-size: 10px;
    font-weight: normal;
    margin-top: 2px;
    opacity: 0.9;
}

#load_data1 .tour .discount-badge {
   position: absolute;
    top: -10px;
    right: 0;
    transform: translateY(-50%);
    background: #E91E63;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
    z-index: 6;
}

#load_data1 .tour .price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #FBCEDE;
    color: #4A4A4A;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    z-index: 5;
}

/* Mobilde ayar */
 
@media (max-width: 768px) {
    #load_data1 .tour {
        height: 390px;
         max-width: 300px;

    }
}


/* Mobilde ayar */
@media (max-width: 480px) {
#load_data1  .tour {
             height: 390px;

        padding-bottom: 35px;
             max-width: 300px;

    }
   #load_data1 .tour .price-wrapper {
        bottom: 12px;
        right: 12px;
    }
   #load_data1 .tour .new-price {
        font-size: 15px;
        padding: 4px 8px;
    }
  #load_data1 .tour .discount-badge {
        font-size: 11px;
        padding: 3px 8px;
        top: -8px;
    }
}
/* Loader */
#load_data_message1 {
    width: 100%;
    text-align: center;
    padding: 30px;
}

#load_data_message1 .loader {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    color: #C63;
    animation: animloader 1s linear infinite alternate;
}

@keyframes animloader {
    0%   { box-shadow: -38px -12px , -14px 0, 14px 0, 38px 0; }
    33%  { box-shadow: -38px 0px, -14px -12px, 14px 0, 38px 0; }
    66%  { box-shadow: -38px 0px , -14px 0, 14px -12px, 38px 0; }
    100% { box-shadow: -38px 0 , -14px 0, 14px 0 , 38px -12px; }
}

/* RESPONSIVE - KART SAYISI */


@media (min-width: 1200px) {
    #load_data1 .tour {
        flex: 1 1 240px;
        max-width: 300px;
    }
}

@media (min-width: 1600px) {
    #load_data1 .tour {
        flex: 1 1 220px;
        max-width: 280px;
    }
}

/* Mobilde ZORLA 2 tur yan yana */