/* WhatsApp Modülü - Bukalemun Efektli CSS */

.whatsapp-container-x {
    position: fixed !important;
    bottom: 125px !important;
    left: 20px !important;
    width: 70px !important;
    height: 70px !important;
    cursor: pointer !important;
    z-index: 999999 !important;
    pointer-events: auto !important;
    filter: drop-shadow(0 8px 20px rgba(37, 211, 102, 0.3)) !important;
}

.whatsapp-container-x:hover {
    animation: container-shake-x 0.5s ease !important;
}

@keyframes container-shake-x {
    0%, 100% { transform: translateX(0) scale(1); }
    25% { transform: translateX(-3px) rotate(-2deg) scale(1); }
    75% { transform: translateX(3px) rotate(2deg) scale(1); }
}

/* Ripple Efekti - Taşma Yok */
.ripple-x {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    border-radius: 50% !important;
    pointer-events: none !important;
}

.ripple-x:nth-child(1) {
    width: 70px !important;
    height: 70px !important;
    border: 2.5px solid rgba(37, 211, 102, 0.9) !important;
    animation: ripple-wave-x 2s ease-out infinite !important;
}

.ripple-x:nth-child(2) {
    width: 70px !important;
    height: 70px !important;
    border: 2.5px solid rgba(37, 211, 102, 0.7) !important;
    animation: ripple-wave-x 2s ease-out infinite 0.6s !important;
}

.ripple-x:nth-child(3) {
    width: 70px !important;
    height: 70px !important;
    border: 2.5px solid rgba(37, 211, 102, 0.5) !important;
    animation: ripple-wave-x 2s ease-out infinite 1.2s !important;
}

@keyframes ripple-wave-x {
    0% {
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Pulse Efekti */
.pulse-x {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 50px !important;
    height: 50px !important;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.6) 0%, transparent 100%) !important;
    border-radius: 50% !important;
    animation: pulse-glow-x 1.5s ease-out infinite !important;
    pointer-events: none !important;
}

@keyframes pulse-glow-x {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

/* Ana Buton - Sadece Yeşil Tonları */
.whatsapp-button-x {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 999999 !important;
    pointer-events: auto !important;
    box-shadow: 
        0 8px 25px rgba(37, 211, 102, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 8px rgba(0, 0, 0, 0.2) !important;
    animation: button-breathe-x 3s ease-in-out infinite, green-gradient-x 6s ease-in-out infinite !important;
}

/* Sadece Yeşil Tonları - Mavi Yok */
@keyframes green-gradient-x {
    0%, 100% {
        background: linear-gradient(145deg, #2ef37d 0%, #25d366 50%, #1ea952 100%);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -2px 8px rgba(0, 0, 0, 0.2);
    }
    50% {
        background: linear-gradient(145deg, #34f589 0%, #28d96e 50%, #1fb55d 100%);
        box-shadow: 0 8px 25px rgba(40, 217, 110, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -2px 8px rgba(0, 0, 0, 0.15);
    }
}

@keyframes button-breathe-x {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.whatsapp-button-x:hover {
    transform: translate(-50%, -50%) scale(1.15) !important;
    animation: button-pulse-hover-x 0.6s ease-in-out infinite, green-gradient-x 6s ease-in-out infinite !important;
}

@keyframes button-pulse-hover-x {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1.15);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.whatsapp-button-x:active {
    transform: translate(-50%, -50%) scale(0.95) !important;
}

/* İkon Animasyonu */
.whatsapp-icon-x {
    width: 35px !important;
    height: 35px !important;
    object-fit: contain !important;
    pointer-events: none !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)) !important;
    animation: icon-swing-x 2s ease-in-out infinite !important;
}

@keyframes icon-swing-x {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    10% {
        transform: rotate(-15deg) scale(1.1);
    }
    20% {
        transform: rotate(15deg) scale(1.1);
    }
    30% {
        transform: rotate(-10deg) scale(1.05);
    }
    40% {
        transform: rotate(10deg) scale(1.05);
    }
    50%, 90% {
        transform: rotate(0deg) scale(1);
    }
}

.whatsapp-button-x:hover .whatsapp-icon-x {
    animation: icon-jump-x 0.6s ease-in-out infinite !important;
}

@keyframes icon-jump-x {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-4px) scale(1.1);
    }
}

/* Tooltip */
.tooltip-x {
    position: absolute !important;
    bottom: 75px !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(10px) !important;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%) !important;
    color: #1a1a1a !important;
    padding: 8px 14px !important;
    border-radius: 18px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    opacity: 0 !important;
    transition: all 0.4s ease !important;
    white-space: nowrap !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    pointer-events: none !important;
    z-index: 999999 !important;
}

.tooltip-x::after {
    content: '' !important;
    position: absolute !important;
    bottom: -6px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 0 !important;
    height: 0 !important;
    border-left: 8px solid transparent !important;
    border-right: 8px solid transparent !important;
    border-top: 8px solid #f5f5f5 !important;
}

.whatsapp-container-x:hover .tooltip-x {
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0) !important;
}

/* Glow Ring Efekti */
.whatsapp-button-x::before {
    content: '' !important;
    position: absolute !important;
    top: -6px !important;
    left: -6px !important;
    right: -6px !important;
    bottom: -6px !important;
    border-radius: 50% !important;
    background: conic-gradient(
        from 0deg,
        rgba(37, 211, 102, 0.4),
        rgba(37, 211, 102, 0.2),
        rgba(37, 211, 102, 0.4),
        rgba(37, 211, 102, 0.2),
        rgba(37, 211, 102, 0.4)
    ) !important;
    animation: rotate-glow-x 3s linear infinite !important;
    z-index: -1 !important;
    opacity: 0.8 !important;
    filter: blur(6px) !important;
}

@keyframes rotate-glow-x {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.whatsapp-button-x:hover::before {
    animation: rotate-glow-fast-x 1s linear infinite !important;
    opacity: 1 !important;
}

@keyframes rotate-glow-fast-x {
    0% {
        transform: rotate(0deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1.1);
    }
}

/* Shimmer Efekti */
.whatsapp-container-x::after {
    content: '' !important;
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 60%) !important;
    animation: shimmer-x 2s ease-in-out infinite 0.5s !important;
    pointer-events: none !important;
}

@keyframes shimmer-x {
    0%, 100% {
        opacity: 0;
        transform: rotate(0deg);
    }
    50% {
        opacity: 0.6;
        transform: rotate(180deg);
    }
}
/* WhatsApp Modülü - Benzersiz CSS Kodları */


/* Sabit Sosyal Medya Konteyneri */
/* Ana Konumlandırma Kuralları (Değişmez) */
.fixed-social-media-container {
    position: fixed;
    top: 50%;
    right: 0; 
    transform: translateY(-50%); 
    z-index: 1000;
    background-color: #f8f9fa;
    border-radius: 5px 0px 0px 5px;
}

/* Liste Noktalarını Kaldırma */
.fixed-social-media-container ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Kutu ve Animasyon Ayarları (Masaüstü) */
.fixed-social-media-container ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    
    width: 40px;      /* Masaüstü Kutu Genişliği */
    height: 40px;     /* Masaüstü Kutu Yüksekliği */
    
    margin-bottom: 2px; 
    
    background-color: #FFFFFF; /* Beyaz Arka Plan */
    border-radius: 5px 0px 0px 5px;
    
    transform: translateX(0);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* RESİM BOYUTU KURALI: Kutuya sığdır */
.fixed-social-media-container ul li a img {
    max-width: 60%;  /* Resmin kutunun %60'ını kaplamasını sağlar */
    max-height: 60%; /* Resmin kutunun %60'ını kaplamasını sağlar */
    width: auto;     /* Görüntü oranını korur */
    height: auto;
}

/* Hover (Fare Üzerine Gelme) Efekti */
.fixed-social-media-container ul li a:hover {
    background-color: #FFFFFF;; /* Hover'da hafif gri arka plan */
    transform: translateX(-8px); /* İçeriye daha belirgin kayma animasyonu */
    box-shadow: 0 6px 12px rgba(0,0,0,0.15); 
}

@media (max-width: 575.98px) {
    .fixed-social-media-container ul li a {
        width: 32px;       /* Mobil Kutu Genişliği */
        height: 32px;      /* Mobil Kutu Yüksekliği */
        margin-bottom: 3px; 
        border-radius: 5px 0 0 5px; 
    }
    
    .fixed-social-media-container ul li a img {
        max-width: 70%; /* Mobil kutuya daha iyi sığdırmak için */
        max-height: 70%;
    }
}

