/* desktop.css - Masaüstü görünüm için özel stiller */


    :root {
      --primary-color: #ff6600;
      --dark-blue: #003049;
      --light-grey: #f6f6f6;
    }
    body {
      margin: 0;
      background-color: var(--light-grey);
      font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    }
    .content {
      margin: 10px;
      margin-top: 70px;
    }
	.fixed-header {
	  position: fixed;
	  top: 0;
	  left: 0;
	  right: 0;
	  z-index: 1000;
	  background-color: #ffffff;
	  border-bottom: 1px solid #ddd;
	  padding: 6px 0;
	  transition: transform 0.3s ease;
	}
	.fixed-header.hidden {
	  transform: translateY(-100%);
    }
	.header-container {
	  max-width: 1066px;
	  margin: 0 auto;
	  display: flex;
	  align-items: center;
	  flex-wrap: nowrap;
	  padding: 2px 16px; /* Kenarlardan iç boşluk */
      gap: 20px; /* Daha rahat görünüm için biraz boşluk */
	}
	.header-right {
	  display: flex;
	  align-items: center;
	  margin-left: auto; /* ← bu çok önemli: sağa yaslar */
	  flex-wrap: nowrap;
      gap: 24px;
	}
    .logo-link img {
      height: 32px;
	  margin: 0 20px 0 0; 
    }
	.logo-link {
	  display: flex;
	  align-items: center;
	  margin-right: 20px;
	}
	.icon-label-link {
      font-size: 12px;       /* biraz büyüt, okunurluk artar */
      gap: 4px;              /* icon ile metin arası bırak */
    }
	.icon-label-link svg {
      width: 24px;           /* tutarlı boyut */
      height: 24px;
      transition: transform 0.2s;
    }
    .icon-label-link:hover svg {
      transform: scale(1.1);
    }
    .user-header {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 14px;
      color: #333;
      flex-shrink: 0;
    }
    .user-header .avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      margin-right: 5px;
    }
    .user-text {
      display: block;
      flex-direction: column;
      line-height: 1.1;
    }
    .account-type {
      font-size: 13px;
      color: #888;
    }

    .section-header {
      max-width: 720px;
      margin: 20px auto 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      padding: 0 5px;
    }
    .section-header h2 {
      font-size: 20px;
      font-weight: bold;
      color: #333;
      margin: 0;
    }
    .section-subheader {
      max-width: 720px;
      margin: 0 auto 20px;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      flex-wrap: wrap;
      text-align: right;
      padding: 0 5px;
    }
    .info-btn {
      font-size: 14px;
      background: #e0e0e0;
      color: #1f2b30;
      border: none;
      padding: 4px 10px;
      border-radius: 6px;
      cursor: pointer;
      display: block;
      margin: 0;
    }
    .category-boxes {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 20px;
      max-width: 720px;
      margin: 0 auto 30px;
      padding: 0 5px;
    }

    .category-boxes a {
      text-decoration: none;
      color: inherit;
    }
    .category-box {
      background: #fff;
      border-radius: 24px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      text-align: center;
      padding: 10px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: all 0.3s ease;
      cursor: pointer;
      min-height: 145px;
      border: 1px solid transparent;
      position: relative;
    }
    .category-box:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
      border: 1px solid #ff6600;
    }
    .category-box img {
      width: 75px;
      height: 75px;
      object-fit: contain;
      margin-bottom: 10px;
    }
    .category-box .title {
      font-size: 14px;
      font-weight: bold;
      color: #333;
      line-height: 1.2;
      transition: color 0.3s ease;
    }
    .category-box:hover .title {
      color: #ff6600;
    }
    .category-box .subtitle {
      font-size: 12px;
      color: #555;
    }
    .badge-wrapper {
      position: absolute;
      top: 6px;
      right: 6px;
    }
    .badge {
      background-color: #ffffff;
      color: #ff6600;
      font-size: 12px;
      font-weight: bold;
      width: 33px;
      height: 33px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      border: 2px solid rgb(225, 225, 225);
    }
    .tooltip {
      visibility: hidden;
      background-color: #ffffff;
      color: #767676;
      text-align: center;
      padding: 6px 10px;
      border-radius: 6px;
      position: absolute;
      border: 2px solid rgb(225, 225, 225);
      box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
      top: -30px;
      right: 3px;
      font-size: 12px;
      opacity: 0;
      transition: opacity 0.3s;
      white-space: nowrap;
    }
    .badge-wrapper:hover .tooltip {
      visibility: visible;
      opacity: 1;
    }
.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-grow: 1;
}


.search-box {
  display: flex;
  align-items: center;
  background-color: #fff0e1;
  border: 1px solid #fdc296;
  border-radius: 12px;
  padding: 3px 12px;
  flex-grow: 1;
  transition: all 0.3s ease;
  max-width: 200px;
  width: 100%;
}

