/* =============================================
   ANA BANNER BÖLÜMÜ - Görseldeki Tasarım
   ============================================= */

/* Ana Section */
.hero-banner-section {
    width: 100%;
    padding: 0 0 20px 0;
    margin: 0;
    overflow: hidden;
    background: #f5f5f5;
}

.banner-container {
    padding: 0 !important;
    margin: 0;
}

.banner-row {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.slider-col {
    padding: 0 !important;
}

.side-card-col {
    padding: 0 !important;
}

/* =============================================
   SOL TARAF - ANA SLIDER
   ============================================= */
.main-slider-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: #f5f5f5;
}

.main-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.main-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.main-slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-inner {
    display: flex;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
}

/* Sol Dekoratif Alan */
.slide-decoration {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.slide-product-images-group{
    display: flex;
    flex-direction: row;
    gap: 100px;
}

/* Kırmızı Dekoratif Şekil */
.decoration-shape {
    position: absolute;
    left: 0;
    top: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(135deg, #c8281e 0%, #a01f17 100%);
    clip-path: ellipse(100% 100% at 0% 50%);
    z-index: 1;
}

.decoration-shape::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

/* Ürün Görseli */
.slide-product-image {
    position: relative;
    z-index: 2;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 15px;
}

/* Badge - Siyah Yuvarlak */
.slide-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 90px;
    height: 90px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.slide-badge span {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    font-style: italic;
}

/* Sağ İçerik Alanı */
.slide-content-area {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 60px 40px 20px;
    position: relative;
}

/* Plus İkonları */
.slide-plus-icon {
    font-size: 24px;
    font-weight: 300;
    color: #c8281e;
    margin-bottom: 10px;
}

.slide-plus-icon.top {
    position: absolute;
    top: 40px;
    left: 50%;
}

.slide-plus-icon.middle {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
}

/* Ana Başlık */
.slide-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #2c2c2c;
    line-height: 1.15;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Kırmızı Çizgi */
.slide-divider {
    width: 60px;
    height: 4px;
    background: #c8281e;
    margin-bottom: 20px;
}

/* Açıklama */
.slide-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* CTA Buton */
.slide-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: transparent;
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #2c2c2c;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.slide-cta-btn:hover {
    background: #c8281e;
    border-color: #c8281e;
    color: #fff;
    transform: translateX(5px);
}

.slide-cta-btn i {
    transition: transform 0.3s ease;
}

.slide-cta-btn:hover i {
    transform: translateX(5px);
}

/* Navigation Arrows */
.slider-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(128, 128, 128, 0.6);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav-arrow:hover {
    background: rgba(128, 128, 128, 0.9);
}

.slider-nav-arrow.prev-arrow {
    left: 15px;
}

.slider-nav-arrow.next-arrow {
    right: 15px;
}

/* =============================================
   SAĞ TARAF - ÜRÜN KARTI
   ============================================= */
.side-product-card {
    width: 100%;
    height: 450px;
    background: linear-gradient(180deg, #c8281e 0%, #a01f17 100%);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Üst Bölüm - Başlık ve İkonlar */
.card-header-section {
    padding: 30px 25px 20px;
    text-align: center;
}

.card-main-title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.card-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.card-feature-item i {
    font-size: 24px;
    color: #fff;
}

.card-feature-item span {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
}

/* Alt Bölüm - Ürün Görseli */
.card-product-section {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.card-product-img {
    max-width: 85%;
    max-height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

.card-product-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.card-product-badge span {
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    font-style: italic;
}

/* =============================================
   ÖZELLİKLER BARI - Slider Altında
   ============================================= */
.features-bar-wrapper {
    background: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 20px 400px 0 400px;
}

.features-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 18px;
    color: #333;
}

.feature-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Responsive Ayarlar */   
@media (max-width: 1280px) {
    .slide-decoration {
        margin-top: 0;
    }

    .main-slider-wrapper {
        height: 520px;
    }

    .slide-product-images-group {
        gap: 50px;
        margin: 0 15px 0 15px;
    }
}
@media (max-width: 1024px) {
    .slide-decoration {
        margin-top: 0;
    }

    .main-slider-wrapper {
        height: 500px;
    }

    .slide-product-images-group {
        gap: 50px;
        margin: 0 70px 0 70px;
    }
}
@media (max-width: 992px) {
    .slide-decoration {
        margin-top: 0;
    }

    .main-slider-wrapper {
        height: 400px;
    }

    .slide-product-images-group {
    gap: 20px;
    }
}
@media (max-width: 768px) {
    .slide-decoration {
        margin-top: 0;
    }

    .main-slider-wrapper {
        height: 400px;
    }

    .slide-product-images-group {
        gap: 20px;
        margin: 0 60px 0 60px;
    }
}
@media (max-width: 576px) {
    .slide-decoration {
        margin-top: 0;
    }

    .main-slider-wrapper {
        height: 300px;
    }

    .slide-product-images-group {
        gap: 20px;
        margin: 0 15px 0 15px;
    }
    .slider-nav-arrow{
        width: 25px;
    }
    .ssp-image-2 {
        display: none;
    }
}
@media (max-width: 480px) {
    .slide-decoration {
        margin-top: 0;
    }
    
    .main-slider-wrapper {
        height: 200px;
    }

    .slide-product-images-group {
        gap: 10px;
        margin: 0 30px 0 40px;
    }
        .slider-nav-arrow{
        width: 25px;
    }
    .ssp-image-2 {
        display: none;
    }
}

/* Features Bar Responsive */
@media (max-width: 1025px) {
    .features-bar-wrapper {
        margin: 0 20px 0 20px;
        padding: 15px 20px;
        width: auto;
    }
    
    .features-bar {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 20px;
        flex-direction: row;
    }

    
    .feature-box {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .features-bar-wrapper {
        margin: 10px 10px 0 10px;
        padding: 15px;
        border-radius: 10px;
        display: none;
    }
    
    .features-bar {
        gap: 15px;
        display: flex;
        flex-wrap: wrap;
    }
    
    .feature-box {
        flex: 0 0 calc(50% - 15px);
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon i {
        font-size: 16px;
    }
    
    .feature-text {
        font-size: 11px;
    }
}

@media (max-width: 400px) {
    .features-bar-wrapper {
        padding: 12px 10px;
    }
    
    .feature-box {
        flex: 0 0 calc(50% - 10px);
    }
    
    .feature-text {
        font-size: 10px;
    }
}

/* =============================================
   WHATSAPP BUTONU
   ============================================= */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-button:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.whatsapp-button i {
    font-size: 32px;
    color: #ffffff;
}

/* Mobil cihazlar için */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 80px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-button i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        bottom: 75px;
        left: 15px;
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-button i {
        font-size: 24px;
    }
}

/* =============================================
   COOKIE CONSENT BANNER
   ============================================= */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    padding: 20px 0;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-icon {
    font-size: 40px;
    color: #d22e2e;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: #28a745;
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.cookie-btn-reject {
    background: #6c757d;
    color: #fff;
}

.cookie-btn-reject:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

/* Mobil için */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 15px 0;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cookie-icon {
        font-size: 32px;
    }
    
    .cookie-text h4 {
        font-size: 16px;
    }
    
    .cookie-text p {
        font-size: 13px;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .cookie-consent-banner {
        padding-bottom: 80px; /* Alt menü için boşluk */
    }
    
    .cookie-icon {
        font-size: 28px;
    }
    
    .cookie-text h4 {
        font-size: 15px;
    }
    
    .cookie-text p {
        font-size: 12px;
    }
}