.ilk-siparis-banner {
    background: linear-gradient(135deg, #fff7ed 0%, #fce7f3 100%);
    border: 1px dashed #e91e63;
    border-radius: 12px;
    padding: 16px 24px;
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ilk-siparis-banner strong {
    color: #be185d;
    font-size: 18px;
}

.ilk-siparis-banner code {
    background: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 16px;
    color: #e91e63;
    border: 1px solid #fbcfe8;
}

.nasil-calisir-section {
    padding: 50px 0;
    background: #fafafa;
}

.nasil-calisir-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 991px) {
    .nasil-calisir-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .nasil-calisir-grid {
        grid-template-columns: 1fr;
    }
}

.nasil-calisir-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.nasil-calisir-card__ikon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    background: #fce7f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e91e63;
    font-size: 22px;
}

.nasil-calisir-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.nasil-calisir-card p {
    font-size: 14px;
    color: #667085;
    margin: 0;
}

.marka-istatistik-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #831843 0%, #be185d 100%);
    color: #fff;
}

.marka-istatistik-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

@media (max-width: 767px) {
    .marka-istatistik-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.marka-istatistik-item strong {
    display: block;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 6px;
}

.marka-istatistik-item span {
    font-size: 14px;
    opacity: 0.9;
}

.yorum-carousel-section {
    padding: 50px 0;
}

.yorum-kart {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.yorum-kart__yildiz {
    color: #fbbf24;
    margin-bottom: 12px;
}

.yorum-kart__metin {
    flex: 1;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

.yorum-kart__yazar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.yorum-kart__yazar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.product-card .product__taksit {
    font-size: 12px;
    color: #667085;
    margin-top: 4px;
}

.product-card .product__quick-add {
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 6px;
    background: #e91e63;
    color: #fff;
    border: none;
    white-space: nowrap;
    cursor: pointer;
}

.product-card .product__quick-add:hover {
    background: #c2185b;
}

.stok-bildirim-kutusu {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 10px;
    padding: 16px;
    margin: 16px 0;
}

.stok-bildirim-kutusu h5 {
    margin-bottom: 10px;
    font-size: 16px;
}

.stok-bildirim-kutusu .form-control {
    margin-bottom: 8px;
}

.product-detail__taksit {
    font-size: 14px;
    color: #667085;
    margin-top: 8px;
}

.product-detail__taksit i {
    color: #e91e63;
}

img[data-src] {
    background: #f3f4f6;
}

/* Sağ alt kampanya bildirimi */
.kampanya-toast {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 10045;
    max-width: 360px;
    width: calc(100% - 40px);
    background: #f0f4ff;
    border: 1px solid #dbe4ff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(30, 41, 59, 0.18);
    padding: 16px 16px 16px 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(24px) scale(0.96);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.kampanya-toast.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.kampanya-toast__close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    color: #64748b;
    cursor: pointer;
    padding: 0 4px;
}

.kampanya-toast__close:hover {
    color: #1e293b;
}

.kampanya-toast__ikon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9333ea, #c026d3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-top: 2px;
}

.kampanya-toast__body {
    flex: 1;
    padding-right: 18px;
}

.kampanya-toast__baslik {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
    line-height: 1.35;
}

.kampanya-toast__metin {
    font-size: 13px;
    line-height: 1.5;
    color: #475569;
    margin: 0 0 10px;
}

.kampanya-toast__cta {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #9333ea;
    text-decoration: none;
}

.kampanya-toast__cta:hover {
    color: #7e22ce;
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .kampanya-toast {
        bottom: 78px;
        right: 12px;
        max-width: none;
        width: calc(100% - 24px);
    }
}

body.has-mobile-nav .kampanya-toast {
    bottom: 78px;
}

@media (min-width: 992px) {
    body.has-mobile-nav .kampanya-toast {
        bottom: 24px;
    }
}