.search-box_input {
  border: none;
  outline: none;
  padding: 8px 10px;
  border-radius: 24px;
  font-size: 14px;
  flex: 1;
  background-color: transparent;
  min-width: 0;
  transition: width 0.3s ease, opacity 0.3s ease;
}

.search-box button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.search-box button svg {
  width: 20px;           /* arama ikonunu hafif büyüt */
  height: 20px;
  opacity: 0.7;          /* normalde biraz soluk, hover’da tam renk */
  transition: opacity 0.2s;
}
.search-box button:hover svg {
  opacity: 1;
}
.ilan-ver-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ff6600;
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 15px;
  text-decoration: none;
  margin-left: 12px;
  white-space: nowrap;
  transition: background-color 0.3s ease, box-shadow 0.2s ease;
  box-shadow: inset 0 0 4px rgba(0,0,0,0.1); /* hover sonrası iç gölge */
}
.ilan-ver-btn:hover {
  background-color: #ff4000;
}
.hamburger-btn {
  display: none; /* başlangıçta gizli */
}
.header-icons {
  display: flex;
  align-items: center;
  gap: 1px;
  margin-right: 5px;
}
.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #fff;
  transition: background-color 0.2s ease;
  text-decoration: none;
}
.white-footer {
  background: #fff;
  color: #333;
  font-family: 'Poppins', sans-serif;
  padding: 40px 20px 20px;
  border-top: 1px solid #eee;
  font-size: 14px;
}
.footer-top {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.footer-col {
  flex: 1 1 140px;
  min-width: 150px;
}
.logo-col {
  flex: 1 1 200px;
}
.footer-logo {
  height: 40px;
  margin-bottom: 10px;
}
.footer-col h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #000;
}
.footer-col a {
  display: block;
  color: #555;
  text-decoration: none;
  margin-bottom: 8px;
}
.footer-col a:hover {
  color: #ff6600;
}
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #555;
  font-size: 16px;
}
.social-icons a:hover {
  color: #ff6600;
}
.support-title {
  margin-top: 10px;
  font-weight: bold;
}
.support-time {
  font-size: 13px;
  color: #777;
}
.support-phone {
  font-size: 15px;
  color: #00a859;
  font-weight: bold;
}
.footer-bottom {
  border-top: 1px solid #eee;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #777;
}
.bottom-links {
  margin-top: 10px;
}
.bottom-links a {
  margin: 0 8px;
  color: #777;
  text-decoration: none;
}
.bottom-links a:hover {
  color: #ff6600;
}
.step-indicator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  margin: 20px auto;
  padding: 10px 15px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-family: 'Poppins', sans-serif;
  overflow-x: auto;
}

.step {
  flex: 1;
  text-align: center;
  font-size: 13px;
  color: #888;
  position: relative;
}

.step::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  display: block;
  margin: 0 auto 6px;
}

.step.active {
  font-weight: bold;
  color: #ff6600;
}

.step.active::before {
  background-color: #ff6600;
}
.step-progress-icons {
  max-width: 900px;
  margin: 30px auto;
  padding: 0 15px;
}

.progressbar-icons {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
  position: relative;
}

.progressbar-icons li {
  flex: 1;
  text-align: center;
  position: relative;
  color: #bbb;
  font-size: 13px;
  font-weight: 500;
}

.progressbar-icons li .icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 5px;
  border-radius: 50%;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  z-index: 1;
  position: relative;
  padding-left: 1px;
}

.progressbar-icons li.completed .icon {
  background-color: #ff6600;
  color: #fff;
}
.progressbar-icons li.completed span {
  color: #ff6600;
  font-weight: 500;
}

.progressbar-icons li.active .icon {
  background-color: #fff;
  color: #ff6600;
  border: 2px solid #ff6600;
}

.progressbar-icons li.active span {
  color: #000;
  font-weight: bold;
}

.progressbar-icons li::after {
  content: '';
  position: absolute;
  top: 16px;
  width: 100%;
  height: 2px;
  background-color: #e0e0e0;
  z-index: 0;
  left: -50%;
}
.progressbar-icons li:first-child::after {
  display: none;
}
.icon-label-link a {
  position: relative;
  /* padding-bottom: 5px;*/
  transition: color 0.3s ease;
}

.icon-label-link a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 120%;
  height: 4px;
  background-color: #ff6600;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.icon-label-link a:hover::after {
  transform: scaleX(1);
}
.user-info-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 720px;          /* ← içerik genişliğine eşit */
  padding-right: 4px;       /* ← biraz boşluk bırak sağdan */
  gap: 6px;
  margin: 10px auto 10px auto;  /* ← ortalanmış ama içeriği sağa yaslı */
}

