/* wp */
.sissfashion-whatsapp-support {
    --sissfashion-wp-bottom: 100px;
    --sissfashion-wp-right: 22px;
    --sissfashion-wp-green: #25d366;
    --sissfashion-wp-dark: #1f2933;
    --sissfashion-wp-soft: #f7f7f7;
    --sissfashion-wp-border: #eeeeee;
    --sissfashion-wp-pink: #f6abb4;

    position: fixed;
    right: var(--sissfashion-wp-right);
    bottom: var(--sissfashion-wp-bottom);
    z-index: 9998;
    font-family: inherit;
}

.sissfashion-whatsapp-toggle {
    position: relative;
    width: 64px;
    height: 64px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    outline: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sissfashion-whatsapp-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.sissfashion-whatsapp-toggle-icon {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--sissfashion-wp-green);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sissfashion-whatsapp-favicon {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
}

.sissfashion-whatsapp-avatar-fallback {
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--sissfashion-wp-green);
}

.sissfashion-whatsapp-avatar-fallback svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}

.sissfashion-whatsapp-pulse {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.22);
    animation: sissfashionWpPulse 1.8s infinite;
}

@keyframes sissfashionWpPulse {
    0% {
        transform: scale(0.88);
        opacity: 0.9;
    }

    70% {
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.sissfashion-whatsapp-badge {
    position: absolute;
    top: -4px;
    right: -2px;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: #ef4444;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    line-height: 21px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 3px 8px rgba(239, 68, 68, 0.35);
}

.sissfashion-whatsapp-box {
    position: absolute;
    right: 0;
    bottom: 78px;
    width: 350px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(14px) scale(0.98);
    transition: all 0.25s ease;
}

.sissfashion-whatsapp-support.is-open .sissfashion-whatsapp-box {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.sissfashion-whatsapp-header {
    background: linear-gradient(135deg, #1f2933 0%, #111827 100%);
    color: #ffffff;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sissfashion-whatsapp-agent {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sissfashion-whatsapp-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 0 0 46px;
}

.sissfashion-whatsapp-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 4px;
}

.sissfashion-whatsapp-status {
    font-size: 11px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.78);
    display: flex;
    align-items: center;
    gap: 6px;
}

.sissfashion-whatsapp-status span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sissfashion-wp-green);
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18);
    flex: 0 0 8px;
}

.sissfashion-whatsapp-close {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 22px;
    line-height: 28px;
    cursor: pointer;
    transition: background 0.2s ease;
    padding: 0;
}

.sissfashion-whatsapp-close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.sissfashion-whatsapp-body {
    padding: 16px;
    background:
        radial-gradient(circle at top left, rgba(246, 171, 180, 0.16), transparent 32%),
        #ffffff;
}

.sissfashion-whatsapp-message {
    display: inline-block;
    max-width: 92%;
    background: #f5f5f5;
    border: 1px solid var(--sissfashion-wp-border);
    color: #333333;
    font-size: 13px;
    line-height: 1.55;
    padding: 12px 14px;
    border-radius: 0 14px 14px 14px;
    margin-bottom: 14px;
}

.sissfashion-whatsapp-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 13px;
}

.sissfashion-whatsapp-quick button {
    border: 1px solid #e8e8e8;
    background: #ffffff;
    color: #444444;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    padding: 7px 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sissfashion-whatsapp-quick button:hover {
    border-color: var(--sissfashion-wp-pink);
    background: #fff5f6;
    color: #c76c78;
}

.sissfashion-whatsapp-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 7px;
}

.sissfashion-whatsapp-textarea {
    width: 100%;
    min-height: 92px;
    resize: none;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    background: #ffffff;
    color: #333333;
    font-size: 13px;
    line-height: 1.5;
    padding: 12px;
    outline: none;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sissfashion-whatsapp-textarea:focus {
    border-color: var(--sissfashion-wp-green);
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.12);
}

.sissfashion-whatsapp-send {
    width: 100%;
    height: 44px;
    border: none;
    border-radius: 10px;
    background: var(--sissfashion-wp-green);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.2px;
    margin-top: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.sissfashion-whatsapp-send:hover {
    background: #1ebe5d;
    transform: translateY(-1px);
}

.sissfashion-whatsapp-send svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}


