/* Home Page Styles */

/* Reset body margin for full-width slider */
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f7f7f7;
}

/* Sticky container for the top image */
.sticky-slider-container {
    /* 2560x1024 (2.5:1) masaüstü banner tam otursun */
    aspect-ratio: 2560 / 1024;
    height: auto;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1;
    overflow: hidden;
    isolation: isolate; /* blur katmanlarının dışarı taşan boyamasını izole eder */
}

.slider-image {
    /* Tam otursun: kapsayıcı oranıyla birebir */
    position: relative;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Hero Slider Styles */
.hero-slider {
    width: 100%;
    height: 100%;
}

/* Flickity viewport'un yüksekliğini kapsayıcı ile eşitle */
.hero-slider .flickity-viewport {
    height: 100% !important;
}

/* İç slider katmanını da yüksekliğe zorla */
.hero-slider .flickity-slider {
    height: 100%;
}

.hero-slide {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide img {
    /* 2560x1024 görseli kırpılmadan tam göster */
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background: #000; /* letterbox oluşursa siyah görünür (oran kaçarsa) */
}

/* Flickity Custom Styles */
.hero-slider .flickity-prev-next-button {
    background-color: transparent;

    /* Görünür ve üstte olsun */
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    z-index: 5;
}

/* Sol/sağ konumlar */
.hero-slider .flickity-prev-next-button.previous {
    left: 16px;
}
.hero-slider .flickity-prev-next-button.next {
    right: 16px;
}


.hero-slider .flickity-prev-next-button .flickity-button-icon {
    fill: white;
}

.hero-slider .flickity-page-dots {
    bottom: 30px;
}

.hero-slider .flickity-page-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.hero-slider .flickity-page-dots .dot.is-selected {
    background: #00ff88;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobilde daha okunabilir bir yükseklik için 3:4 oran kullan */
    .sticky-slider-container {
        aspect-ratio: 3 / 4;
    }
    .hero-slider .flickity-prev-next-button {
        width: 40px;
        height: 40px;
    }
    
    .hero-slider .flickity-page-dots .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-slider .flickity-prev-next-button {
        width: 35px;
        height: 35px;
    }
    
    .hero-slider .flickity-page-dots {
        bottom: 20px;
    }
    
    .hero-slider .flickity-page-dots .dot {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
}



/* (Duplicate block removed/merged above) */


.hero-slider .flickity-prev-next-button .flickity-button-icon {
    fill: white;
}

.hero-slider .flickity-page-dots {
    bottom: 30px;
}

.hero-slider .flickity-page-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.hero-slider .flickity-page-dots .dot.is-selected {
    background: #00ff88;
    transform: scale(1.2);
}



.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease-in-out;
    will-change: filter, transform;
    transform: translateZ(0); /* GPU katmanı; kenar artefaktlarını azaltır */
}

.slider-image .page-content,
.slider-image .page-content .container-fluid,
.slider-image .page-content .row,
.slider-image .page-content .pb-module-wrapper,
.slider-image .page-content .pb-module-slider {
    height: 100% !important;
}

/* Wrapper for the main page content that scrolls over the slider */
.page-content-wrapper {
    position: relative;
    z-index: 2;
    background-color: #f0f2f5; /* More distinct gray background */
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: 0; /* slider altını kesmesin */
    box-shadow: 0 -10px 30px rgba(0,0,0,0.08);
    padding: 20px 20px; /* Add horizontal padding */
    padding-bottom: 0px;
    max-width: 1920px; /* Max width */
    margin-left: auto;
    margin-right: auto;
    overflow: visible; /* blur arka planı kesme */
}

/* Bestsellers Section */
.bestsellers-section {
    background-color: #fff;
    border-radius: 24px; /* Slightly larger radius */
    padding: 40px;
    margin-bottom: 30px;
}

.bestsellers-section .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}

.tabs-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.tabs-container::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.bestsellers-section .tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
    min-width: max-content;
}

.bestsellers-section .tab-link {
    display: inline-block;
    padding: 8px 20px;
    margin: 0 8px;
    color: #555;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    cursor: pointer;
}

