/* Tour Shortcodes CSS */

/* ==========================================================================
   GENEL STİLLER
   ========================================================================== */
.no-tours {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-style: italic;
    background: #f8f9fa;
    border-radius: 8px;
}

/* ==========================================================================
   ANASAYFA SERGİLENEN ÜRÜNLER
   ========================================================================== */
.anasayfa-sergilenen-urunler {
    margin: 20px 0;
}

/* Main Title */
.anasayfa-sergilenen-urunler .main-title {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 25px 0;
    text-align: center;
}

/* Tab Navigation */
.anasayfa-sergilenen-urunler .tab-navigation {
    display: flex;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.anasayfa-sergilenen-urunler .tab-btn {
    flex: 1;
    padding: 16px 24px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    line-height: 1.3;
}

.anasayfa-sergilenen-urunler .tab-btn .date-range {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
}

.anasayfa-sergilenen-urunler .tab-btn:hover {
    background: rgba(255, 193, 7, 0.1);
    color: #333;
}

.anasayfa-sergilenen-urunler .tab-btn.active {
    background: linear-gradient(135deg, #fcda00 0%, #fcb600 100%);
    color: white;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Tab Contents */
.anasayfa-sergilenen-urunler .tab-contents {
    background: white;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.anasayfa-sergilenen-urunler .tab-content {
    display: none;
    padding: 30px;
}

.anasayfa-sergilenen-urunler .tab-content.active {
    display: block;
}

/* Products List */
.anasayfa-sergilenen-urunler .products-list {
    padding: 0;
}

.anasayfa-sergilenen-urunler .no-products {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 0;
}

.anasayfa-sergilenen-urunler .products-text {
    color: #2d3748;
    font-size: 15px;
    line-height: 1.6;
    text-align: justify;
    padding: 0;
}

/* Tours Grid */
.anasayfa-sergilenen-urunler .tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.anasayfa-sergilenen-urunler .tour-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.anasayfa-sergilenen-urunler .tour-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Tour Image */
.anasayfa-sergilenen-urunler .tour-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.anasayfa-sergilenen-urunler .tour-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
}

.anasayfa-sergilenen-urunler .tour-item:hover .tour-img {
    transform: scale(1.05);
}

.anasayfa-sergilenen-urunler .tour-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    font-weight: bold;
}

/* Countdown Overlay */
.anasayfa-sergilenen-urunler .countdown-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 8px 12px;
    display: flex;
    gap: 12px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.anasayfa-sergilenen-urunler .countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 28px;
}

.anasayfa-sergilenen-urunler .countdown-number {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: #ffc107;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.anasayfa-sergilenen-urunler .countdown-label {
    font-size: 10px;
    opacity: 0.9;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tour Info */
.anasayfa-sergilenen-urunler .tour-info {
    padding: 24px;
}

.anasayfa-sergilenen-urunler .tour-title {
    margin: 0 0 16px 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.anasayfa-sergilenen-urunler .tour-title a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.2s ease;
}

.anasayfa-sergilenen-urunler .tour-title a:hover {
    color: #ffc107;
}

.anasayfa-sergilenen-urunler .tour-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.anasayfa-sergilenen-urunler .tour-dates,
.anasayfa-sergilenen-urunler .tour-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
}

.anasayfa-sergilenen-urunler .icon-calendar,
.anasayfa-sergilenen-urunler .icon-location {
    width: 16px;
    height: 16px;
    background: #ffc107;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.anasayfa-sergilenen-urunler .icon-calendar::before,
.anasayfa-sergilenen-urunler .icon-location::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 2px;
}

.anasayfa-sergilenen-urunler .tour-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.anasayfa-sergilenen-urunler .price-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.anasayfa-sergilenen-urunler .price-amount {
    font-size: 18px;
    font-weight: 700;
    color: #059669;
}

/* ==========================================================================
   ANASAYFA LİSTE
   ========================================================================== */
.anasayfa-liste {
    margin: 20px 0;
}

.anasayfa-liste .airline-section {
    margin-bottom: 60px;
}

.anasayfa-liste .airline-section:last-child {
    margin-bottom: 0;
}

/* Airline Header */
.anasayfa-liste .airline-header {
    margin-bottom: 30px;
    padding: 25px 30px;


    position: relative;
    overflow: hidden;
}



.anasayfa-liste .airline-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%);
    background-size: 20px 20px;
    opacity: 0.3;
}