.user {
  display: flex;
  align-items: center;
}

.user-text {
  margin-left: 6px;
  text-align: right;
}

.user-text .account-type {
  font-size: 12px;
  color: #888;
}
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

input[type="text"], input[type="tel"], select, textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.flex-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.flex-row > div {
  flex: 1 1 48%;
}

.checkbox-wrapper {
  margin-top: 20px;
  font-size: 14px;
}

.checkbox-wrapper input[type="checkbox"] {
  transform: scale(1.2);
  margin-right: 8px;
}

.checkbox-wrapper label a {
  color: #003049;
  font-weight: 500;
  text-decoration: underline;
}

.button {
  background-color: #ff6600;
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.button:hover {
  background-color: #e85c00;
}

.section-title {
  font-size: 18px;
  margin: 20px 0 10px;
  color: #333; 
  font-weight: 600;
}
.information-box {
  max-width: 100%;
  font-family: 'Poppins', sans-serif;
}

  .radio-options {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }

  .radio-btn {
    position: relative;
    padding-left: 20px;
    cursor: pointer;
	font-size: 14px;
  }

  .radio-btn input[type="radio"] {
    position: absolute;
    opacity: 0;
  }

  .custom-radio {
    position: absolute;
    top: 3px;
    left: 0;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    border: 2px solid #ccc;
  }

  .radio-btn input[type="radio"]:checked + .custom-radio {
    background-color: #ff6600;
    border-color: #ff6600;
  }

  .info-card {
    border: 1px solid #ddd;
    padding: 15px 20px;
    background: #fff;
    border-radius: 4px;
  }

  .info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }

.tooltip2 {
  position: relative;
  display: inline-block;
  cursor: pointer;
  background-color: #eee;
  border-radius: 50%;
  padding: 0 5px;
  font-size: 12px;
  margin-left: 4px;
  line-height: 1;
}

.tooltip2 .tooltip-text {
  visibility: hidden;
  width: 300px;
  background-color: #333;
  color: #fff;
  text-align: left;
  border-radius: 4px;
  padding: 8px;
  position: absolute;
  z-index: 10;
  bottom: 125%; /* kutunun yukarıda çıkması için */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 13px;
  line-height: 1.4;
}

.tooltip2:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}


  .change-link {
    font-size: 13px;
    color: #0077cc;
    text-decoration: underline;
    display: inline-block;
    margin-top: 10px;
  }
div#box {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background-color: #fff;
    margin-bottom: 20px;
}
    .subheader-menu {
      background: #fff;
      border-bottom: 1px solid #ddd;
      position: sticky;
      top: 59px;
      z-index: 998;
      transition: top 0.3s ease;
	  margin-bottom: 80px;
    }
    .subheader-menu.hidden {
      top: -60px;
    }
    .subheader-list {
      display: flex;
      gap: 24px;
      padding: 10px 20px;
      margin: 0;
      list-style: none;
      justify-content: center;
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
    }
    .subheader-list li a {
      color: #333;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s ease;
    }
    .subheader-list li a:hover {
      color: #ff6600;
    }
	.he-header__user__menu .hover-menu {
  display: none;
  position: absolute;
  top: 50px;
  left: -90px;
  width: 230px;
  padding: 10px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid #ddd;
  background-color: #fff;
  z-index: 999;
}

.he-header__user__menu:hover .hover-menu {
  display: block;
}

.he-header__user__menu .hover-menu:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 15px;
  background: #fff;
  top: -8px;
  border: 1px solid #ddd;
  border-top: none;
  border-right: none;
  transform: rotate(135deg);
  left: 47%;
}

.hover-menu__spacer {
  height: 30px;
  position: absolute;
  width: 100%;
  top: -20px;
}
.hover-menu ul {
  list-style: none; /* Noktaları (bullet) kaldırır */
  padding: 0;
  margin: 0;
}
.hover-menu ul li {
  list-style: none;
  font-size: 14px;
  color: #767676;
  padding: 10px;
  border-radius: 4px;
}

.hover-menu ul li:hover {
  background-color: #f0f0f0;
}

.hover-menu ul li.seperate {
  margin: 10px 0;
  height: 1px;
  background: #f0f0f0;
  padding: 0;
}

.hover-menu .btn-login {
  text-align: center;
  display: block;
  height: 40px;
  border-radius: 8px;
  background-color: #ff6600;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 40px;
  width: 100%;
}

.hover-menu .text-link.tac {
  text-align: center;
  font-weight: 700;
  color: #434343;
}

.hover-menu ul li a {
  width: 100%;
  display: inline-block;
  text-decoration: none; /* Alt çizgiyi kaldırır */
  color: #767676;   
}
.fa {
	margin-right: 10px;
}