.quick-add-to-cart {
    margin-top: 8px !important;
    width: 100%;
    background-color: #e8b923 !important;
    color: #000 !important;
}

.whatsapp-contact-button {
    background-color: #25D366 !important;
    color: white !important;
    width: 100%;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.whatsapp-contact-button:hover {
    background-color: #20b95c !important;
}

.quick-add-to-cart:hover {
    background-color: #d9a51f !important;
}

/* ====================== KAYAR BANT (MARQUEE) STİLLERİ ====================== */
.cwf-marquee-bar {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 99999;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cwf-marquee-track {
    display: flex;
    width: max-content;
    animation: cwf-marquee-scroll 15s linear infinite;
}

.cwf-marquee-track:hover {
    animation-play-state: paused;
}

.cwf-marquee-list {
    display: flex;
    align-items: center;
    justify-content: space-around;
    white-space: nowrap;
    padding: 10px 0;
}

.cwf-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 100px;
    padding-left: 100px;
}

.cwf-marquee-text {
    display: inline-block;
}

.cwf-marquee-separator {
    font-size: 16px;
    opacity: 0.6;
}

@keyframes cwf-marquee-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}


/* ====================== HARİTA (MAP) KISA KOD STİLLERİ ====================== */
.cwf-map-container {
    position: relative;
    overflow: hidden;
}
.cwf-map-container iframe {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.cwf-map-container:hover iframe {
    box-shadow: 0 15px 35px rgba(0,0,0,0.12) !important;
    transform: translateY(-2px);
}

/* ====================== POPUP REKLAM STİLLERİ ====================== */
.cwf-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cwf-popup-overlay.cwf-popup-active {
    opacity: 1;
}

.cwf-popup-content {
    position: relative;
    max-width: 90%;
    max-height: 80vh;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cwf-popup-overlay.cwf-popup-active .cwf-popup-content {
    transform: scale(1);
    opacity: 1;
}

.cwf-popup-overlay.cwf-popup-closing {
    opacity: 0;
}
.cwf-popup-overlay.cwf-popup-closing .cwf-popup-content {
    transform: scale(0.8);
    opacity: 0;
}

.cwf-popup-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 16px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.5);
    display: block;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.cwf-popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 36px;
    height: 36px;
    background: #1e293b !important;
    color: #fff !important;
    border: 2px solid #fff !important;
    border-radius: 50% !important;
    font-size: 24px !important;
    font-weight: 400 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
    transition: all 0.2s ease !important;
    z-index: 1000000 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.cwf-popup-close:hover {
    background: #ef4444 !important;
    transform: scale(1.1);
}

