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;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.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 #000000 !important;
}

/* ===== Çerez İzni Banner ===== */
.cookie-consent {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%) translateY(140%);
    width: calc(100% - 32px);
    max-width: 980px;
    z-index: 1080;
    background: #161616;
    color: #ffffff;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-consent.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.cookie-consent-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1 1 380px;
}

.cookie-consent-title {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 6px;
    color: #ffffff;
}

.cookie-consent-desc {
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    color: #d8d8d8;
}

.cookie-consent-desc a {
    color: #ffffff;
    text-decoration: underline;
}

.cookie-consent-desc a:hover {
    color: #fc0012;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex: 0 0 auto;
    flex-wrap: wrap;
}

.cookie-btn {
    border: none;
    border-radius: 10px;
    padding: 12px 22px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: #fc0012;
    color: #ffffff;
}

.cookie-btn-accept:hover {
    background: #ba1111;
}

.cookie-btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.cookie-btn-reject:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 575px) {
    .cookie-consent {
        bottom: 12px;
        width: calc(100% - 20px);
    }

    .cookie-consent-inner {
        padding: 18px;
    }

    .cookie-consent-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1 1 auto;
        text-align: center;
    }
}