/* ===== Anasayfa Slidir ===== */
.responsive-title {
  background-color: #fafafab0;
  padding: 15px;
  font-size: 1.8rem;
  line-height: 1;
  text-align: center;
  text-shadow: 3px 3px 3px rgba(0,0,0,0.3);
  margin: 0;
  border-radius: 20px 20px 0 0;
}

.responsive-title .title-primary {
  color: #0f3f5a;
}

.responsive-title .title-secondary {
  color: #7098b6;
}

.responsive-subtitle {
  color: #fafafa;
  background-color: #0f3f5ab0;
  padding: 15px;
  text-align: center;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1;
  border-radius: 0 0 20px 20px;
}

/* Mobil uyum */
@media (max-width: 768px) {
  .responsive-title {
    font-size: 0.8rem;
    padding: 5px;
  }
  .responsive-subtitle {
    font-size: 0.5rem;
    padding: 5px;
  }
}

.tg-shop-slider {
  aspect-ratio: 2 / 1;
  max-width: 1000px;
  margin: 0 auto;
}
.tg-shop-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cookie Box */
#cookie-box {
  display: none;
  position: fixed;
  bottom: 10px;
  left: -100%;
  width: 100%;
  max-width: 600px;
  background: #0f3f5a;
  color: #fafafa;
  padding: 20px;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.5);
  font-size: 16px;
  z-index: 9999;
  transition: left 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 10px;
}

#cookie-box.show {
  display: block;
  left: 10px;
}

.privacy-link {
  color: #fafafa;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-link:hover {
  color: #dadada;
  text-decoration: underline;
}

/* Accordion */
.accordion-toggle {
  position: relative;
  padding: 10px 40px 10px 10px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 15px;
  padding: 10px;
  background-color: #F4F4F4;
  color: #0f3f5a;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.accordion-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #0f3f5a;
  pointer-events: none;
}

.accordion-icon i {
  transition: transform 0.3s ease;
}

.accordion-toggle:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  background-color: #DADADA;
}

.accordion-toggle.active {
  border-radius: 10px 10px 0 0;
}

.accordion-toggle.active .accordion-icon i {
  transform: rotate(-180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background-color: #f4f4f4;
  border-radius: 0 0 10px 10px;
  transition: max-height 0.5s ease-in-out, padding 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.accordion-content p {
  font-size: 16px;
  color: #0f3f5a;
  line-height: 1.6;
}

.accordion-content.show {
  max-height: 200px;
  padding: 10px 20px;
}

/* Cookie Toggle Button */
.cookie-toggle-btn {
  background-color: #ccc;
  border-radius: 50px;
  width: 60px;
  height: 30px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 5px;
  font-size: 0;
  transition: all 0.3s ease;
  border: none;
  margin-bottom: 20px;
}

.cookie-toggle-btn .switch {
  position: absolute;
  top: 5px;
  left: 5px;
  background-color: #fafafa;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  transition: 0.3s ease;
}

.cookie-toggle-btn.active {
  background-color: #4caf50;
}

.cookie-toggle-btn.active .switch {
  left: 35px;
}

.cookie-toggle-btn:disabled {
  cursor: not-allowed;
  background-color: #bbb;
}

.cookie-toggle-btn:disabled .switch {
  background-color: #999;
}

/* Accept/Reject Buttons */
#cookie-accept, #cookie-decline {
  padding: 15px 25px;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  margin: 10px;
}

#cookie-accept {
  background-color: #2e7d32;
  color: #ffffff;
}

#cookie-decline {
  background-color: #c62828;
  color: #ffffff;
}

#cookie-accept:hover {
  background-color: #45a049;
  transform: translateY(-3px);
}

#cookie-decline:hover {
  background-color: #e53935;
  transform: translateY(-3px);
}

#cookie-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  color: #fafafa;
  border: none;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  z-index: 10;
}

#cookie-accept i,
#cookie-decline i {
  margin-right: 8px;
  font-size: 18px;
}

/* Cookie Settings Floating Button */
#cookie-settings {
  position: fixed;
  background: #4caf50;
  bottom: 20px;
  left: 20px;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  box-shadow: 5px 5px 8px rgba(37, 211, 102, 0.45);
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 9999;
}

#cookie-settings:hover {
  width: 180px;
  border-radius: 25px;
}

#cookie-settings i {
  font-size: 25px;
  color: #fafafa;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

#cookie-settings .texto-zap {
  position: absolute;
  top: 19px;
  left: 55px;
  opacity: 0;
  color: #fafafa;
  font-size: 0.9rem;
  transition: all 0.4s ease;
  white-space: nowrap;
}

#cookie-settings:hover .texto-zap {
  opacity: 1;
  left: 55px;
}

/* WhatsApp Floating Button */
.btn-whatsapp {
  position: fixed;
  background: #4caf50;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 5px 5px 8px rgba(37, 211, 102, 0.45);
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 9999;
}

.btn-whatsapp:hover {
  width: 200px;
  border-radius: 25px;
  box-shadow: 7px 7px 10px rgba(37, 211, 102, 0.55);
}

.btn-whatsapp a {
  display: block;
  color: white;
  text-decoration: none;
  padding-top: 6px;
  padding-right: 11px;
  padding-left: 11px;
  line-height: 55px;
  transition: all 0.4s ease;
  position: relative;
}

.btn-whatsapp i {
  font-size: 40px;
  position: absolute;
  right: 10px;
  color: #fafafa;
}
.btn-whatsapp:hover i {
  color: #fafafa;
}

.btn-whatsapp .texto-zap {
  position: absolute;
  top: 0;
  right: 50px;
  opacity: 0;
  font-size: 0.8rem;
  transition: all 0.4s ease;
  white-space: nowrap;
  color: #fafafa;
}

.btn-whatsapp:hover .texto-zap {
  opacity: 1;
  right: 50px;
  color: #fafafa;
}

/* Responsive */
@media screen and (max-width: 767px) {
  .btn-whatsapp {
    bottom: 20px;
    right: 10px;
  }

  #cookie-box {
    width: 90%;
    padding: 20px 15px;
    font-size: 15px;
  }

  #cookie-box .cookie-buttons {
    display: block;
    text-align: center;
  }

  #cookie-box .cookie-buttons button {
    width: 40%;
    margin: 5px 0;
    padding: 12px;
    font-size: 14px;
  }
}

/* popup */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background-color: #0F3F5A;
  padding: 30px;
  max-width: 660px;
  width: 90%;
  border-radius: 10px;
  position: relative;
}

.close-popup {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  color: #fafafa;
  cursor: pointer;
}

/* mega menu */
.mega-link1,
.mega-link2,
.mega-link3 {
  color: #0f3f5a;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mega-link1:hover,
.mega-link2:hover,
.mega-link3:hover {
  background-color: #0f3f5a;
  color: #fafafa !important;
}

@media (max-width: 768px) {
  h1.responsive-title {
    font-size: 1.4rem !important;
    line-height: 1.1 !important;
    padding: 10px !important;
    min-height: 50px !important;
  }

  p.responsive-subtitle {
    font-size: 0.85rem !important;
    padding: 10px !important;
    min-height: 20px !important;
  }
	.elementor-ken-burns {
    animation: none !important;
    transform: none !important;
  }

  .elementor-invisible.elementor-animate-fadeInUp,
  .elementor-invisible[data-settings*="fadeInUp"] {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
    visibility: visible !important;
  }
}