.anasayfa-liste .airline-info {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.anasayfa-liste .airline-logo .logo-bg {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.anasayfa-liste .airline-title {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Tours Slider */
.anasayfa-liste .tours-slider {
    position: relative;
}

.anasayfa-liste .tours-slider .swiper-wrapper {
    padding-bottom: 30px;
}

/* Tour Cards */
.anasayfa-liste .tour-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.anasayfa-liste .tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.anasayfa-liste .tour-card-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

/* Countdown Overlay */
.anasayfa-liste .tour-countdown-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 10px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.anasayfa-liste .countdown-item {
    display: inline-block;
    margin: 0 3px;
}

.anasayfa-liste .days,
.anasayfa-liste .hours {
    display: block;
    font-size: 18px;
    font-weight: bold;
}

.anasayfa-liste .label {
    font-size: 10px;
    opacity: 0.9;
    text-transform: uppercase;
}

.anasayfa-liste .card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.anasayfa-liste .tour-card:hover .card-image {
    transform: scale(1.05);
}

.anasayfa-liste .card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
}

/* Card Countdown */
.anasayfa-liste .card-countdown {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 8px 12px;
    display: flex;
    gap: 12px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.anasayfa-liste .card-countdown .countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 28px;
}

.anasayfa-liste .card-countdown .countdown-number {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: #ffc107;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.anasayfa-liste .card-countdown .countdown-label {
    font-size: 10px;
    opacity: 0.9;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.anasayfa-liste .card-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.anasayfa-liste .card-airline-badge div {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.9);
}

.anasayfa-liste .tour-card-content {
    padding: 20px;
}

.anasayfa-liste .tour-card-title {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.anasayfa-liste .tour-card-title a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.2s ease;
}

.anasayfa-liste .tour-card-title a:hover {
    color: #ffc107;
}

.anasayfa-liste .tour-card-meta {
    margin-bottom: 18px;
}

.anasayfa-liste .tour-location,
.anasayfa-liste .tour-dates {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #64748b;
}

.anasayfa-liste .tour-location:last-child,
.anasayfa-liste .tour-dates:last-child {
    margin-bottom: 0;
}

.anasayfa-liste .tour-card-price {
    border-top: 1px solid #e2e8f0;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.anasayfa-liste .price-from {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.anasayfa-liste .price-amount {
    font-size: 22px;
    font-weight: 700;
    color: #f39c12;
}

/* Navigation */
.anasayfa-liste .tours-slider-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    transform: translateY(-50%);
}

.anasayfa-liste .tours-slider-navigation>div {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    margin: 0 -22px;
}
 
.anasayfa-liste .tours-slider-navigation>div:hover {
    border-color: #ffc107;
    color: #000;
    background: #ffc107;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .anasayfa-sergilenen-urunler .tours-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .anasayfa-liste .airline-title {
        font-size: 24px;
    }

    .anasayfa-liste .airline-logo .logo-bg {
        width: 70px !important;
        height: 70px !important;
    }
}

@media (max-width: 768px) {
    .anasayfa-sergilenen-urunler .tab-btn {
        padding: 12px 16px;
        font-size: 14px;
    }

    .anasayfa-sergilenen-urunler .tab-content {
        padding: 20px;
    }

    .anasayfa-sergilenen-urunler .tours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .anasayfa-liste .airline-header {
        padding: 20px;
    }

    .anasayfa-liste .airline-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .anasayfa-liste .airline-title {
        font-size: 20px;
    }

    .anasayfa-liste .airline-logo .logo-bg {
        width: 60px !important;
        height: 60px !important;
    }

    .anasayfa-liste .tour-card-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .anasayfa-sergilenen-urunler .tab-navigation {
        flex-direction: column;
    }

    .anasayfa-sergilenen-urunler .tab-btn {
        text-align: center;
    }

    .anasayfa-sergilenen-urunler .tour-image {
        height: 200px;
    }

    .anasayfa-sergilenen-urunler .countdown-overlay,
    .anasayfa-liste .card-countdown {
        top: 10px;
        left: 10px;
        padding: 6px 8px;
        gap: 8px;
    }

    .anasayfa-sergilenen-urunler .countdown-number,
    .anasayfa-liste .countdown-number {
        font-size: 14px;
    }

    .anasayfa-sergilenen-urunler .countdown-item,
    .anasayfa-liste .countdown-item {
        min-width: 24px;
    }

    .anasayfa-liste .airline-section {
        margin-bottom: 40px;
    }

    .anasayfa-liste .tour-card-image {
        height: 180px;
    }

    .anasayfa-liste .tours-slider-navigation>div {
        width: 40px;
        height: 40px;
        margin: 0 -20px;
    }
}

/* ==========================================================================
   ANIMASYONLAR
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anasayfa-sergilenen-urunler .tour-item,
.anasayfa-liste .tour-card {
    animation: fadeInUp 0.6s ease-out;
}

.anasayfa-sergilenen-urunler .airline-header,
.anasayfa-liste .airline-header {
    animation: fadeInUp 0.8s ease-out;
}

/* ==========================================================================
   ANASAYFA LİSTE - SLIDER VE COUNTDOWN
   ========================================================================== */

/* Slider Yapısı */
.anasayfa-liste .tours-slider {
    position: relative;
}