/* Sabit Sosyal Medya Konteyneri */




.tp-mobile-menu
 {
    box-shadow: -1px -7px 15px -4px rgb(0 0 0 / 15%) !important;
}

.tp-mobile-item svg {
    height: 2rem;
    width: revert-layer;
}

@media (min-width: 1200px) {
    .col-xl-10 {
        flex: 0 0 auto;
        width: 100% !important;
    }
}

/* SADECE ÜRÜN DETAY SAYFASINDAKİ COL-LG-4 HİZALAMASINI DÜZELTİR */
/* 'template-product-detail' sınıfının ürün detay sayfanızı kapsadığını varsayıyoruz. */
.template-product-detail @media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 auto !important;
        width: 33.33333333% !important; 
        background-color: #f9f9f9 !important;
        padding: 10px !important;
        border: 1px solid #eee !important;
        border-radius: 7px !important;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        background-color: #f9f9f9 !important;
        padding: 10px !important;
        border: 1px solid #eee !important;
        border-radius: 7px !important;
    }
}
/* Ürün Görseli Çevresine Kenarlık ve Yuvarlatma Ekleme */
.bb-product-gallery-images {
    /* İstenen Kenarlık Stili */
    border: 1px solid #e6e7e8;
    
    /* İstenen Kenar Yuvarlatma */
    border-radius: 5px;
    
    /* Önemli Not: Kenarlık eklenince görselin kaymaması için biraz iç boşluk (padding) eklemek iyi olabilir. */
 padding: 5px;
    
    /* Gerekirse, taşan içeriğin kenarlık içinde kalmasını sağlamak için */
    /* overflow: hidden; */
}

/* Temanızın CSS dosyasına ekleyin */
.breadcrumb__area {
    border-bottom: 1px solid #dc3545 !important; 
    /* !important, diğer stilleri ezmek için gerekebilir */
}

@media (max-width: 575px) {
    .tp-product-details-additional-info {
        overflow-x: visible !important;
    }
}

.tp-product-details-additional-info table tr td {
    padding: 5px 15px !important;
}

.tp-product-details-additional-info table tr td:first-child {
    background-color: #f9f9f9;
    color: var(--tp-common-black);
    font-size: 16px;
    width: auto !important;
}

.tp-faq-wrapper .accordion .accordion-header .accordion-button {
    background: #fbfbfb !important;
    font-size: 16px;
    font-weight: 600;
}

.tp-product-sm-item:not(:last-child) {
    border: 1px solid var(--tp-border-primary) !important;
    margin-bottom: 12px !important;
    padding: 3px !important;
    border-radius: 5px;
    background-color: #fdfdfd;
}

.tp-header-search-btn button {
    --tp-btn-color
#fff
: var(--tp-common-white);
    background-color: var(--tp-theme-primary);
    color: var(--tp-btn-color);
    height: 46px;
    line-height: 46px;
    width: 60px;
    border-radius: 0px 30px 30px 35px;
}

.tp-header-search-wrapper {
    border: 1px solid #dc3545 !important;
    position: relative;
    border-radius: 9999px !important;
}

.tp-header-search-category select {
    padding: 7px !important;
}

.fob-comment-form-section {
    margin: 3rem 0;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 7px;
}

.tp-product-details-sticky-actions {
    background-color: #f5fdff;
    border-radius: 10px 10px 0px 0px;
    border-top: 1px solid #d8f7ff;
}

.tp-product-details-add-to-cart-btn {
    --tp-btn-color
#010f1c
: var(--tp-common-black);
    border: 2px solid #d71b0c;
    color: #d71b0c;
    border-radius: 7px 7px 0px 0px;
    background-color: #fff;
}

.tp-product-details-buy-now-btn {
    border-radius: 7px 7px 0px 0px;
}

.tp-product-details-quantity .tp-cart-input[type=number] {
    background-color: #fff;
    border: 2px solid #e6e7e8;
    border-radius: 7px 7px 0px 0px;
}

.tp-product-details-add-to-cart-btn:hover {
  background-color: #212529 !important;
  border-color: #212529 !important;
  color: #fff !important;
}

.product-whatsapp-order-btn {
    display: block !important;
    align-items: center;
    /* gap: 8px; */
    padding: 10px 20px;
    background-color: #25D366 !important;
    border-color: #25D366 !important;
    color: white !important;
    border-radius: 4px !important;
    text-decoration: none;
    /* justify-content: space-between; */
    width: 100% !important;
}

.request-quote-btn {
    display: block !important;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 4px !important;
    width: 100% !important;
}

.bb-product-gallery-thumbnails .slick-slide img {
    background-color: #fff;
    border: 1px solid #eaebed;
    cursor: pointer;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    border-radius: 3px;
}

.bb-product-gallery-thumbnails {

    margin-right: 5px;
}

.bb-product-gallery-thumbnails .slick-slide {
    margin-bottom: 15px;
    padding: 2px;
}

.bb-product-gallery {
    align-items: flex-start;
}

/* Hemen Satın Al Butonu Css */
/* 1. KEYFRAMES: Çift Yönlü Akış ve 2 Saniye Bekleme */
@keyframes shineEffect {
    /* 0% - 25% (1.0s): SOLDAN SAĞA AKIŞ */
    0% {
        left: -100%;
    }
    25% {
        left: 100%;
        opacity: 1; 
    }
    
    /* 25.1% - 50% (1.0s): SAĞDAN SOLA AKIŞ */
    25.1% { 
        left: 100%; /* Sağ dışarıda başla */
    }
    50% { 
        left: -100%; /* Sola geri akış */
        opacity: 1;
    }

    /* 50.1% - 100% (2.0s): 2 SANİYE BEKLEME SÜRESİ */
    50.1% { 
        left: -100%; 
        opacity: 0; /* Gizle ve bekle */
    }
    100% {
        left: -100%;
        opacity: 0;
    }
}

/* 2. SHINE EFECTİ UYGULAMASI VE STİL AYARLARI */
.tp-product-details-buy-now-btn {
    position: relative !important;
    overflow: hidden !important; 
    z-index: 100 !important; 
}

.tp-product-details-buy-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    
    /* Işık Hüzmesi (Gradient) Tanımı */
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.5), 
        rgba(255, 255, 255, 0.9), 
        rgba(255, 255, 255, 0.5),
        transparent
    );
    
    z-index: 101 !important; 
    pointer-events: none; 

    /* Animasyonu uygulama: TOPLAM DÖNGÜ SÜRESİ 4 SANİYE */
    animation: shineEffect 4s infinite; 
}
/* Hemen Satın Al Butonu Css */

.tp-category-menu-btn {

    border-radius: 0px 0px 15px 15px;
}

