.hotspot-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.hotspot-frame {
    max-width: 700px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 16px;
    background: #FAFAFA;
    border: 1px solid rgba(0,0,0,0.10);
}

@media (min-width: 1025px) {
    .hotspot-frame {
        max-width: 640px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

.hotspot-recommendation-text {
    max-width: 100%;
    margin: 0 0 22px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    text-align: center;
    font-size: 22px !important;
    line-height: 1.3;
    font-weight: 600;
    color: #000;
}

.hotspot-frame .hotspot-recommendation-text {
    color: #000 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

body .hotspot-container .hotspot-frame .hotspot-recommendation-text,
body .hotspot-container .hotspot-frame .hotspot-recommendation-text * {
    color: #000 !important;
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 0 22px !important;
    opacity: 1 !important;
    outline: 0 !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

body .hotspot-container .hotspot-frame input.hotspot-recommendation-text,
body .hotspot-container .hotspot-frame textarea.hotspot-recommendation-text {
    background: transparent !important;
    background-color: transparent !important;
}

.hotspot-slider {
    position: relative;
    margin-top: 4px;
}

.hotspot-slide {
    display: none;
}

.hotspot-slide.active {
    display: block;
}

.hotspot-slider-prev,
.hotspot-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    background: #1E482F;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    cursor: pointer;
}

.hotspot-slider-prev:hover,
.hotspot-slider-next:hover {
    background: #1E482F;
    color: #fff;
}

.hotspot-slider-prev {
    left: 10px;
}

.hotspot-slider-next {
    right: 10px;
}

@media (min-width: 769px) {
    .hotspot-slider-prev {
        left: 16px;
    }

    .hotspot-slider-next {
        right: 16px;
    }
}

@media (min-width: 1025px) {
    .hotspot-slider-prev {
        left: 56px;
    }

    .hotspot-slider-next {
        right: 56px;
    }
}

@media (max-width: 768px) {
    .hotspot-slider-prev,
    .hotspot-slider-next {
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        line-height: 1;
    }

    .hotspot-slider-prev {
        left: 2px;
    }

    .hotspot-slider-next {
        right: 2px;
    }

    .hotspot-frame {
        padding: 10px;
        border-radius: 14px;
    }

    .hotspot-recommendation-text {
        margin: 0 0 18px;
        font-size: 18px !important;
        color: #000 !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
    }
}

.hotspot-image-wrapper {
    position: relative;
    display: block;
    max-width: 760px;
    margin: 0 auto;
}

@media (min-width: 1025px) {
    .hotspot-image-wrapper {
        max-width: 640px;
    }
}

.hotspot-image {
    display: block;
    max-width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .hotspot-image-wrapper {
        max-width: 760px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hotspot-image-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }
}

.hotspot-marker {
    position: absolute;
    width: 24px;
    height: 24px;
    margin-left: -12px;
    margin-top: -12px;
    cursor: pointer;
    z-index: 10;
}

.hotspot-dot {
    width: 24px;
    height: 24px;
    background: #1E482F !important;
    background-color: #1E482F !important;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
}

.hotspot-marker:hover .hotspot-dot,
.hotspot-marker.active .hotspot-dot {
    background: #1E482F !important;
    background-color: #1E482F !important;
    transform: scale(1.2);
}

.hotspot-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    min-width: 200px;
    max-width: 300px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    z-index: 100;
}

.hotspot-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: #fff transparent transparent;
}

.hotspot-marker:hover .hotspot-tooltip,
.hotspot-marker.active .hotspot-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.hotspot-title {
    margin: 0 0 8px;
    color: #23282d;
    font-size: 16px;
    line-height: 1.3;
}

.hotspot-content {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
    margin: 0;
}

/* Touch device styles */
.touch-device .hotspot-tooltip {
    display: none;
}

.touch-device .hotspot-marker.active .hotspot-tooltip {
    display: block;
}

/* Responsive styles */
@media (max-width: 768px) {
    .hotspot-marker {
        width: 32px;
        height: 32px;
        margin-left: -16px;
        margin-top: -16px;
    }
    
    .hotspot-dot {
        width: 32px;
        height: 32px;
    }
    
    .hotspot-tooltip {
        min-width: 250px;
        max-width: 90vw;
        padding: 12px;
        font-size: 14px;
    }
    
    .hotspot-title {
        font-size: 15px;
    }
    
    .hotspot-content {
        font-size: 13px;
    }
}

/* Ürün Popup Stilleri */
.hotspot-product-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.hotspot-product-popup.active {
    display: flex;
}

.hotspot-product-popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    max-width: 420px;
    width: 90%;
    position: relative;
}

.hotspot-product-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.hotspot-product-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.hotspot-product-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.hotspot-product-buttons a,
.hotspot-product-buttons button {
    flex: 1;
    text-align: center;
    padding: 10px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.hotspot-product-detail,
.hotspot-add-to-cart {
    width: 100%;
}

.hotspot-product-popup .hotspot-product-buttons a.button,
.hotspot-product-popup .hotspot-product-buttons button.button,
.hotspot-product-popup .hotspot-product-buttons a.hotspot-product-detail,
.hotspot-product-popup .hotspot-product-buttons a.hotspot-add-to-cart {
    background: var(--edar-green, #1E482F) !important;
    color: #fff !important;
    border-color: transparent !important;
}

@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
    .hotspot-product-popup .hotspot-product-buttons a.button:hover,
    .hotspot-product-popup .hotspot-product-buttons button.button:hover,
    .hotspot-product-popup .hotspot-product-buttons a.hotspot-product-detail:hover,
    .hotspot-product-popup .hotspot-product-buttons a.hotspot-add-to-cart:hover {
        background: #000 !important;
        color: #fff !important;
        border-color: transparent !important;
    }
}

.hotspot-product-popup .hotspot-add-to-cart {
    display: none !important;
}

@media (max-width: 768px) {
    .hotspot-product-popup-content {
        width: 92vw;
        max-width: 92vw;
        padding: 14px;
    }

    .hotspot-product-popup-close {
        top: 8px;
        right: 12px;
    }

    .hotspot-product-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .hotspot-product-popup .hotspot-product-buttons a.button,
    .hotspot-product-popup .hotspot-product-buttons button.button,
    .hotspot-product-popup .hotspot-product-buttons a.hotspot-product-detail,
    .hotspot-product-popup .hotspot-product-buttons a.hotspot-add-to-cart {
        padding: 12px;
        font-size: 15px;
    }

    .hotspot-product-popup .hotspot-product-buttons a.hotspot-product-detail,
    .hotspot-product-popup .hotspot-product-buttons a.hotspot-product-detail:hover,
    .hotspot-product-popup .hotspot-product-buttons a.hotspot-product-detail:active,
    .hotspot-product-popup .hotspot-product-buttons a.hotspot-product-detail:focus {
        background: #1E482F !important;
        background-color: #1E482F !important;
        color: #fff !important;
        border-color: transparent !important;
    }
}