.anasayfa-liste .swiper {
    padding: 0 50px;
    /* Navigation için boşluk */
}

/* Navigation Butonları */
.anasayfa-liste .tours-slider-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.anasayfa-liste .tours-slider-navigation>div {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* .anasayfa-liste .tours-slider-navigation>div:hover {
    background: #f8f9fa;
    border-color: #007bff;
    color: #007bff;
} */

.anasayfa-liste .china-swiper-button-prev,
.anasayfa-liste .turkish-swiper-button-prev {
    left: 10px;
}

.anasayfa-liste .china-swiper-button-next,
.anasayfa-liste .turkish-swiper-button-next {
    right: 10px;
}

/* Countdown Timer */
.anasayfa-liste .tour-countdown {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    text-align: center;
}

.anasayfa-liste .countdown-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    opacity: 0.9;
    font-weight: 600;
}

.anasayfa-liste .countdown-display {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.anasayfa-liste .countdown-item {
    text-align: center;
}

.anasayfa-liste .countdown-number {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.anasayfa-liste .countdown-label {
    font-size: 11px;
    text-transform: uppercase;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

/* Grid Yapısından Slider Yapısına Geçiş */
.anasayfa-liste .tours-grid {
    display: block;
    /* Grid yerine block */
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .anasayfa-liste .swiper {
        padding: 0 40px;
    }

    .anasayfa-liste .tours-slider-navigation>div {
        width: 40px;
        height: 40px;
    }

    .anasayfa-liste .china-swiper-button-prev,
    .anasayfa-liste .turkish-swiper-button-prev {
        left: 5px;
    }

    .anasayfa-liste .china-swiper-button-next,
    .anasayfa-liste .turkish-swiper-button-next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .anasayfa-liste .swiper {
        padding: 0 35px;
    }

    .anasayfa-liste .tours-slider-navigation>div {
        width: 35px;
        height: 35px;
        margin: 0 -17px;
    }

    .anasayfa-liste .countdown-display {
        gap: 10px;
    }

    .anasayfa-liste .countdown-number {
        font-size: 18px;
    }
}

.anasayfa-liste {
    margin: 20px 0;
}

.anasayfa-liste .tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.anasayfa-liste .tour-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.anasayfa-liste .tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Tur Kartı Resim */
.anasayfa-liste .tour-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.anasayfa-liste .card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.anasayfa-liste .card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.anasayfa-liste .card-image-placeholder i {
    font-size: 24px;
    margin-bottom: 8px;
}

.anasayfa-liste h2 span {
    font-size: 48px;
}

/* Havayolu Badge */
.anasayfa-liste .airline-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.anasayfa-liste .airline-logo {
    width: 90px;
    height: 90px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
}

/* Tur Kartı İçerik */
.anasayfa-liste .tour-card-content {
    padding: 20px;
}

.anasayfa-liste .tour-card-title {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.anasayfa-liste .tour-card-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.anasayfa-liste .tour-card-title a:hover {
    color: #e74c3c;
}

/* Meta Bilgiler */
.anasayfa-liste .tour-card-meta {
    margin: 15px 0;
}

.anasayfa-liste .tour-location,
.anasayfa-liste .tour-dates {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
    color: #666;
}

.anasayfa-liste .tour-location svg,
.anasayfa-liste .tour-dates svg {
    margin-right: 8px;
    flex-shrink: 0;
}

/* Fiyat */
.anasayfa-liste .tour-card-price {
    border-top: 1px solid #eee;
    padding-top: 15px;
    text-align: center;
}

.anasayfa-liste .price-from {
    display: block;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    font-weight: 600;
}

.anasayfa-liste .price-amount {
    font-size: 22px;
    font-weight: 700;
    color: #f39c12;
}

/* China Southern Airlines fiyat rengi sarı */
.anasayfa-liste .china-southern-price {
    color: #f39c12 !important;
    /* Sarı renk */
}

/* Havayolu bölüm başlıkları */
.anasayfa-liste .airline-section {
    margin-bottom: 40px;
}

.anasayfa-liste .airline-header {
    margin-bottom: 20px;
    padding: 20px 0;
    border-bottom: 2px solid #eee;
}

.anasayfa-liste .airline-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.anasayfa-liste .airline-header .airline-logo {
    width: 120px;
    height: 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.anasayfa-liste .airline-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .anasayfa-liste .tours-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .anasayfa-liste .tour-card-content {
        padding: 15px;
    }

    .anasayfa-liste .tour-card-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .anasayfa-liste .tour-card-content {
        padding: 12px;
    }

    .anasayfa-liste .tour-card-image {
        height: 160px;
    }

    .anasayfa-liste .airline-badge {
        width: 40px;
        height: 40px;
        top: 8px;
        right: 8px;
    }

    .anasayfa-liste .airline-logo {
        width: 30px;
        height: 30px;
    }
}