.bestsellers-section .tab-link.active {
    color: #ff6700;
    border-bottom-color: #ff6700;
}

.bestsellers-section .tab-link:hover {
    color: #ff6700;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.bestsellers-section .promo-banner {
    display: flex;
    background-color: #fdfdfd; /* Slightly off-white */
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 25px;
    align-items: center;
}

.bestsellers-section .promo-image {
    flex: 0 0 58%; /* Adjusted flex ratio */
}

.bestsellers-section .promo-image img {
    width: 100%;
    display: block;
    border-radius: 18px 0 0 18px;
}

.bestsellers-section .promo-text-content {
    flex: 1;
    padding: 40px;
    text-align: center;
}

.bestsellers-section .promo-text-content h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.bestsellers-section .promo-text-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 18px;
}

.bestsellers-section .promo-text-content .promo-date {
    font-size: 14px; 
    color: #777;
}

.bestsellers-section .btn-promo {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 12px 30px; /* Larger button */
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.bestsellers-section .btn-promo:hover {
    background-color: #000;
}

/* En spesifik selector'lar - diğer CSS dosyalarını ezer */
.bestsellers-section .product-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 25px !important; /* Increased gap */
}

.bestsellers-section .product-grid .product-card {
    flex: 1 1 0 !important; /* Esnek genişlik - eşit dağılım */
    min-width: 0 !important; /* Minimum genişlik kısıtlaması yok */
}

.bestsellers-section .product-card {
    background-color: #fff;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #f0f0f0; /* Subtle border */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bestsellers-section .product-card:hover {
    transform: translateY(-2px);
}

.bestsellers-section .product-card img {
    max-width: 80%;
    height: auto;
    margin: 0 auto 20px auto;
}

.bestsellers-section .product-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    min-height: 44px; /* To align titles */
}

.bestsellers-section .product-card > div {
    margin-top: auto;
}

.bestsellers-section .product-card .price {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.bestsellers-section .product-card .price .old-price {
    text-decoration: line-through;
    color: #aaa;
    margin-left: 8px;
}

.bestsellers-section .product-card .old-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 14px;
}

/* Special Offers Section */
.special-offers-section {
    background-color: #fff;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 30px;
}

.special-offers-section .section-title {
    text-align: left;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 35px;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title .scroll-controls {
    display: flex;
    gap: 10px;
}

.scroll-controls .scroll-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #999;
    font-size: 24px;
    line-height: 1;
    outline: none;
}

.scroll-controls .scroll-btn:hover {
    color: #333;
}

.scroll-controls .scroll-btn:focus {
    outline: none;
    box-shadow: none;
}

.scroll-controls .scroll-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.special-offers-grid {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    position: relative;
}

.special-offers-grid::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.special-offer-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 850px;
    max-width: 850px;
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 320px; /* minimum yükseklik */
    height: auto;      /* içerik kadar */
}

.special-offer-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9C3, #8BC540);
    border-radius: 0 0 20px 20px;
}

.special-offer-card:hover {
    transform: translateY(-2px);
}

.card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 300px;
}

.offer-header {
    margin-bottom: 20px;
}

.product-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-align: left;
}

/* Sol taraftaki içerik görünür kalsın */
.offer-bundles {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    flex: 1;
}

.offer-bundle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.bundle-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
}

.bundle-text {
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    flex: 1;
}

.bundle-subtext {
    font-size: 12px;
    color: #6c757d;
    margin-top: 2px;
}

.product-visual {
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    height: 100%; /* sağ sütun yüksekliği kart yüksekliğini izlesin */
    flex: 1;
    margin-left: 20px;
}

/* Görselin kartın sağ tarafını tamamen kaplaması için */
.special-offer-card .card-content {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
}