.tp-product-category-thumb a {
    align-items: center;
    background-image: radial-gradient(95.56% 95.56% at 50% 50%, #fff 0, #bddeff 100%);
    border-radius: 2px !important;
    display: flex;
    height: 180px;
    justify-content: center;
    margin: auto;
    overflow: hidden;
    text-align: center;
    width: 180px;
}

.tp-footer-area {
    border-top: 1px solid white;
}

.tp-header-bottom-border {
    padding-bottom: 3px;
}

.tp-product-category-thumb {
    margin-bottom: 0px;
    border-top: 1px solid #dee2e6;
    padding: 2px;
    border-right: 1px solid #dee2e6;
    border-left: 1px solid #dee2e6;
    border-radius: 5px 5px 0px 0px;
}

.tp-product-category-title
 {
    color: var(--tp-common-black);
    font-family: var(--primary-font);
    font-size: medium !important;
    font-weight: 500;
    margin-bottom: 0;
    border: 1px solid #dee2e6;
    padding-top: 5px;
    background-color: #f6f7f9;
    padding-bottom: 5px;
    border-radius: 0px 0px 5px 5px;
}

@media (max-width: 575px) {
    .row-cols-2, .swiper-wrapper {
        --bs-gutter-x: 7px !important;
    }
}

@media (max-width: 575px) { 
  .tp-product-category-thumb a
 {
    align-items: center;
    background-image: radial-gradient(95.56% 95.56% at 50% 50%, #fff 0, #bddeff 100%);
    border-radius: 2px !important;
    display: flex;
    height: auto;
    justify-content: center;
    margin: auto;
    overflow: hidden;
    text-align: center;
    width: 100%;
 }
}

/* Mobil Cihazlar İçin Özellik Alanı Düzenlemesi (576px altı) */
@media (max-width: 575.98px) {
    /* 1. Ana Kapsayıcıyı Dikey Yönlendirme */
    .tp-feature-area .tp-feature-item {
        flex-direction: column; /* Yatay düzeni dikeyye çevirir */
        align-items: center !important; /* Tüm öğeleri yatayda ortalar */
        text-align: center; /* Başlık ve paragrafı ortalar */
        padding-bottom: 10px; /* Alttan biraz boşluk ekler */
    }

    /* 2. İkon ve İçerik Boşluklarını Kaldırma/Düzenleme */
    .tp-feature-area .tp-feature-icon {
        margin-right: 0 !important; /* Yan boşluğu kaldırır (mr-15'i geçersiz kılar) */
        margin-bottom: 5px; /* İkon ile başlık arasına biraz boşluk ekler */
    }
}

/* Mobil Cihazlar İçin Stil Ayarı (576px altı) */
@media (max-width: 575.98px) {
    .tp-feature-item {
        /*
        !important kullanmak, temanın varsayılan padding değerini geçersiz kılmak için en güvenli yoldur.
        */
        padding: 20px 5px 20px 5px !important;
        border-radius:5px !important;
    }
}

.tp-footer-top {
    padding-top: 45px !important;
}

.tp-slider-active .owl-item .tp-slider-item, .tp-slider-active-2 .owl-item .tp-slider-item, .tp-slider-active-3 .owl-item .tp-slider-item, .tp-slider-active-4 .owl-item .tp-slider-item, .tp-slider-active-5 .owl-item .tp-slider-item {
    justify-content: center;
}



.tp-product-countdown-inner ul li span {
    color: #dc3545;
    display: block;
    font-family: var(--primary-font);
    font-size: medium;
    font-weight: inherit;
    letter-spacing: -.04em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.tp-product-countdown-inner ul li {
    background-color: var(--tp-common-white);
    border: 1px solid var(--tp-border-3);
    border-radius: 5px;
    display: inline-block;
    font-family: var(--primary-font);
    font-size: x-small;
    font-weight: 500;
    height: 50px;
    line-height: 1;
    list-style: none;
    padding-top: 8px;
    text-align: center;
    text-transform: capitalize;
    width: 50px;
}

@media (max-width: 991px) {
    .tp-header-top {
        display: none !important;
    }
}

.tp-product-add-cart-btn-large {
    background-color: #d71b0c !important;
}

.tp-product-details-countdown {
    background-color: #fff2cc;
    border: 1px dashed #ffbf00;
    padding: 10px 20px;
    border-radius: 5px;
}

.tp-product-details-countdown-title {
    color: #39362f;
}

.tp-product-details-countdown-time ul li {
    color: #e90016;
    font-size: 16px;
    font-weight: normal !important;
    list-style: none;
    position: relative;
}

.tp-product-details-countdown-time ul li:not(:last-child):after, .tp-product-details-countdown-time ul li:not(:last-child):before {
    background-color: none !important;
}


.tp-product-title {
    font-size: 15px;
    text-align: center;
    border-bottom: 1px dashed #dee2e6;
}

/* Margue Kayan Yazı */
    .evname-marquee-container {
        width: 100%;
        overflow: hidden;
        background-color: #fff0f0; /* İstediğiniz arka plan rengi */
        padding: 7px 0;
        white-space: nowrap;
        position: relative;
        display: flex;
        align-items: center;
        border-top: 1px solid rgba(215, 27, 12, 0.1);
        border-bottom: 1px solid rgba(215, 27, 12, 0.1);
        margin-top:2px;
        margin-bottom:2px;
    }

    /* Kayan Yazı Grubu */
    .evname-marquee-content {
        display: flex;
        flex-shrink: 0;
        min-width: 100%;
        animation: evnameMarquee 20s linear infinite; /* Kesintisiz döngü hızı */
    }

    /* Yazı Stilleri */
    .evname-marquee-item {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        padding: 0 40px; /* Cümleler arası mesafe */
        display: flex;
        align-items: center;
    }

    /* Nokta (.) İşareti Stili */
    .evname-marquee-item::before {
        content: "•"; /* Madde işareti */
        margin-right: 15px;
        font-size: 20px;
    }

    /* Renkler */
    .text-red { color: #D71B0C; }
    .text-black { color: #000000; }

    /* Sonsuz Döngü Animasyonu */
    @keyframes evnameMarquee {
        from { transform: translateX(0); }
        to { transform: translateX(-50%); } /* İçerik iki katı olduğu için tam ortada başa döner */
    }

    /* Fare üzerine gelince durması için */
    .evname-marquee-container:hover .evname-marquee-content {
        animation-play-state: paused;
    }

    /* Mobil Uyumluluk */
    @media (max-width: 767px) {
        .evname-marquee-item {
            font-size: 14px;
            padding: 0 25px;
        }
    }
/* Margue Kayan Yazı Sonu */

/* Yukarı çık Butonun Temel Stili ve Konumu */
.back-to-top-btn {
    position: relative;
    width: 45px;
    height: 45px;
    background-color: #D71B0C; /* Temanıza uygun kırmızı veya istediğiniz renk */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(215, 27, 12, 0.3);
    border: none;
    cursor: pointer;
    z-index: 999;
}

/* 2. Sürekli Nabız (Pulse) Efekti - Dikkat Çekmesi İçin */
.back-to-top-btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: inherit;
    border-radius: 50%;
    z-index: -1;
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* 3. Üzerine Gelince (Hover) Efekti */
.back-to-top-btn:hover {
    background-color: #000; /* Hover'da siyaha döner */
    transform: translateY(-8px); /* Yukarı doğru hafifçe zıplar */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* 4. İçindeki Okun (SVG) Hover Animasyonu */
.back-to-top-btn:hover svg {
    animation: arrowBounce 1s infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* 5. Mobilde Boyut Ayarı */
@media (max-width: 767px) {
    .back-to-top-btn {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}
/* Yukarı Çık Butonu Son */

/* --- 1. SLIDER GENEL KAPLAMA --- */
.tp-product-offer-slider-active {
    position: relative;
    display: block;
    width: 100% !important;
    overflow: hidden !important;
    padding: 2px;
    padding-bottom: 0 !important; /* Noktalar gittiği için alt boşluğu sıfırladık */
}

.tp-product-offer-slider-active .swiper-wrapper {
    display: flex;
    width: 100%;
    height: auto;
    align-items: stretch;
}

/* --- 2. GÖRÜNMEZ TAŞIYICI (ARALARDAKİ BOŞLUK) --- */
.tp-product-offer-slider-active .swiper-slide {
    height: auto;
    background: transparent !important;
    border: none !important;
    box-sizing: border-box !important;
    padding: 0 15px !important; 
}

/* --- 3. GÖRÜNÜR KART (ÇERÇEVE VE YAPI) --- */
.tp-product-offer-slider-active .tp-product-item {
    display: flex;
    flex-direction: column;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

/* --- 4. GÖRSEL AYARLARI --- */
.tp-product-offer-slider-active .tp-product-thumb,
.tp-product-offer-slider-active .tp-product-thumb img {
    width: 100% !important;
    display: block !important;
    margin: 0 !important;
}

/* --- 5. İÇERİK ALANI (BEYAZ ZEMİN) --- */
.tp-product-offer-slider-active .tp-product-content {
    background-color: #ffffff !important;
}

/* --- 6. NOKTALARI GİZLEME KOMUTU --- */
.tp-deals-slider-dot {
    display: none !important;
}

/* --- 7. MOBİL ÖZEL AYARLAR --- */
@media (max-width: 767px) {
    .tp-product-offer-slider-active {
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .tp-product-offer-slider-active .swiper-slide {
        width: 100% !important;
        padding: 0 10px !important; 
    }
}

/* --- 8. MASAÜSTÜ ÖZEL AYARLAR --- */
@media (min-width: 1200px) {
    .tp-product-offer-slider-active .swiper-slide {
        width: 25% !important;
        padding: 0 15px !important; 
    }
}

/* Flaş İndirim Bölümü Arka Planı İçin 'cover' kuralını 'auto' ile değiştirir */
section[data-block-id="ecommerce-flash-sale"] {
    background-size: auto !important;
    background-repeat:repeat !important;
    border-top: 2px dashed #ffc107;
    border-bottom: 2px dashed #ffc107;
   
}

@media (max-width: 800px) {
    .tp-product-offer {
        padding-bottom: 20px;
        padding-top: 15px;
    }
}

.tp-product-offer-slider-active .tp-product-item {
  box-shadow: none !important;
  }
/* Flaş İndirim Bölümü Arka Planı İçin 'cover' kuralını 'auto' ile değiştirir */

/* --- YENİ YATAY AKSİYON BUTONLARI --- */
/* --- YAN YANA 4 BUTON DÜZENİ --- */

/* Ana Kapsayıcı: Beyaz zemin, ortalı, yan yana */
.tp-product-action-row {
    display: flex;
    align-items: center;
    justify-content: center; /* Ortalar */
    gap: 10px; /* Butonlar arası boşluk */
    width: 100%;
    margin-top: 0px;
    padding: 10px 0;
    background-color: #ffffff; /* İSTEDİĞİNİZ BEYAZ ARKA PLAN */
}

/* Ortak Buton Stili (Hepsi aynı boyda) */
.tp-action-btn-unified {
    width: 38px; /* Genişlik */
    height: 38px; /* Yükseklik */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5; /* Hafif gri buton zemini */
    border: 1px solid #eeeeee;
    border-radius: 50%; /* Tam yuvarlak */
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

/* Hover (Üzerine gelince) Efekti */
.tp-action-btn-unified:hover {
    background-color: #D71B0C; /* Tema Kırmızısı */
    border-color: #D71B0C;
    color: #fff; /* İkon rengi beyaz olur */
    transform: translateY(-3px); /* Hafif yukarı zıplar */
    box-shadow: 0 4px 8px rgba(215, 27, 12, 0.3);
}

/* Aktif Durum (Örn: İstek listesine eklenmişse) */
.tp-action-btn-unified.active {
    color: #D71B0C;
    background-color: #fff0f0;
    border-color: #D71B0C;
}

/* Tooltip (İpucu Baloncuğu) Ayarı */
.tp-action-btn-unified .tp-product-tooltip {
    /* Varsayılan temada tooltip varsa konumunu düzeltir */
    bottom: 100%;
    margin-bottom: 8px;
    display: none; /* Mobilde gizli kalması daha iyidir */
}

.tp-action-btn-unified:hover .tp-product-tooltip {
    display: block; /* Sadece masaüstünde hover olunca açılır */
}

/* --- MOBİL ÖZEL AYARLAR --- */
@media (max-width: 767px) {
    .tp-product-action-row {
        gap: 8px; /* Mobilde boşluğu biraz azalt sığsın */
        padding: 8px 0;
    }

    .tp-action-btn-unified {
        width: 27px; /* Mobilde butonları çok az küçült */
        height: 27px;
    }
    
    /* Mobilde tooltip'i kesin gizle */
    .tp-action-btn-unified:hover .tp-product-tooltip {
        display: none !important;
    }
}

.tp-product-content {
    border-radius: 0px 0px 5px 5px;
}

/* --- YENİ YATAY AKSİYON BUTONLARI --- */

.tp-product-flash-sale-info {
    display: none !important;
}

/* Telefon numarasındaki örnek yazıyı gizle */
#address_phone::placeholder {
    color: transparent !important;
    opacity: 0 !important;
}

.tp-footer-social a {
    background: #d80908 !important;
}
.tp-footer-social a:hover {
    background: #fff !important;
}

.tp-footer-area .tp-footer-social a {
    color: #fff;
}
.tp-footer-area .tp-footer-social a:hover {
    color: #d80908;
}

/* =========================================
   EVNAME GİRİŞ EKRANI - YOUTUBE VİDEO (MOBİL UYUMLU)
   ========================================= */

/* --- GENEL AYARLAR (MASAÜSTÜ & MOBİL ORTAK) --- */

/* 1. Video Kapsayıcısı */
.video-wrapper-col {
    position: relative;
    overflow: hidden;
    background-color: #000; 
}

/* 2. Video Alanı (Arka Plan) */
.youtube-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none; /* Tıklamayı engelle */
}

/* 3. Iframe (Zoom ve Ortalama) */
.youtube-background iframe {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 300%; /* Geniş zoom (Siyah kenarları yok eder) */
    height: 100%;
    object-fit: cover;
    border: none;
}

/* 4. Karartma ve Yazı Katmanı */
.video-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.overlay-content h3 {
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    margin-bottom: 5px;
}

.overlay-content p {
    color: #e0e0e0;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

/* --- MASAÜSTÜ ÖZEL AYARLAR (768px ve üstü) --- */
@media (min-width: 768px) {
    .video-wrapper-col {
        min-height: 600px; /* Masaüstünde uzun olsun */
        border-top-left-radius: 12px;
        border-bottom-left-radius: 12px;
    }
    
    .overlay-content h3 { font-size: 28px; }
    .overlay-content p { font-size: 16px; }
}

/* --- MOBİL ÖZEL AYARLAR (767px ve altı) --- */
@media (max-width: 767px) {
    
    /* Mobilde Sol Kolonu (Videoyu) GÖSTER ve Düzenle */
    .auth-card__left, 
    .video-wrapper-col {
        display: block !important; /* Gizlemeyi iptal et */
        width: 100%;
        min-height: 220px; /* Mobilde çok yer kaplamasın, başlık gibi dursun */
        height: 220px;
        
        /* Mobilde üst köşeleri yuvarla */
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        border-bottom-left-radius: 0;
    }

    /* Mobilde yazı boyutlarını küçült */
    .overlay-content h3 { font-size: 20px; }
    .overlay-content p { font-size: 14px; }
    .video-overlay { padding: 20px; }
    
    /* Giriş Formunun (Sağ Taraf) Köşelerini Düzenle */
    .auth-card__right {
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
        border-top-right-radius: 0; /* Üst köşe düz olsun, videoyla birleşsin */
    }
}

.auth-card.auth-card__horizontal .auth-card__right
 {
    background: #ffffff;
    border: 1px solid #e0e2e3;
    border-radius: 0px 10px 10px 0px;
}

.auth-card {
    border-radius: 0px 10px 10px 0px;
}

@media (max-width: 767px) { 
  .auth-card.auth-card__horizontal .auth-card__right
 {
    background: #ffffff;
    border: 1px solid #e0e2e3;
    border-radius: 0px 0px 10px 10px;
} 
.auth-card {
    border-radius: 0px 0px 10px 10px;
}
}

.auth-card .auth-card__body input.form-control {
    border-radius: 5px !important;
}

.auth-card .auth-card__body .btn {
      border-radius: 5px !important;
}

.login-options .social-login-basic .social-login.google-login {
    background-color: #f8f9fa !important;
}
/* kayıt ve giriş sayfası css */

.form-control {
  border-radius: 5px !important;
  }

input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], textarea
 {
  border-radius: 5px !important;
}

/* =========================================
   ÜRÜN SAYFASI
   ========================================= */
.tp-product-details-additional-info
 {
    padding-top: 5px !important;
}
/* =========================================
   ÜRÜN SAYFASI
   ========================================= */
/* =========================================
   FİNAL KOMPAKT & ZARİF SAYAÇ TASARIMI
   ========================================= */

/* 1. ANA KUTU (ÇERÇEVE) */
.tp-product-details-countdown {
    position: relative;
    width: 100%;
    max-width: 450px; /* Genişliği sınırladık ki çok yayılmasın */
    
    /* DÜZEN: Alt alta ve ortalı */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    /* BOŞLUKLAR (MİNİMUM) */
    padding: 10px; /* İç boşluk azaltıldı */
    margin: 15px auto; /* Dış boşluklar ve ortalama */
    
    border-radius: 8px;
    overflow: hidden; 
    z-index: 0;
    background: transparent; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* 2. SİHİRLİ DÖNEN IŞIK (ARKA PLAN) */
.tp-product-details-countdown::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 200%; height: 500%; 
    
    background: conic-gradient(
        transparent 0deg, 
        transparent 260deg, 
        rgba(255, 69, 0, 0.4) 280deg,  
        #FFD700 310deg,
        #FFFFE0 340deg,  
        #FFFFFF 350deg, 
        transparent 360deg 
    );
    
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8)); 
    animation: magicRotate 4s linear infinite;
    transform: translate(-50%, -50%);
    z-index: -2;
}

/* 3. BEYAZ ZEMİN (MASKE) */
.tp-product-details-countdown::after {
    content: '';
    position: absolute;
    inset: 2px; /* Çerçeve kalınlığı ince (2px) */
    background: #ffffff; 
    border-radius: 6px; 
    z-index: -1;
}

/* 4. BAŞLIK (KÜÇÜK VE KİBAR) */
.tp-product-details-countdown-title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    
    /* Başlık ile kutular birbirine çok yakın olsun */
    margin: 0 0 6px 0; 
    
    font-size: 13px; /* Yazı boyutu küçüldü */
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    
    /* Nabız Animasyonu */
    animation: titlePulse 1.5s infinite ease-in-out;
}

/* Başlık İkonu */
.tp-product-details-countdown-title svg {
    width: 16px; /* İkon küçüldü */
    height: 16px;
    color: #FF4500;
    filter: drop-shadow(0 0 2px rgba(255, 69, 0, 0.4));
}

/* 5. SAYAÇ KUTULARI LİSTESİ */
.tp-product-details-countdown-time ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px; /* KUTULAR ARASI BOŞLUK MİNİMUM */
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

/* 6. MİNİK KUTULAR */
.tp-product-details-countdown-time ul li {
    /* Kutuları sabitleyelim ki hepsi eşit dursun */
    width: 55px; 
    height: 45px;
    
    background: #fcfcfc;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Rakamlar (Sayı) */
.tp-product-details-countdown-time ul li span {
    font-size: 16px; /* İdeal okunaklı boyut */
    font-weight: 800;
    color: #d32f2f; /* Kırmızı Rakamlar */
    display: block;
    margin-bottom: 2px;
}

/* Alt Yazılar (: Gün, : Saat) */
.tp-product-details-countdown-time ul li {
    font-size: 10px; /* Alt yazı çok küçük ve kibar */
    color: #777;
    font-weight: 500;
}

/* ANIMASYONLAR */
@keyframes magicRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes titlePulse {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.02); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
}

/* MOBİL İÇİN HASSAS AYAR */
@media (max-width: 576px) {
    .tp-product-details-countdown {
        max-width: 100%; /* Mobilde tam genişlik */
        padding: 8px;
    }
    .tp-product-details-countdown-title {
        font-size: 12px;
    }
    .tp-product-details-countdown-time ul li {
        width: 50px; /* Mobilde kutular biraz daha dar */
        height: 42px;
    }
    .tp-product-details-countdown-time ul li span {
        font-size: 14px;
    }
}


.pos-container .product-card {
    border: 1px solid #e6e6e6 !important;
}



@media (max-width: 768px) {
    /* Ana kapsayıcıyı esnek kutu yapıp yan yana diziyoruz */
    .bb-product-gallery-thumbnails {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    /* Resimlerin olduğu orta kısmı esnetiyoruz */
    .bb-product-gallery-thumbnails .slick-list {
        flex: 1; /* Kalan boşluğu doldur */
        margin: 0 5px; /* Oklarla resimler arasına biraz boşluk */
        width: auto !important;
    }

    /* Okları "absolute" pozisyondan çıkarıp akışa dahil ediyoruz */
    .bb-product-gallery-thumbnails .slick-arrow {
        position: static !important; /* En önemli kısım burası */
        transform: none !important; /* Dikey ortalamayı iptal et */
        margin-top: 0 !important;
        width: 30px; /* Ok genişliği */
        height: 100%; /* Resim yüksekliği kadar alan kapla */
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        background: transparent; /* Arkaplan varsa temizle */
        border: none;
    }

    /* Sol ok için ince ayar (gerekirse) */
    .bb-product-gallery-thumbnails .slick-prev {
        left: auto !important;
    }

    /* Sağ ok için ince ayar (gerekirse) */
    .bb-product-gallery-thumbnails .slick-next {
        right: auto !important;
    }
}

.bb-product-gallery-thumbnails .slick-arrow {
    background: #c5f5ff5e !important;
    border: none !important;
    border-radius: 0px !important;
    box-shadow: none !important;
    font-size: 8px !important;
    height: 40px !important;
    line-height: 25px !important;
    width: 23px !important;
}

.tp-cart-checkout-wrapper {
    background: none !important;
    box-shadow: 0 30px 70px rgba(1, 15, 28, .1);
    margin-inline-start: 0px !important;
    padding: 36px 24px 28px;
}

/* Footer arka planı */
/* =========================================
   EVNAME FOOTER - MAVİ NEON & RIPPLE (CLEAN)
   ========================================= */

/* --- 1. ZEMİN (DERİN MAVİ) --- */
.tp-footer-area {
    position: relative;
    overflow: hidden;
    z-index: 1;
    /* Derin Deniz Mavisi Degrade */
    background: linear-gradient(to bottom, #001e36 0%, #000810 100%);
    
    /* Fare Takip Değişkenleri (Varsayılan Merkez) */
    --x: 50%;
    --y: 50%;
}

/* --- 2. ARKADAKİ MAVİ IŞIK (SPOTLIGHT) --- */
.tp-footer-area::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1; 
    pointer-events: none;
    
    /* Neon Mavi/Turkuaz Işık */
    background: radial-gradient(
        800px circle at var(--x) var(--y), 
        rgba(0, 255, 255, 0.15), /* Parlak Turkuaz */
        transparent 40%
    );
    
    will-change: background;
}

/* --- 3. SU DALGASI (NEON RIPPLE) --- */
.neon-ripple {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 0; height: 0;
    border-radius: 50%;
    
    /* Neon Çerçeveli Dalga */
    border: 2px solid rgba(0, 255, 255, 0.5);
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 60%);
    
    pointer-events: none;
    z-index: 1; 
    animation: rippleExpand 0.8s linear forwards;
}

@keyframes rippleExpand {
    0% { width: 0px; height: 0px; opacity: 0.8; }
    100% { width: 500px; height: 500px; opacity: 0; border-width: 0; }
}

/* --- 4. NEON ÇERÇEVELİ WIDGETLAR --- */
.tp-footer-top, .tp-footer-bottom {
    position: relative;
    z-index: 10;
}

.tp-footer-widget {
    /* Hafif Mavi Şeffaf Zemin */
    background: rgba(0, 30, 54, 0.4); 
    
    /* NEON KENARLIK (Normal Hali) */
    border: 1px solid rgba(0, 255, 255, 0.15); 
    
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

/* --- HOVER EFEKTİ (NEON PARLAMA) --- */
.tp-footer-widget:hover {
    /* Kenarlık Parlaklaşır */
    border-color: rgba(0, 255, 255, 0.8); 
    
    /* Zemin Aydınlanır */
    background: rgba(0, 30, 54, 0.6);
    
    /* Neon Glow (Dış Işık) Efekti */
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4), inset 0 0 10px rgba(0, 255, 255, 0.1);
    
    transform: translateY(-5px);
}

/* --- 5. MOBİL ÖZEL AYARLAR --- */
@media (max-width: 767px) {
    /* Işığı mobilde biraz kıs */
    .tp-footer-area::before {
        opacity: 0.5;
        /* Mobilde spot ışığı sabit kalsın (performans için) */
        background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.15), transparent 60%);
    }

    .tp-footer-widget { 
        padding: 20px; 
        box-shadow: none; 
    }
}
/* Footer arka planı */

.theme-bg {
    border-radius: 10px 10px 0px 0px;
}
.tp-subscribe-shape img {
    border-radius: 10px 0px 0px 0px;
}

.bb-form-quick-search .bb-quick-search-results {
    background-color: #f8f9fa !important;
    border-radius: 5px 5px 10px 10px;
}

.bb-form-quick-search .bb-quick-search-item-image
 {
    width: 25% !important;
    border-radius: 3px !important;
    border: 1px solid #eaebed;
    padding: 2px;
}

.bb-form-quick-search .bb-quick-search-item {
    border-bottom: 1px dashed #c9cfd5;
}

/* --- CUSTOM STORE LOCATOR (BOOTSTRAPSIZ) --- */
/* --- STORE LOCATOR CSS (GÜNCELLENMİŞ) --- */

.custom-store-wrapper {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0px;
    font-family: 'Jost', sans-serif, system-ui;
    box-sizing: border-box;
}

/* Başlık Alanı */
.custom-store-header { text-align: center; margin-bottom: 50px; }
.custom-store-subtitle { color: #d71b0c; font-weight: 700; letter-spacing: 1px; font-size: 13px; display: block; margin-bottom: 5px; }
.custom-store-title { color: #212529; font-size: 36px; font-weight: 800; margin: 0 0 10px 0; }
.custom-store-desc { color: #666; font-size: 16px; margin: 0; }

/* Grid Yapısı */
.custom-store-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}
@media (max-width: 992px) { .custom-store-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .custom-store-grid { grid-template-columns: 1fr; } }

/* Kart Tasarımı */
.cs-card {
    background: #fff;
    border: 1px solid #e9ecef; /* 1px Border */
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.cs-card:hover {
    transform: translateY(-5px);
    border-color: #d71b0c;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Görsel */
.cs-banner { width: 100%; height: 220px; background-color: #f8f9fa; }
.cs-banner img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.cs-card:hover .cs-banner img { transform: scale(1.08); }

/* --- YENİ BAŞLIK TASARIMI (KIRMIZI ARKA PLAN) --- */
.cs-name {
    background-color: #d71b0c; /* İstenilen Kırmızı */
    color: #ffffff; /* Beyaz Yazı */
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    text-align: center; /* Ortala */
    border-top: 1px solid #d71b0c; /* Çizgi oluşmasını engelle */
}

.cs-body { padding: 20px; flex-grow: 1; }

/* --- İKON ÇÖZÜMÜ (CSS Background) --- */
/* HTML'den svg silinse bile bunlar çalışır */
.cs-info-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    padding-left: 30px; /* İkon için yer aç */
    position: relative;
}

/* Ortak İkon Ayarı */
.cs-info-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* 1. Konum İkonu (Base64 Encoded SVG) */
.type-location::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d71b0c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
}

/* 2. Telefon İkonu */
.type-phone::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d71b0c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
}

/* 3. Saat İkonu */
.type-time::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d71b0c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 16 14'%3E%3C/polyline%3E%3C/svg%3E");
}

.cs-info-row a { color: #555; text-decoration: none; font-weight: 600; }
.cs-info-row a:hover { color: #d71b0c; }

/* Footer & Buton */
.cs-footer { padding: 0 20px 25px 20px; margin-top: auto; }

.cs-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #212529;
    color: #fff !important;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.cs-btn:hover { background-color: #d71b0c; }

/* --- YOL TARİFİ BUTONU İKONU --- */
/* Butonun soluna ikon için boşluk bırak */
.cs-btn {
    position: relative;
    padding-left: 40px !important; /* İkon yeri açıldı */
}

/* İkonu oluştur (CSS ile) */
.cs-btn::before {
    content: '';
    position: absolute;
    left: 15px; /* Soldan mesafe */
    top: 50%;
    transform: translateY(-50%); /* Dikey ortala */
    width: 18px;
    height: 18px;
    /* Beyaz Yön Oku İkonu */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7z'%3E%3C/path%3E%3Ccircle cx='12' cy='9' r='2.5'%3E%3C/circle%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

/* Hover efektinde ikon hafif zıplasın */
.cs-btn:hover::before {
    transform: translateY(-50%) scale(1.2);
}

/* --- YOL TARİFİ BUTONU SAĞ OK İKONU --- */

/* Butonun sağına ikon için boşluk bırak */
.cs-btn {
    padding-right: 40px !important; /* Sağ tarafta ikon yeri açıldı */
}

/* Sağdaki Ok İkonunu Oluştur (CSS ile) */
.cs-btn::after {
    content: '';
    position: absolute;
    right: 15px; /* Sağdan mesafe */
    top: 50%;
    transform: translateY(-50%); /* Dikey ortala */
    width: 18px;
    height: 18px;
    /* Beyaz Sağa Bakan Ok İkonu (Chevron Right) */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease; /* Animasyon için geçiş */
}

/* Hover efektinde sağdaki ok hafifçe sağa kaysın */
.cs-btn:hover::after {
    transform: translate(5px, -50%); /* Sağa doğru hareket efekti */
}
/* --- CUSTOM STORE LOCATOR (BOOTSTRAPSIZ) --- */

.contact-form .contact-button {
    border-radius: 7px;
}

.tp-subscribe-input button {
    border-radius: 0 5px 5px 0 !important;

}

.tp-sidebar-ml--24 {
    margin-left: auto;
}

.tp-sidebar-blog-item-wrapper {
    padding: 15px 10px;
    border-radius: 5px;
}

.tp-blog-thumb {
    border-radius: 8px;
    border-top-left-radius: 0;
    height: auto !important;
    margin-bottom: 22px;
    width: 100%;
}

.ck-content blockquote {
    border-left: solid 5px #d71b0c !important;
}

blockquote {
    background: #f8f9fa !important;
}

blockquote p {
    color: #000000 !important;
}

/* 1. KARTIN GENEL YAPISI (Çerçeve ve Arka Plan) */
.tp-blog-item {
    background-color: #ffffff;
    border: 1px solid #e5e5e5; /* İstenilen ince çerçeve */
    border-radius: 8px; /* Köşeleri yumuşatma */
    overflow: hidden; /* Taşmaları gizle */
    transition: all 0.3s ease-in-out; /* Animasyon geçişi */
    box-shadow: 0 2px 10px rgba(0,0,0,0.03); /* Hafif gölge */
    height: 100%; /* Tüm kartları eşit yükseklikte tutmaya çalışır */
    display: flex;
    flex-direction: column;
}

/* 2. HOVER (ÜZERİNE GELİNCE) EFEKTLERİ */
.tp-blog-item:hover {
    border-color: #d71b0c; /* Üzerine gelince çerçeve rengi değişsin (Tema rengin) */
    transform: translateY(-5px); /* Kart hafifçe yukarı kalksın */
    box-shadow: 0 15px 30px rgba(0,0,0,0.1); /* Gölge belirginleşsin */
}

/* 3. GÖRSEL ALANI VE ZOOM EFEKTİ */
.tp-blog-thumb {
    position: relative;
    overflow: hidden; /* Zoom yapınca resim dışarı taşmasın */
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #f0f0f0; /* Görsel ile yazı arasına ince çizgi */
}

.tp-blog-thumb img {
    width: 100%;
    height: 240px; /* Görsel yüksekliğini sabitle ki kartlar bozulmasın */
    object-fit: cover; /* Resmi kutuya sığdır */
    transition: transform 0.5s ease; /* Zoom geçiş hızı */
    display: block;
}

.tp-blog-item:hover .tp-blog-thumb img {
    transform: scale(1.1); /* Resme %10 zoom yap */
}

/* 4. TARİH ETİKETİ (Görselin Sol Üstünde) */
.tp-blog-meta-date {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 5;
    /* Mevcut HTML'deki stilleri ezmek için !important gerekebilir, gerekirse kullanın */
}

/* 5. İÇERİK ALANI (Başlık vb.) */
.tp-blog-content {
    padding: 15px; /* İç boşluk vererek ferahlat */
    flex-grow: 1; /* Alt kısmı doldur */
    background: #fff;
    position: relative;
}

/* 6. BAŞLIK STİLİ */
.tp-blog-title {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
}

.tp-blog-title a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
    
    /* Bootstrap'in text-truncate özelliğini ezip 2 satır gösterim yapmak için */
    white-space: normal !important; 
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Maksimum 2 satır */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tp-blog-item:hover .tp-blog-title a {
    color: #d71b0c; /* Hover rengi (Gold/Tema rengi) */
}

/* Opsiyonel: Boş  etiketi alan kaplıyorsa gizle */
.tp-blog-content p:empty {
    display: none;
}



.tp-blog-meta-date span {
  background-color: #d71b0c;
  border-radius: 1px 20px;
  }

.tp-blog-thumb{
  border-radius: 0px !important;
  }

.fb_iframe_widget_fluid_desktop, .fb_iframe_widget_fluid_desktop span, .fb_iframe_widget_fluid_desktop iframe {
    max-width: 100%;
    display: none !important;
}

.tp-sidebar-blog-thumb img {
    height: 65px;
    width: 90px;
    border-radius: 5px;
}





.tp-category-menu-btn:after {
    right: auto !important;
}

blockquote p {
    font-size: large !important;
    font-weight: normal !important;
}

.tp-product-badge span {
    border-radius: 50px 0px 0px 50px;
    padding: 4px;
    border-right: 2px solid #fff;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
}

.bb-product-attribute-swatch-list.text-swatch li .bb-product-attribute-swatch-display, .bb-product-attribute-swatch-list.text-swatch li .bb-product-attribute-text-display {
    border-radius: 4px;
}

.tp-product-details-title {
    font-size: 27px !important;
}

.tp-product-details-sticky-actions {
    z-index: 90 !important;
}

.breadcrumb__area {
    padding-bottom: 10px !important;
    padding-top: 10px !important;
}

/* Ürün galerisi tam ekran */
/* ================================================= */
/* LIGHTGALLERY - FİNAL (ORTALI + OKLAR DÜZELTİLDİ)  */
/* ================================================= */

/* --- 1. GENEL AYARLAR --- */
.lg-backdrop {
    background-color: #000 !important;
    opacity: 1 !important;
}

#lg-download, .lg-download { display: none !important; }

/* --- 2. ÜST BAR & KAPATMA BUTONU --- */
.lg-toolbar {
    background-color: transparent !important;
    height: 0 !important;
    width: 100% !important;
    position: absolute;
    top: 0; left: 0;
    overflow: visible !important;
    z-index: 2050 !important;
}

/* Kapatma + Otomatik oynat düğmesi: AYNI kutu modeli, yan yana (üst üste binmez) */
.lg-toolbar .lg-close,
.lg-toolbar .lg-evname-autoplay {
    box-sizing: border-box !important;
    position: fixed !important;
    top: 20px !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 44px !important;
    text-align: center !important;
    border: none !important;
    border-radius: 5px !important;
    background-color: rgba(0, 0, 0, 0.6) !important;
    color: #fff !important;
    cursor: pointer;
    outline: none;
    box-shadow: 0 0 5px rgba(255,255,255,0.1);
}

.lg-toolbar .lg-close { right: 20px !important; font-size: 20px !important; }

/* Otomatik oynat/duraklat düğmesi (product-detail.js toolbar'a ekler; ▶ / ❚❚) */
.lg-toolbar .lg-evname-autoplay {
    right: 74px !important; /* kapatma (44px @ right:20px) + 10px boşluk */
    font-size: 18px !important;
    z-index: 2050;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.lg-toolbar .lg-evname-autoplay:hover { background-color: rgba(0, 0, 0, 0.85) !important; }
.lg-toolbar .lg-evname-autoplay.is-playing { background-color: #a90707 !important; } /* oynarken tema kırmızısı */
.lg-toolbar .lg-evname-autoplay::after { content: "\25B6"; }
.lg-toolbar .lg-evname-autoplay.is-playing::after { content: "\275A\200A\275A"; }

/* --- 3. OKLARI (ARROWS) DÜZENLEME --- */
/* Okların genel ayarı */
.lg-actions .lg-next, .lg-actions .lg-prev {
    background-color: rgba(0, 0, 0, 0.4) !important;
    border-radius: 5px;
    color: #fff;
    z-index: 1085 !important; /* Panelden düşük ama resimden yüksek */
}
/* Masaüstünde varsayılan; sol ok panelin sağına alınır (aşağıdaki media içinde) */
.lg-actions .lg-prev { left: 20px !important; }
.lg-actions .lg-next { right: 20px !important; }

/* --- 4. MASAÜSTÜ SOL PANEL (ORTALI & TAM EKRAN) --- */
@media (min-width: 1024px) {

    /* PANEL KUTUSU */
    .lg-outer .lg-thumb-outer {
        /* JS'in stil baskısını kır */
        height: 100vh !important;
        min-height: 100% !important;
        
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
        width: 140px !important;
        
        background-color: #111 !important;
        z-index: 2000 !important;
        margin: 0 !important;
        padding: 0 !important; /* Padding'i sıfırladık ki tam ortalansın */
        
        /* DİKEY ORTALAMA İÇİN FLEXBOX */
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important; /* İŞTE BU KOD ORTALIYOR */
        
        /* SCROLLBAR GİZLEME */
        overflow-y: auto !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    /* Webkit Scrollbar Gizle */
    .lg-outer .lg-thumb-outer::-webkit-scrollbar {
        display: none !important;
    }

    /* RESİMLERİN TAŞIYICISI */
    .lg-outer .lg-thumb {
        width: 100% !important;
        height: auto !important; 
        /* Min-height kaldırdık, çünkü içeriği ortalamak istiyoruz */
        transform: none !important;
        
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important; /* Fazla boşlukları al */
    }

    /* KÜÇÜK RESİM KUTULARI */
    .lg-thumb-item {
        width: 110px !important;
        height: 75px !important; 
        margin-bottom: 10px !important; /* Resimler arası boşluk */
        
        border: 2px solid transparent;
        display: block !important;
        flex-shrink: 0 !important;
        opacity: 0.6;
        border-radius: 4px;
        box-sizing: border-box !important;
        transition: all 0.3s ease;
    }

    .lg-thumb-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 2px;
    }

    .lg-thumb-item.active, .lg-thumb-item:hover {
        border-color: #a90707 !important;
        opacity: 1 !important;
        transform: scale(1.05); /* Seçilince hafif büyüsün */
    }

    /* Sol ok panelin (140px) hemen sağında dursun ki resmi/paneli ezmesin */
    .lg-actions .lg-prev { left: 155px !important; }

    /* --- ANA RESİM ALANI (SAĞA İTME) --- */
    /* Alt 52px ürün-adı bandına ayrıldı; böylece görsel altından kesilmez/taşmaz */
    .lg-outer .lg-inner {
        position: absolute !important;
        top: 0 !important;
        left: 140px !important;
        width: calc(100% - 140px) !important;
        height: calc(100% - 52px) !important;
    }

    /* Resmi alana göre sınırla (taşmayı kesin engelle) */
    .lg-outer .lg-img-wrap {
        padding: 10px 15px !important;
    }
    .lg-outer .lg-image {
        max-width: 100% !important;
        max-height: 100% !important;
    }

    /* --- ALT BANT (ÜRÜN ADI) --- */
    .lg-sub-html {
        position: fixed !important;
        bottom: 0 !important;
        left: 140px !important;
        width: calc(100% - 140px) !important;
        height: 52px !important;
        background-color: rgba(0, 0, 0, 0.85) !important;
        padding: 0 15px !important;
        z-index: 1080;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
    }
    
    .lg-sub-html h3, .lg-sub-html h4, .lg-sub-html p {
        margin: 0 !important;
        padding: 0 !important;
        font-size: 14px !important;
        line-height: 1.4 !important;
        color: #ddd !important;
    }
}

/* --- 5. MOBİL AYARLARI --- */
@media (max-width: 1023px) {
    .lg-toolbar .lg-close,
    .lg-toolbar .lg-evname-autoplay {
        top: 10px !important;
        width: 35px !important; height: 35px !important;
        line-height: 35px !important;
    }
    .lg-toolbar .lg-close { right: 10px !important; }
    .lg-toolbar .lg-evname-autoplay { right: 53px !important; font-size: 15px !important; } /* 35px + 8px */
    /* Mobilde oklar normal yerinde kalsın */
    .lg-actions .lg-prev { left: 20px !important; }

    .lg-outer .lg-thumb-outer {
        height: 80px !important; bottom: 0 !important; 
        background-color: #000; margin-top: 0 !important;
        position: fixed !important; width: 100% !important;
        display: block !important; /* Mobilde flex column olmasın */
        top: auto !important; /* Mobilde top 0'ı iptal et */
        padding: 10px 0 !important;
    }
    .lg-sub-html { bottom: 80px !important; padding: 5px 10px !important; }
    .lg-outer .lg-inner { height: calc(100% - 80px) !important; left: 0 !important; width: 100% !important; }
    
    /* Mobilde yatay sıralı kalsın */
    .lg-thumb {
        display: flex !important; flex-direction: row !important; transform: translate3d(0,0,0);
        height: 100% !important;
    }
    .lg-thumb-item {
        width: 60px !important; height: 100% !important; margin-bottom: 0 !important; margin-right: 5px !important;
    }
}
/* Ürün galerisi tam ekran */


/* ==================== */
/* MARQUEE Düğün Paketleri COMPONENT    */
/* ==================== */

.marquee-container {
    width: 100%;
    overflow: hidden;
    background: #f9f9f9;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    position: relative;
}



.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 20s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0 25px;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.marquee-text {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.marquee-text.text-red {
    color: #D71B0C;
}

.marquee-text.text-black {
    color: #000000;
}

.marquee-divider {
    width: 5px;
    height: 5px;
    background: #D71B0C;
    border-radius: 50%;
    flex-shrink: 0;
}

.marquee-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.marquee-icon.icon-red {
    fill: #D71B0C;
}

.marquee-icon.icon-black {
    fill: #000000;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ==================== */
/* TABLET - 768px       */
/* ==================== */
@media (max-width: 991px) {
    .marquee-container {
        padding: 10px 0;
    }

    .marquee-container::before,
    .marquee-container::after {
        width: 60px;
    }

    .marquee-text {
        font-size: 14px;
    }

    .marquee-content {
        gap: 40px;
        padding: 0 20px;
    }

    .marquee-icon {
        width: 16px;
        height: 16px;
    }
}

/* ==================== */
/* MOBILE - 576px       */
/* ==================== */
@media (max-width: 575px) {
    .marquee-container {
        padding: 7px 0;
    }

    .marquee-container::before,
    .marquee-container::after {
        width: 40px;
    }

    .marquee-text {
        font-size: 13px;
        letter-spacing: 0;
    }

    .marquee-content {
        gap: 30px;
        padding: 0 15px;
    }

    .marquee-item {
        gap: 8px;
    }

    .marquee-icon {
        width: 14px;
        height: 14px;
    }

    .marquee-divider {
        width: 4px;
        height: 4px;
    }

    .marquee-track {
        animation-duration: 15s;
    }
}

/* MARQUEE Düğün Paketleri COMPONENT    */

.bb-product-gallery-thumbnails .video-thumbnail:before {
 background-color: rgb(0 0 0 / 0%);
}
/* ==================== */
/* Yapışkan header menüsü TEK SATIRDA kalsın (dar sütuna sığsın) */
/* ==================== */
.tp-header-sticky-menu > nav > ul {
    white-space: nowrap;
}
.tp-header-sticky-menu > nav > ul > li {
    margin-inline-end: 14px !important;
}
.tp-header-sticky-menu > nav > ul > li:last-child {
    margin-inline-end: 0 !important;
}
@media (min-width: 1200px) {
    .tp-header-sticky-menu > nav > ul > li {
        margin-inline-end: 20px !important;
    }
}

/* ==================== */
/* Anasayfa FULL-WIDTH slider görseli HER ekranda tam genişlik */
/* (owl + iç içe inline <a> zinciri yüzünden yayılmıyordu) */
/* ==================== */
.tp-slider-full-width .tp-slider-item,
.tp-slider-full-width .tp-slider-thumb,
.tp-slider-full-width .tp-slider-thumb a,
.tp-slider-full-width .tp-slider-thumb picture {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
}
.tp-slider-full-width .tp-slider-thumb img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: none !important;
    display: block !important;
}

/* ==================== */
/* Nexus canlı destek widget (#ncw-root) izole degil. */
/* Widget kendi #ncw-root *{padding:0;margin:0} reseti, KENDI class-bazli */
/* kurallarini (.ncw-field, .ncw-btn-* vb.) eziyor. Widget in kendi */
/* degerlerini daha yuksek ozgullukle (#ncw-root .ncw-*) geri veriyoruz. */
/* ==================== */
#ncw-root { line-height: normal; letter-spacing: normal; text-transform: none; text-align: left; }
#ncw-root .ncw-hdr { padding: 22px 20px 18px; }
#ncw-root .ncw-bubble { padding: 10px 14px; }
#ncw-root .ncw-meta { margin-top: 2px; padding: 0 4px; }
#ncw-root .ncw-sys { padding: 8px 16px; }
#ncw-root .ncw-date-sep { padding: 12px 0 8px; }
#ncw-root .ncw-typing { padding: 6px 0; }
#ncw-root .ncw-typing-bubble { padding: 10px 16px; }
#ncw-root .ncw-field { padding: 14px 18px; }
#ncw-root .ncw-btn-primary { padding: 14px 20px; }
#ncw-root .ncw-btn-skip { padding: 14px 16px; }
#ncw-root .ncw-qr-btn { padding: 7px 14px; }
#ncw-root .ncw-powered { padding: 6px; }

/* ============================================================
   DÜĞÜN PAKETİ SİHİRBAZI — SHORTCODE (ana sayfa buton/banner)
   partials/shortcodes/wedding-wizard.blade.php tarafından kullanılır.
   ============================================================ */
.ev-wz-sc { --ev-accent: var(--evname-accent, #d71b0c); margin: 24px 0; }

/* ortak buton */
.ev-wz-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--ev-accent); color: #fff !important; text-decoration: none;
    font-weight: 700; font-size: 15px; padding: 13px 26px; border-radius: 50px;
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
    box-shadow: 0 6px 18px rgba(215, 27, 12, .25);
}
.ev-wz-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(215, 27, 12, .35); color: #fff !important; }
.ev-wz-btn--light { background: #fff; color: var(--ev-accent) !important; box-shadow: 0 6px 18px rgba(0, 0, 0, .18); }
.ev-wz-btn--light:hover { color: var(--ev-accent) !important; box-shadow: 0 10px 24px rgba(0, 0, 0, .26); }

.ev-wz-sc--button { text-align: center; }

/* banner */
.ev-wz-sc--banner {
    position: relative; border-radius: 18px; overflow: hidden;
    background-size: cover; background-position: center;
    padding: clamp(28px, 6vw, 64px) clamp(20px, 5vw, 56px);
    color: #fff; text-align: center;
}
.ev-wz-banner-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.ev-wz-badge {
    display: inline-block; background: rgba(255, 255, 255, .18); border: 1px solid rgba(255, 255, 255, .35);
    color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
    padding: 6px 14px; border-radius: 50px; margin-bottom: 16px; backdrop-filter: blur(2px);
}
.ev-wz-banner-title { color: #fff; font-size: clamp(24px, 4.5vw, 40px); font-weight: 800; line-height: 1.15; margin: 0 0 12px; letter-spacing: -.5px; }
.ev-wz-banner-sub { color: rgba(255, 255, 255, .9); font-size: clamp(14px, 2.4vw, 17px); line-height: 1.5; margin: 0 auto 24px; max-width: 560px; }
.ev-wz-sc--banner .ev-wz-btn { font-size: clamp(14px, 2.4vw, 16px); }

@media (max-width: 575px) {
    .ev-wz-sc { margin: 16px 0; }
    .ev-wz-sc--banner { border-radius: 14px; }
}

/* ============================================================
   DÜĞÜN PAKETİ SİHİRBAZI — HEADER/MOBİL ANİMASYONLU CTA BUTON
   partials/wedding-wizard-button.blade.php (header-1 menü sağı + mobil offcanvas)
   ============================================================ */
.ev-wz-navbtn {
    position: relative; overflow: hidden;
    display: inline-flex; align-items: center; gap: 7px;
    background: linear-gradient(135deg, #2f5bea 0%, #7b2ff7 100%);
    color: #fff !important; text-decoration: none !important;
    font-weight: 600; font-size: 13px; line-height: 1; white-space: nowrap;
    padding: 8px 16px; border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .14);
    transition: filter .18s ease, transform .18s ease;
}
.ev-wz-navbtn:hover { filter: brightness(1.08); transform: translateY(-1px); color: #fff !important; }
.ev-wz-navbtn-ico { display: inline-flex; animation: ev-wz-twinkle 2.6s ease-in-out infinite; }
.ev-wz-navbtn-text { position: relative; z-index: 2; letter-spacing: .2px; }

/* ince, profesyonel parıltı geçişi ("sihir" hissi) — gölge yok */
.ev-wz-navbtn-shine {
    position: absolute; top: 0; bottom: 0; left: -50%; width: 28%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .35), transparent);
    transform: skewX(-20deg); z-index: 1; pointer-events: none;
    animation: ev-wz-shine 4.5s ease-in-out infinite;
}
@keyframes ev-wz-shine { 0% { left: -50%; } 50%, 100% { left: 140%; } }
@keyframes ev-wz-twinkle { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .75; transform: scale(1.12); } }

/* mobil offcanvas: tam genişlik */
.ev-wz-navbtn--mobile { display: flex; justify-content: center; width: 100%; padding: 12px 18px; font-size: 14px; border-radius: 10px; }

@media (prefers-reduced-motion: reduce) {
    .ev-wz-navbtn-ico, .ev-wz-navbtn-shine { animation: none !important; }
}