@media (max-width: 575px) {
    .sissfashion-whatsapp-support {
        --sissfashion-wp-bottom: 88px;
        --sissfashion-wp-right: 14px;
    }

    .sissfashion-whatsapp-toggle {
        width: 58px;
        height: 58px;
    }

    .sissfashion-whatsapp-toggle-icon {
        width: 44px;
        height: 44px;
    }

    .sissfashion-whatsapp-favicon {
        width: 30px;
        height: 30px;
    }

    .sissfashion-whatsapp-box {
        width: calc(100vw - 28px);
        max-width: 350px;
        bottom: 72px;
    }

    .sissfashion-whatsapp-body {
        padding: 14px;
    }
}

.sf-product-desc {
    font-family: inherit;
    color: #333;
    line-height: 1.7;
    font-size: 14px;
}

.sf-product-desc h2.sf-title {
    font-size: 18px;
    color: #222;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eaeaea;
}

.sf-product-desc h3.sf-subtitle {
    font-size: 15px;
    color: #444;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
}

.sf-product-desc p.sf-intro {
    margin-bottom: 20px;
    color: #555;
}

.sf-product-desc ul.sf-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.sf-product-desc ul.sf-list li {
    margin-bottom: 8px;
    color: #555;
}

.sf-product-desc strong {
    font-weight: 600;
    color: #111;
}


.urun {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}



/* Ürün Kartı Genel Kapsayıcı */
.product-default-single-item {
    position: relative;
    overflow: hidden;
    background: #fff;
    margin-bottom: 20px;
}

/* Görsel Kutusu */
.product-default-single-item .image-box {
    position: relative;
    overflow: hidden;
    display: block;
}

.product-default-single-item .image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.product-default-single-item:hover .image-box img {
    transform: scale(1.03); /* Üzerine gelince çok hafif yakınlaşma efekti */
}

/* Aksiyon Linkleri (Boşluk sorununu çözen asıl hamle) */
/* position: absolute sayesinde buton normal HTML akışından çıkar ve boşluk yaratmaz */
.product-default-single-item .action-link {
    position: absolute;
    bottom: -50px; /* Resmin dışında gizli başlar */
    left: 0;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 0px 0;
    transition: all 0.4s ease;
    opacity: 0;
    z-index: 10;
}

.product-default-single-item:hover .action-link {
    bottom: 0; /* Üzerine gelince yukarı çıkar */
    opacity: 1;
}

/* Özel Sepete Ekle Butonu */
.btn-sepete-ekle {
    display: inline-block;
    background: transparent;
    color: #222;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    border: 1px solid #222;
    padding: 8px 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-sepete-ekle:hover {
    background: #cca978; /* Sissfashion konseptine uygun Bej/Gold */
    color: #fff;
    border-color: #cca978;
}

/* İçerik Düzeni (Ürün Adı ve Fiyat) */
.product-default-single-item .content {
    padding: 15px 5px 5px; /* Üstteki gereksiz boşluğu kıstık */
    text-align: center; /* Butik tarzında her şeyi ortalıyoruz */
}

.product-default-single-item .content .title a {
    font-size: 15px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.product-default-single-item .content .title a:hover {
    color: #cca978;
}

.product-default-single-item .content .price {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    display: block;
    margin-bottom: 10px;
}

.product-default-single-item .content .price-new {
    color: #d9534f; /* İndirimli fiyatı vurgula */
}

/* Yıldızlar */
.product-default-single-item .review-star {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 3px;
}

.product-default-single-item .review-star li {
    color: #f3c93e;
    font-size: 12px;
}

.product-default-single-item .review-star li.empty {
    color: #e5e5e5;
}
.aos-animate p{
    text-align: center;
}

/* Sosyal Medya Banner Başlık */
.instagram-banner-section {
    margin-bottom: 50px;
}

.instagram-banner-section .section-title-wrapper.text-center {
    text-align: center;
}

.instagram-banner-section .section-title {
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #333;
}

/* Tam Genişlik Banner Yapısı */
.full-width-banner {
    width: 100%;
    overflow: hidden; /* Olası taşmaları engeller */
    position: relative;
}

.full-width-banner .insta-link {
    display: block;
    position: relative;
}

/* Resmin Ekranı Kaplaması */
.responsive-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover (Üzerine Gelme) Efekti */
.full-width-banner .insta-link:hover .responsive-banner-img {
    transform: scale(1.02); /* Resmi çok hafif yakınlaştırır */
}

/* Şık Instagram Yönlendirme Katmanı */
.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Siyah yarı saydam perde */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.full-width-banner .insta-link:hover .insta-overlay {
    opacity: 1; /* Fare üzerine gelince belirir */
}

.insta-overlay i {
    font-size: 45px;
    margin-bottom: 10px;
}

.insta-overlay span {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}