/* Sağ görsel alanı, taşıyıcıyı esnetecek ve görseli bozmadan dolduracak şekilde ayarlandı */
.special-offer-card .product-visual.full-image {
    flex: 1 1 50%;
    position: relative;
    overflow: hidden; /* taşmaları gizle */
    border-radius: 16px; /* görsel kenarlarını yumuşat */
    height: 100%; /* sütun yüksekliği kart ile eşitlensin */
    min-height: 320px;
    display: block;
    align-self: stretch;
}

.special-offer-card {
    /* iki sütun: sol içerik, sağ görsel */
}

.watch-display {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    margin-right: 20px;
}

.watch-item {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.watch-black {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border: 2px solid #1a252f;
}

.watch-silver {
    background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
    border: 2px solid #95a5a6;
}

.watch-blue {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border: 2px solid #1f618d;
}

.watch-screen {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 8px;
    text-align: center;
    padding: 5px;
}

.watch-black .watch-screen {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.watch-silver .watch-screen {
    background: linear-gradient(135deg, #00d4aa, #00b8d4);
}

.watch-blue .watch-screen {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.watch-time {
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 2px;
}

.watch-date {
    font-size: 7px;
    opacity: 0.8;
    margin-bottom: 3px;
}

.watch-details {
    display: flex;
    gap: 3px;
    align-items: center;
}

.detail-item {
    font-size: 6px;
    opacity: 0.7;
}

.detail-icon {
    font-size: 8px;
}

/* Görsel taşıyıcı; mutlak konum yerine akışta esneyerek bozulmayı azaltır */
.store-product-display {
    position: absolute; /* sağ sütunu tam kapla */
    inset: 0;
    display: block;
    margin: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e9ecef;
    
}

/* Görsel yerleşimi: varsayılan cover, bozulma durumunda contain/scale-down seçeneği */
.product-image {
    position: relative;
    inset: 0;
    width: 100%;
    height: auto;
    object-fit: contain; /* bozulmayı engelle - tamamı görünür */
    object-position: center right; /* sağ odak */
    background: #f3f4f6; /* letterbox alanları arkaplana boyar */
    display: block;
}

/* Fiyat ve buton alanı görünür */
.offer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    gap: 30px;
}

.price-section {
    display: flex;
    flex-direction: column;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.price-details {
    font-size: 12px;
    color: #6c757d;
    line-height: 1.3;
}

.buy-button {
    background-color: #333;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.buy-button:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: #fff;
    text-decoration: none;
}

.etbis-code {
    border-radius: 10px;
    padding: 12px;
    background-color: #2a2a2a;
    margin-top: 20px;
    text-align: center;
}


/* Desktop - 1200px üzeri: 4 ürün */
@media (min-width: 1201px) {
    .bestsellers-section .product-grid .product-card {
        flex: 1 1 0 !important; /* 4 ürün eşit dağılım */
    }
}

/* Tablet - 900px ile 1200px arası: 3 ürün */
@media (min-width: 901px) and (max-width: 1200px) {
    .bestsellers-section .product-grid .product-card {
        flex: 1 1 0 !important; /* 3 ürün eşit dağılım */
    }
}

/* 900px ile 768px arası: 2x2 düzen (2 üstte, 2 altta) - 4 ürün */
@media (min-width: 768px) and (max-width: 900px) {
    .bestsellers-section .product-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important; /* 2 sütun */
        grid-template-rows: auto auto !important; /* 2 satır */
        gap: 25px !important;
    }
    
    .bestsellers-section .product-grid .product-card {
        flex: none !important; /* Grid kullanacağımız için flex'i devre dışı bırak */
        width: 100% !important;
        height: auto !important;
    }
    
    /* 4 ürün göster - 2x2 düzen */
    .bestsellers-section .product-grid .product-card:nth-child(4) {
        display: block !important;
    }
}

/* 1150px ile 900px arası: 3 ürün göster, 4. ürünü gizle */
@media (min-width: 901px) and (max-width: 1150px) {
    .bestsellers-section .product-grid .product-card:nth-child(4) {
        display: none !important;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    /* Kart yüksekliği sabit yerine esnek yapıldı; bozulmayı azaltır */
    .special-offer-card {
        background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
        border-radius: 20px;
        padding: 30px;
        border: 1px solid #e9ecef;
        transition: transform 0.3s ease;
        position: relative;
        overflow: hidden;
        min-width: 850px;
        max-width: 850px;
        flex-shrink: 0;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        min-height: 320px; /* minimum yüksekliği koru */
        height: auto;      /* içeriğe göre esne */
    }
    
    .card-content {
        min-width: 200px;
    }
    
    .product-visual {
        margin-left: 15px;
    }
}

@media (max-width: 768px) {
    .bestsellers-section .tabs {
        justify-content: flex-start;
    }
    
    .bestsellers-section .promo-banner {
        flex-direction: column;
    }
    
    .bestsellers-section .promo-image {
        flex: 1;
    }
    
    .bestsellers-section .promo-image img {
        border-radius: 18px 18px 0 0;
    }
    
    /* 900px altında 2'li sıralı */
    .bestsellers-section .product-grid {
        gap: 20px !important;
    }
    
    .bestsellers-section .product-grid .product-card {
        flex: 1 1 calc(50% - 10px) !important; /* 2 ürün eşit dağılım */
    }
    
    .special-offers-section .section-title {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .scroll-controls {
        align-self: center;
    }
    
    .special-offers-grid {
        gap: 15px;
    }
    
    .special-offer-card {
        padding: 20px;
        min-width: 350px;
        max-width: 350px;
        flex-direction: column;
    }
    
    .card-content {
        min-width: auto;
        margin-bottom: 20px;
    }
    
    .product-visual {
        margin-left: 0;
        margin-top: 20px;
        justify-content: center;
    }
    
    .watch-display {
        gap: 10px;
        margin-right: 10px;
        justify-content: center;
    }
    
    .watch-item {
        width: 60px;
        height: 60px;
    }
    
    .watch-screen {
        width: 45px;
        height: 45px;
    }
    
    .offer-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .price {
        font-size: 24px;
    }
    
    .store-product-display {
        margin-right: 0;
        justify-content: center;
        min-height: 150px;
    }
    
    .product-image {
        width: 100%;
        height: auto;
        background-color: #fff;
    }
}

@media (max-width: 550px) {
    /* 550px altında tek tek ürün */
    .bestsellers-section .product-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .bestsellers-section .product-grid .product-card {
        flex: 1 1 100% !important; /* 1 ürün tam genişlik */
        width: 100% !important;
    }
    
    /* Tüm ürünleri göster */
    .bestsellers-section .product-grid .product-card:nth-child(4) {
        display: block !important;
    }
}

@media (max-width: 480px) {
    /* 480px altında da tek tek ürün */
    .bestsellers-section .product-grid {
        gap: 15px !important;
    }
    
    .bestsellers-section .product-grid .product-card {
        flex: 1 1 100% !important; /* 1 ürün tam genişlik */
    }
    
    .special-offer-card {
        min-width: 300px;
        max-width: 300px;
        padding: 15px;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .price {
        font-size: 20px;
    }
    
    .buy-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .product-image {
        max-width: 200px;
        max-height: 120px;
    }
}

/* Tablet-specific styles for special offer cards */
@media (min-width: 768px) and (max-width: 1100px) {
    .special-offer-card {
        min-width: 600px; /* Adjust width for tablet */
        max-width: 600px;
        padding: 20px;
        align-items: center; /* Vertically align content and visual parts */
    }

    .special-offer-card .product-visual {
        display: flex !important;
        align-items: center !important; /* Vertically center the inner container */
        justify-content: center !important; /* Horizontally center the inner container */
        height: 100% !important;
    }

    .special-offer-card .product-visual {
        width: 100%;
        height: auto;
        background-color: #fff !important;
    }

    .special-offer-card .product-visual .product-image {
        position: absolute;
        top: 10%;
        background-color: #fff;
    }

    .product-title {
        font-size: 20px;
    }

    .bundle-text {
        font-size: 13px;
    }

    .price {
        font-size: 24px;
    }

    .buy-button {
        padding: 10px 24px;
        font-size: 15px;
    }
}

/* Özel teklifler ve kategori kutucukları CSS'leri artık special-offers.css dosyasında */

/* ===== GREEN'İ KEŞFEDİN BÖLÜMÜ (Flickity Carousel) ===== */
.green-discover-section {
    background-color: transparent;
    padding: 40px 20px;
    margin-bottom: 30px;
}

.green-discover-section .section-title {
    text-align: left;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Carousel Navigation Buttons - En sağda */
.carousel-nav-buttons {
    display: flex;
    gap: 10px;
}

.nav-btn {
    background: #fff;
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #e0e0e0;
    transform: scale(1.05);
}

.nav-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

/* Flickity Carousel Stilleri */
.carousel {
    background: transparent;
}

.carousel-cell {
    width: 50%;
    height: 400px;
    margin-right: 10px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.card-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Flickity Navigation Buttons - Gizli */
/* Flickity varsayılan butonlarını gizleme kaldırıldı - butonlar görünür olacak */
/* .flickity-button { display: none; } */

/* Responsive Tasarım */
@media (max-width: 768px) {
    .carousel-cell {
        width: 100%;
    }
    
    /* Mobilde de okları göster; boyutu küçült */
    .hero-slider .flickity-prev-next-button {
        width: 36px;
        height: 36px;
    }
}

/* ===== GREEN DESTEĞİ BÖLÜMÜ ===== */
.green-support-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
    margin-bottom: 30px;
    text-align: center;
}

.support-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    text-align: center;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.support-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.support-icon {
    margin-bottom: 20px;
    color: #666;
}

.support-icon svg {
    width: 48px;
    height: 48px;
}

.support-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
}

.support-item-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .green-support-section {
        padding: 40px 20px;
    }
    
    .support-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .support-item {
        padding: 15px;
    }
    
    .support-item-title {
        font-size: 16px;
    }
    
    .support-item-desc {
        font-size: 13px;
    }
}

/* ===== GREEN FOOTER BÖLÜMÜ ===== */
.green-footer-section {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 0 0;
    position: relative;
    z-index: 1;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

/* Ana Footer İçeriği */
.footer-main-content {
    margin-bottom: 40px;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8bc540;
}

/* İletişim Bilgileri */
.contact-info {
    color: #cccccc;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    color: #ffffff;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 14px;
    margin: 4px 0;
    line-height: 1.4;
}

/* Sosyal Medya Bölümü */
.footer-social-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon:hover {
    background-color: #8bc540;
    transform: scale(1.1);
    color: #ffffff;
}

.social-icon.facebook:hover {
    background-color: #1877f2;
}

.social-icon.youtube:hover {
    background-color: #ff0000;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.twitter:hover {
    background-color: #1da1f2;
}

.social-icon.tiktok:hover {
    background-color: #000000;
}

/* Newsletter Butonu */
.newsletter-btn {
    background-color: #2a2a2a;
    border: none;
    border-radius: 8px;
    padding: 15px 20px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    line-height: 1.4;
}

.newsletter-btn:hover {
    background-color: #8bc540;
    color: #000;
}

.newsletter-btn i {
    margin-left: 10px;
}



/* Alt Footer */
.footer-bottom {
    padding: 20px 0;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 60px);
    max-width: 1400px;
    height: 1px;
    background-color: #2a2a2a;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Üst Navigasyon */
.footer-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.footer-navigation a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-navigation a:hover {
    color: #8bc540;
}

/* Alt Bilgi Alanı */
.footer-bottom-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.copyright {
    color: #cccccc;
    font-size: 14px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.language-selector:hover {
    color: #8bc540;
}

.language-selector a {
    color: #cccccc;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-social-section {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .green-footer-section {
        padding: 40px 0 0 0;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-social-section {
        grid-column: span 1;
    }
    

    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-navigation {
        justify-content: center;
        gap: 20px;
    }
    
    .footer-bottom-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .newsletter-btn {
        font-size: 13px;
        padding: 12px 15px;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .social-icons {
        justify-content: center;
    }
    

}
