<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    font-family: 'Nunito Sans', sans-serif;
}

#dynamic-price-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    color: #FFD700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    z-index: 9999;
    visibility: hidden;
    height: auto;
    max-height: 50px;
}

#dynamic-price-bar.visible {
    visibility: visible;
}

#show-price-btn {
    position: fixed;
    bottom: 0px;
    transform: translateX(50%);
    background: #0042b5;
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    z-index: 9998;
    left: -69px;
    display: none; /* BaÅŸlangÄ±Ã§ta gizli */
}

.button, button, fieldset, input, select, textarea {
    margin-bottom: 0em;
}

@media (max-width: 1024px) {
    #dynamic-price-bar {
        flex-wrap: wrap;
        padding: 8px 10px;
        font-size: 12px;
        max-height: 80px;
    }

    #dynamic-price-bar &gt; * {
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }

    #show-price-btn {
        bottom: 40px;
        font-size: 12px;
        padding: 8px 15px;
    }
}

@media (max-width: 768px) {
    #dynamic-price-bar {
        font-size: 12px;
        padding: 5px 10px;
        max-height: 100px;
    }

    #dynamic-price-bar &gt; * {
        margin-bottom: 5px;
    }

    #show-price-btn {
        bottom: 0px;
        font-size: 10px;
        padding: 5px 10px;
        left:-50px;    
    }
}

.awp-price-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000;
    padding: 0 15px;
    z-index: 999999;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(0);
    opacity: 1;
    border-top: 1px solid #222;
    will-change: transform;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.awp-price-bar-hidden {
    transform: translateY(100%);
    pointer-events: none;
}

.awp-bar-prices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 100%;
    max-width: 100%;
    opacity: 1;
    visibility: visible;
}

.price-group {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

/* Fiyat gruplarÄ± iÃ§in renk ÅŸemalarÄ± */
.price-group-regular .price-label,
.price-group-regular .price-value {
    color: #ff6b6b;
}

.price-group-vat .price-label,
.price-group-vat .price-value {
    color: #ffd93d;
}

.price-group-total .price-label,
.price-group-total .price-value {
    color: #6bff6b;
}

/* Genel label ve value stilleri */
.price-label {
    font-size: 12px;
    font-weight: 500;
}

.price-value {
    font-size: 14px;
    font-weight: bold;
}

/* Ä°ndirimli fiyat stilleri */
.price-group-regular .original-price {
    text-decoration: line-through;
    color: #ff6b6b;
    opacity: 0.7;
    margin-right: 8px;
    font-size: 12px;
}

.price-group-regular .current-price {
    color: #ff6b6b;
    font-weight: bold;
}

/* Responsive dÃ¼zenlemeler */
@media screen and (min-width: 3840px) {
    .awp-price-bar {
        padding: 20px;
        font-size: 1.2em;
    }
}

@media screen and (max-width: 2560px) {
    .awp-price-bar {
        padding: 18px;
        font-size: 1.1em;
    }
}

@media screen and (max-width: 1024px) {
    .awp-price-bar {
        padding: 15px;
        font-size: 1em;
    }
}

@media screen and (max-width: 768px) {
    .awp-price-bar {
        height: 40px;
        background: #000000;
    }

    .awp-bar-prices {
        gap: 15px;
    }

    .price-group {
        gap: 5px;
    }

    .price-label {
        font-size: 11px;
    }

    .price-value {
        font-size: 13px;
    }
}

/* Ã‡ok kÃ¼Ã§Ã¼k ekranlar iÃ§in */
@media screen and (max-width: 360px) {
    .awp-bar-prices {
        gap: 10px;
    }

    .price-label {
        font-size: 10px;
    }

    .price-value {
        font-size: 12px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .awp-bar-prices {
        font-size: 13px;
    }

    .price-separator {
        margin: 0 10px;
    }
}

/* Sadece fiyat deÄŸerleri iÃ§in transition */
.awp-bar-regular-price,
.awp-bar-sale-price,
.awp-bar-total-price {
    transition: opacity 0.3s ease-out;
}

.tax-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
    background: rgba(248, 250, 252, 0.7);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.4);
}
</pre></body></html>