﻿/*.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
     padding-right: calc(var(--bs-gutter-x) * .1); 
     padding-left: calc(var(--bs-gutter-x) * .1); 
    margin-top: var(--bs-gutter-y);
}
*/


.accordion-button:not(.collapsed) {
    color: #052c65; /* Bootstrap primary */
    background-color: #e7f1ff;
    box-shadow: inset 0 -1px 0 #dee2e6;
}





.deal-of-day-box {
    position: relative;
    border: 2px solid #f39c12;
    border-radius: 12px;
    background: linear-gradient(to right, #fffbe6, #fff);
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .deal-of-day-box:hover {
        transform: scale(1.03);
    }


.countdown-content {
    background-color: #f8d7da;
    color: #721c24;
    padding: 5px 10px;
    border-radius: 8px;
    min-width: 55px;
    text-align: center;
}

    .countdown-content .display-number {
        font-size: 1.1rem;
        font-weight: bold;
    }

    .countdown-content .display-text {
        font-size: 0.75rem;
    }




ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 0.25rem; /* override */
}
ol, ul {
    padding-left: 0.25rem;
}
 .h3, h3 {
    margin-bottom: 0rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.6); /* Yumuşak beyaz-gri */
    color: #333; /* Koyu gri ok rengi */
    /*border: 1px solid #ddd;*/
    padding: 3px;
    font-size: 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

    .slider-btn:hover {
        background-color: rgba(255, 255, 255, 0.9);
        transform: translateY(-50%) scale(1.05);
    }


.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}







.header-top {
    background-color: #f9f9f9;
    padding: 5px 0;
    font-family: sans-serif;
    font-size: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.header-top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-social-container {
    display: flex;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

    .header-social-container a {
        color: #666;
        font-size: 14px;
        text-decoration: none;
    }

.header-alert-news p {
    margin: 0;
    font-size: 12px;
    color: #444;
    text-align: center;
}

.header-top-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 12px;
}

    .header-top-actions a {
        text-decoration: none;
        color: #333;
    }

    .header-top-actions span {
        color: #ccc;
    }

@media (max-width: 768px) {
    .header-top-container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}
