html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}



/*<!-- WhatsApp Butonu -->*/
#wa-wrapper {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    z-index: 9999;
}

#wa-bubble {
    background: #fff;
    border: 0.5px solid #ddd;
    border-radius: 16px 16px 16px 4px;
    padding: 10px 16px;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(8px) scale(0.95);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
    position: relative;
}

    #wa-bubble.visible {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    #wa-bubble::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: -8px;
        border-top: 8px solid transparent;
        border-right: 8px solid #fff;
    }

#wa-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 18px;
    height: 18px;
    background: #f1f1f1;
    border: 0.5px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    font-size: 10px;
    text-align: center;
    line-height: 18px;
}

#wa-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s, background 0.15s;
    flex-shrink: 0;
}

    #wa-btn:hover {
        background: #20b858;
        transform: scale(1.07);
    }

    #wa-btn:active {
        transform: scale(0.96);
    }

#wa-pulse {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.3;
    pointer-events: none;
    animation: waPulse 2s ease-out infinite;
    z-index: 9998;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    70% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}


/* Mobile Filters */
.mobile-filters {
    background: #f8f5f0;
    border-bottom: 1px solid #e0d9d0;
    padding: 0 0 4px;
}

.mobile-filter__accordion {
    border-bottom: 1px solid #e0d9d0;
}

.mobile-filter__btn {
    width: 100%;
    background: none;
    border: none;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-align: left;
}

    .mobile-filter__btn:active {
        background: #f0ece6;
    }

.mobile-filter__icon {
    margin-left: auto;
    font-size: 12px;
    transition: transform 0.25s ease;
}

.mobile-filter__btn.open .mobile-filter__icon {
    transform: rotate(180deg);
}

.mobile-filter__active-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a42125;
    display: inline-block;
}

.mobile-filter__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

    .mobile-filter__body.open {
        max-height: 600px;
    }

.mobile-filter__list {
    padding: 4px 0 12px 16px;
}

    .mobile-filter__list li {
        padding: 2px 0;
    }

        .mobile-filter__list li a {
            display: block;
            padding: 8px 12px;
            font-size: 14px;
            color: #444;
            border-radius: 6px;
        }

            .mobile-filter__list li a:hover {
                background: #f0ece6;
                color: #a42125;
            }

        .mobile-filter__list li.current a {
            color: #a42125;
            font-weight: 500;
            background: #fdf0f0;
        }


/* Banaş About Strip */
.banas-about-strip {
    background: #f8f5f0;
    border-top: 3px solid #a42125;
    border-bottom: 1px solid #e8e2d9;
    padding: 36px 0;
}

.banas-about-strip__inner {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.banas-about-strip__text {
    flex: 1;
}

    .banas-about-strip__text p {
        font-size: 15px;
        line-height: 1.8;
        color: #444;
        margin-bottom: 12px;
    }

        .banas-about-strip__text p:last-child {
            margin-bottom: 0;
        }

.banas-about-strip__badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 200px;
}

.banas-about-strip__badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #e0d9d0;
    border-left: 4px solid #a42125;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

    .banas-about-strip__badge i {
        color: #a42125;
        font-size: 18px;
        width: 20px;
        text-align: center;
    }

@media (max-width: 991px) {
    .banas-about-strip {
        padding: 24px 0;
    }

    .banas-about-strip__inner {
        flex-direction: column;
        gap: 20px;
    }

    .banas-about-strip__text p {
        font-size: 14px;
        line-height: 1.7;
    }

    .banas-about-strip__badges {
        flex-direction: row;
        flex-wrap: wrap;
        min-width: unset;
        width: 100%;
        gap: 8px;
    }

    .banas-about-strip__badge {
        flex: 1 1 calc(33% - 8px);
        min-width: 120px;
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .banas-about-strip {
        padding: 20px 0;
    }

    .banas-about-strip__text p {
        font-size: 13px;
        line-height: 1.65;
    }

    .banas-about-strip__badge {
        flex: 1 1 calc(50% - 8px);
        min-width: 0;
        font-size: 12px;
        padding: 8px 10px;
        gap: 8px;
    }

        .banas-about-strip__badge i {
            font-size: 15px;
        }
}



/* Banaş Mega Menü */
.banas-megamenu__panel {
    min-width: 680px;
    background: #ffffff;
    padding: 0;
    border-top: 3px solid #a42125;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.banas-megamenu__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px 12px;
}

.banas-megamenu__header-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
    white-space: nowrap;
}

.banas-megamenu__header-line {
    flex: 1;
    height: 1px;
    background: #eee;
}

.banas-megamenu__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    padding: 0 16px 16px;
}

.banas-megamenu__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.15s ease;
    color: #444;
    border: 1px solid transparent;
}

    .banas-megamenu__item:hover {
        background: #fdf0f0;
        border-color: #f5d0d0;
        color: #a42125;
        text-decoration: none;
    }

        .banas-megamenu__item:hover .banas-megamenu__item-icon {
            background: #a42125;
            color: #fff;
        }

        .banas-megamenu__item:hover .banas-megamenu__item-arrow {
            opacity: 1;
            transform: translateX(2px);
        }

.banas-megamenu__item-icon {
    width: 32px;
    height: 32px;
    background: #f5f5f5;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #a42125;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
}

.banas-megamenu__item-text {
    font-size: 13px;
    font-weight: 500;
    flex: 1;
    line-height: 1.3;
}

.banas-megamenu__item-arrow {
    font-size: 10px;
    color: #bbb;
    opacity: 0;
    transition: opacity 0.15s, transform 0.15s;
}

.banas-megamenu__footer {
    border-top: 1px solid #f0f0f0;
    padding: 12px 24px;
    text-align: right;
    background: #fafafa;
}

.banas-megamenu__all-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #a42125;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.15s;
}

    .banas-megamenu__all-link:hover {
        color: #c0282d;
        gap: 10px;
        text-decoration: none;
    }

/* Mobilde mega menü panelini sıfırla — tema kendi mobile stilini uygular */
@media (max-width: 991px) {
    .banas-megamenu__panel {
        min-width: unset;
        background: transparent;
        border-top: none;
        box-shadow: none;
        padding: 0;
    }

    .banas-megamenu__header,
    .banas-megamenu__footer {
        display: none;
    }

    .banas-megamenu__grid {
        display: block;
        padding: 0;
    }

    .banas-megamenu__item {
        border-radius: 0;
        border: none;
        padding: 8px 0;
        color: inherit;
    }

        .banas-megamenu__item:hover {
            background: transparent;
            border-color: transparent;
        }

    .banas-megamenu__item-icon,
    .banas-megamenu__item-arrow {
        display: none;
    }

    .banas-megamenu__item-text {
        font-size: 14px;
        font-weight: 400;
    }
}

/*footer*/
html, body {
    height: 100%;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-footer {
    margin-top: auto;
}