/* Copy Animation */
.base-color {
  color: hsl(var(--main)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #FF7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}

.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1E2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: #D1D1D1;
  border-radius: 5px;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}
/* Buton görünürlüğü için override */
.btn--outline-base {
    color: #dc3545 !important;  /* Kırmızıya yakın bir ton */
    border: 1px solid #dc3545 !important;
    background-color: transparent !important;
}

/* Aktif seçili buton için arkaplan dolu, metin beyaz */
.btn--outline-base.active {
    background-color: #dc3545 !important;
    color: #fff !important;
}

/* Hover efekti - isteğe göre ayarlanabilir */
.btn--outline-base:hover {
    background-color: #dc3545 !important;
    color: #fff !important;
    border-color: #dc3545 !important;
}
.register-url {
    display: inline-block;
    background-color: #E20046 !important;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none !important;
}

.register-url:hover {
    background-color: #c1003c !important;
}
/* Checkbox genel stil */
input[type="checkbox"].form-check-input {
    width: 18px !important;
    height: 18px !important;
    appearance: auto !important;
    -webkit-appearance: checkbox !important;
    background-color: #fff !important;
    border: 1px solid #ccc !important;
    vertical-align: middle !important;
    margin-top: 0.1rem !important;
    cursor: pointer;
}

/* Checkbox işaretliyken görünür hale gelsin */
input[type="checkbox"].form-check-input:checked {
    background-color: #E20046 !important;
    border-color: #E20046 !important;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.00039 10.8008L3.20039 8.00078L2.26606 8.93512L6.00039 12.6695L14.0004 4.66951L13.0661 3.73518L6.00039 10.8008Z'/%3E%3C/svg%3E") !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 70% 70%;
}
.form--check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-check-input {
    margin: 0 !important;
    vertical-align: middle !important;
    width: 18px;
    height: 18px;
    appearance: auto !important;
    -webkit-appearance: checkbox !important;
}
.policy-links {
    display: inline;
    font-size: 0.9rem; /* yaklaşık 14px */
}

.policy-link {
    color: #E20046 !important;
    font-size: 0.9rem;
    text-decoration: underline;
    margin-left: 4px;
}

.policy-link:hover {
    color: #c1003c !important;
    text-decoration: none;
}
.mobile-menu {
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
}
.counter__item-icon i {
    color: white;
    font-size: 48px;
    transition: all 0.3s ease;
}

.counter__item-icon i:hover {
    color: #E20046;
    transform: scale(1.1);
}
.counter__item:hover .counter__item-icon i {
    transform: scale(1.2);
    color: #fff; /* ikon hover'da da görünür kalsın */
}
/* Banner kapsayıcı */
.breadcrumb__top {
    position: relative;
    width: 100%;
    min-height: 300px;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; /* override */
}

/* Overlay efekti */
.breadcrumb__top::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(226, 0, 70, 0.55); /* #E20046 site rengi + transparan */
    z-index: 1;
}

/* İçerik container'ı */
.breadcrumb-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    padding: 40px 20px; /* içerik ile kenar boşlukları */
}

/* Başlık */
.breadcrumb-content__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;  padding-top: 100px;
    text-transform: uppercase;
    letter-spacing: -0.015em;
    margin: 0;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}

/* Responsive uyum */
@media (max-width: 767px) {
    .breadcrumb__top {
        min-height: 200px;
    }

    .breadcrumb-content {
        padding: 30px 15px;
    }

    .breadcrumb-content__title {
        font-size: 1.6rem;
    }
}