#sliderWrapper {

    position: relative;
    height: 400px;
}

.viewer-image {

    width: 100%;
    height: 400px;
    object-fit: contain;
    position: absolute;
    opacity: 0;
}

.viewer-image.active {

    opacity: 1;
}


.image-dots {

    text-align: center;
    margin-top: 10px;
}

.image-dot {

    width: 12px;
    height: 12px;
    background: #ccc;
    display: inline-block;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
}

.image-dot.active {

    background: #ff6b00;
}



/* stok info style */
.stock-info-box {
    background: #fff8f0;
    border-left: 4px solid #ff6b00;
    padding: 20px;
    border-radius: 8px;
}

.stock-info-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.stock-info-header i {
    color: #ff6b00;
    font-size: 20px;
}

.stock-info-header h4 {
    margin: 0;
    font-weight: 600;
}

.stock-contact-btn {
    display: inline-block;
    margin-top: 10px;
    background: #ff6b00;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.stock-contact-btn:hover {
    background: #e55a00;
}

.documents {
    text-align: left;
    /* linkleri sola hizala */
    background: #fff;
    /* beyaz arka plan */
    border: 1px solid #ddd;
    /* hafif çerçeve */
    padding: 15px;
    border-radius: 8px;
}

.documents .doc-link {
    display: flex;
    /* ikon + yazı yan yana */
    align-items: center;
    gap: 8px;
    /* ikon ile yazı arası boşluk */
    color: #ff6600;
    text-decoration: none;
    margin-bottom: 8px;
    font-weight: 500;
}

.documents .doc-link i {
    font-size: 16px;
    /* ikon boyutu */
}

.documents .doc-link:hover {
    text-decoration: underline;
}

.variant-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.variant-btn {
    padding: 10px 20px;
    border: 2px solid #ff9900;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    border-radius: 30px;
}

.variant-btn:hover {
    background: #ff9900;
    color: white;
}

.variant-btn.active {
    background: #ff9900;
    color: white;
}

.tools-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.tool-box {
    flex: 1;
    min-width: 90px;
    text-align: center;
}

.tool-circle {
    width: 110px;
    height: 110px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tool-text {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
}

/* mobil */
@media(max-width:768px) {
    .tool-circle {
        width: 90px;
        height: 90px;
    }
}